diff --git a/Assignment_5.ipynb b/Assignment_5.ipynb
new file mode 100644
index 00000000..c9a6c49f
--- /dev/null
+++ b/Assignment_5.ipynb
@@ -0,0 +1,10909 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "
\n",
+ "\n",
+ "# Practical Machine Learning for Natural Language Processing - 2023 SS \n",
+ "\n",
+ "### Assigment 1 - Python for Poets \n",
+ "\n",
+ "This assigment is an adaptation for Python of the original exercise [\"Unix for Poets\"](https://www.cs.upc.edu/~padro/Unixforpoets.pdf)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "***"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Loading the document"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "KBR said Friday the global economic downturn so far has\n",
+ "had\n",
+ "little effect on its business but warned some projects on its books\n",
+ "could be in jeopardy if the headwinds persist into next year.\n",
+ "\n",
+ "\"With the economic outlook remaining uncertain, it is possible\n",
+ "that\n",
+ "customers may cancel or delay projects that are under way,\" said\n",
+ "William\n",
+ "Utt, chief executive of the Houston-based engineering and\n",
+ "construction\n",
+ "giant and government contractor.\n",
+ "\n",
+ "He did not predict how much of the company's $15.3billion in\n",
+ "fu\n"
+ ]
+ }
+ ],
+ "source": [
+ "with open(\"../../Data/txt/nyt_200811.txt\", \"r\") as f:\n",
+ " text = f.read()\n",
+ "\n",
+ "print(text[0:500])\n",
+ "\n",
+ "import string\n",
+ "import re "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "***"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### You will solve the following exercises using **Pure Python** \n",
+ "### (only packages \"string\" and \"re\" are allowed). \n",
+ "\n",
+ "1. Count words in a text \n",
+ "2. Sort a list of words in various ways \n",
+ " • ascii order \n",
+ " • \"rhyming\" order \n",
+ "3. Extract useful info for a dictionary \n",
+ "4. Compute ngram statistics \n",
+ "5. Make a Concordance "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "***"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "#### 1. Count words in a text\n",
+ "\n",
+ "a. Output a list of words in the file along with their frequency counts (ignoring case). \n",
+ "a. Count how many unique words there are (ignoring case). \n",
+ "c. Check how common are all different sequences of vowels (e.g. the sequences \"ieu\" or just \"e\" in \"lieutenant\")?"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# a) \n",
+ "wordlist = text.split()\n",
+ "freq = {}\n",
+ "for item in wordlist:\n",
+ " if item in freq:\n",
+ " freq[item] += 1\n",
+ " else:\n",
+ " freq[item] = 1\n",
+ "#print(freq) funktioniert, wegen Größe des Dictionaries nicht ausgeführt\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "total unique words: 58759\n"
+ ]
+ }
+ ],
+ "source": [
+ "# b)\n",
+ "count = 0\n",
+ "words = set(text.split())\n",
+ "for word in words:\n",
+ " count += 1\n",
+ "print(\"total unique words:\", count)\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "iai times 2\n",
+ "uee times 56\n",
+ "ee times 7915\n",
+ "oui times 60\n",
+ "oau times 1\n",
+ "aoui times 1\n",
+ "eu times 301\n",
+ "u times 34034\n",
+ "oua times 1\n",
+ "iia times 1\n",
+ "ooi times 5\n",
+ "ei times 3254\n",
+ "ioa times 1\n",
+ "uai times 7\n",
+ "ioe times 2\n",
+ "oa times 1608\n",
+ "iou times 505\n",
+ "eeee times 1\n",
+ "ueu times 2\n",
+ "ou times 16532\n",
+ "eai times 1\n",
+ "ua times 1763\n",
+ "oia times 5\n",
+ "eo times 1561\n",
+ "i times 128438\n",
+ "ueui times 1\n",
+ "ea times 14047\n",
+ "o times 132685\n",
+ "e times 239021\n",
+ "oe times 726\n",
+ "aa times 41\n",
+ "ia times 5259\n",
+ "eie times 3\n",
+ "oei times 7\n",
+ "ie times 6345\n",
+ "aeu times 25\n",
+ "aou times 3\n",
+ "eoi times 3\n",
+ "ooo times 1\n",
+ "ioia times 4\n",
+ "au times 2136\n",
+ "ue times 2365\n",
+ "iu times 218\n",
+ "uou times 22\n",
+ "ieu times 19\n",
+ "aea times 1\n",
+ "uoi times 2\n",
+ "uie times 44\n",
+ "uo times 79\n",
+ "aiia times 7\n",
+ "aii times 23\n",
+ "oeu times 2\n",
+ "aeo times 1\n",
+ "ae times 204\n",
+ "eei times 59\n",
+ "oi times 1978\n",
+ "ui times 1520\n",
+ "eea times 1\n",
+ "oo times 4949\n",
+ "eia times 2\n",
+ "eou times 60\n",
+ "uu times 10\n",
+ "ai times 10381\n",
+ "oue times 2\n",
+ "ooie times 1\n",
+ "ooooo times 1\n",
+ "aee times 1\n",
+ "eau times 131\n",
+ "a times 165405\n",
+ "ao times 68\n",
+ "ooe times 6\n",
+ "ii times 10\n",
+ "oao times 1\n",
+ "uea times 7\n",
+ "io times 10369\n"
+ ]
+ }
+ ],
+ "source": [
+ "# c)\n",
+ "import re\n",
+ "string = \" \".join(wordlist)\n",
+ "vowels = re.findall(r\"([aeiou]+)\", string)\n",
+ "sequence_vowels = set(vowels)\n",
+ "for i in sequence_vowels:\n",
+ " number = vowels.count(i)\n",
+ " print(f\"{i} times {number}\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "#### 2. Sorting and reversing lines of text\n",
+ "\n",
+ "a. Sort each line alphabetically (ignoring case). \n",
+ "b. Sort in numeric ([ascii](https://python-reference.readthedocs.io/en/latest/docs/str/ASCII.html)) order. \n",
+ "c. Alphabetically reverse sort (ignoring case). \n",
+ "d. Sort in reverse numeric ([ascii](https://python-reference.readthedocs.io/en/latest/docs/str/ASCII.html)) order. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# a)\n",
+ "with open(\"../../Data/txt/nyt_200811.txt\", \"r\") as f2:\n",
+ " lines = f2.readlines()\n",
+ " \n",
+ "lines = list(lines)\n",
+ "alphabetic = sorted(lines, key=str.lower)\n",
+ "for line in alphabetic:\n",
+ " print(line)\n",
+ " \n",
+ "#when running code the data rate exceeds\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# b)\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [
+ {
+ "ename": "NameError",
+ "evalue": "name 'lines' is not defined",
+ "output_type": "error",
+ "traceback": [
+ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
+ "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)",
+ "\u001b[0;32m/var/folders/c3/hky104sn5w7006hj542v37hh0000gn/T/ipykernel_4056/2788454461.py\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0;31m# c)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 2\u001b[0;31m \u001b[0mreverse_lines\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0msorted\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlines\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mkey\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mstr\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlower\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mreverse\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;32mTrue\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 3\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;31m#for print(reverse_lines) data rate exceeds, too\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
+ "\u001b[0;31mNameError\u001b[0m: name 'lines' is not defined"
+ ]
+ }
+ ],
+ "source": [
+ "# c)\n",
+ "reverse_lines = sorted(lines, key=str.lower, reverse = True)\n",
+ "\n",
+ "#for print(reverse_lines) data rate exceeds, too"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# d)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "#### 3. Computing basic statistics\n",
+ "\n",
+ "a. Find the 50 most common words \n",
+ "b. Find the words in the NYT that end in \"zz\" \n",
+ "c. Count the lines, the words, and the characters \n",
+ "d. How many all uppercase words are there in this NYT file? \n",
+ "e, How many 4-letter words? \n",
+ "f. How many different words are there with no vowels? \n",
+ "g. **tricky:** How many “1 syllable” words are there? "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# a)\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "['buzz', 'buzz', 'jazz', 'buzz', 'buzz', 'jazz', 'jazz', 'jazz', 'jazz', 'jazz', 'jazz', 'jazz', 'buzz', 'buzz', 'buzz', 'jazz', 'buzz', 'jazz', 'pizazz', 'buzz', 'buzz', 'jazz', 'buzz']\n"
+ ]
+ }
+ ],
+ "source": [
+ "# b)\n",
+ "wordlist_lower = [w.lower() for w in wordlist] \n",
+ "zz = ' '.join(wordlist_lower)\n",
+ "zz_words = re.findall(r\"\\w*zz\\b\", zz)\n",
+ "print(zz_words)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Lines: 3052299\n",
+ "Words: 2526058\n",
+ "Characters: 2981965\n"
+ ]
+ }
+ ],
+ "source": [
+ "# c)\n",
+ "lines = 0\n",
+ "words = 0\n",
+ "characters = 0\n",
+ "\n",
+ "for line in text:\n",
+ " lines += 1\n",
+ " words += len(line.split())\n",
+ " characters += len(line.strip('\\n'))\n",
+ "\n",
+ "print(\"Lines:\", lines)\n",
+ "print(\"Words:\", words)\n",
+ "print(\"Characters:\", characters)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "6952\n",
+ "{'HAMPSHIRE-', 'BNP', 'CPU,', 'CLOSING', 'AIDS,', 'INFORMATION', 'UKRAINE-ECON-CRISIS', 'DUCK', 'I-1000', 'SIDES:', 'AIR', 'EPA', 'OHIO:', 'N.C.;', 'KMT.', 'C4', 'CLEVELAND', 'CEO', 'NIGHT:', 'HMC', 'COUNTY,', 'AC', 'FIRE-IN-THE-BELLY', 'PC,', 'S.C.,', 'CIA,', 'YEAR', '(EDS:', 'BOTTOM', 'BAMBI', 'C', 'RACE-HOLLYWOOD-REVIEW', 'BRAISED', 'DIANNE', 'VENEZUELA:', '(NOTE', 'TAKE', 'ANC', 'POW/MIA', 'STRETCH,', 'WHERE', 'ERA.\"', 'CHEAPER', 'PORT', 'III,', 'NFL,', 'ETHANOL-BANKRUPT', 'INSURANCE', 'COHEN', 'WITH:', 'WAVES', 'WMM', 'GQ.', 'BOOTS', 'E.', 'WASHINGTON?', 'TIBETAN', 'MTV', 'PACIFIC', 'J.J.', 'TEENS', 'COMMERCIAL', 'NOV.', 'BEN', 'ONE', 'WSJT', '\"D.J.', 'LLC', 'M.C.', 'C+', 'MOUNT,', 'KIDS-BOOKS', 'SEC.', 'BIG', 'METRO', 'HURIN,', 'TV,', 'CAMPAIGN', '((CC))', '\"U.N.C.L.E.\"', 'RABBIT', 'DIVIDED', \"DREAM'\", 'WALL', 'NBC.', 'DEAR', 'FBN-CAPSULES', 'WEST:', 'COLOMBIA:', 'KEY', 'CLAIM', 'N', 'D.C.', 'V.S.', 'ABORTION', 'CAMPAIGN-OBAMA', 'JUAN', 'MEND,', '\"CBS', 'SAT', '\"US', '1A,', 'OHL', 'GMAC,', 'PARIS', 'OREGON', 'DURABLE', 'CODIS,', 'GIAMBI,', 'DIVERSITY', 'FLORIDA:', 'DAVIE,', 'P.', 'TAKEAWAY:', 'LINES!!!!!!\"', 'WSM-AM,', 'MARTINEZ,', 'MOMENT:', 'SAFIRE,', 'CNBC', 'CHANGING', 'HOW', 'WEYDERT', 'MIKE', 'NALEO,', '(D)', 'THERE', 'REWARD:', 'MTV,', 'SEC,', 'GOP', 'O2', '3G', 'AWOL', 'FLIGHT', 'HAVA', 'LL', 'ROCHESTER,', 'GLOBAL', 'USA', 'POEMS,', 'WHEATON', 'MIAMI', 'I,', 'COLLEGES', 'L.J.', 'BOSS', 'RALLY', 'IN', '26-MAY', 'TURNOUT', 'DISABLED', 'PROPERTY', 'D+', 'VIP', 'SCORE', 'TD)', 'M.T.', 'KCNC,', 'REAL', 'ELN08.)', 'ENVELOPE,', \"IT'S\", 'U.S.,', 'LIFE', \"DON'T\", 'SPENDING:', 'ATTORNEY', 'RHS', 'NAACP.', 'TUITION:', 'HVS,', 'VIRGINIA', 'RELEASES', \"'LIFE\", 'WINNERS', '1-888-NYT-NEWS', 'FATHER', 'NOISE:', 'CLOSE', 'RX-8,', 'PC.\"', '\"OK,', '1-866-OUR-VOTE', 'UT', 'FCC,', 'IBM', '\"NFL', '\"U.N.C.L.E\"', 'X', 'COOPER', 'KATE', 'AIDS', 'GPS.', 'PENN', 'GE,', 'RAUL', 'WEIRD', 'F.', \"YOU'RE\", 'TAKES', 'ROYAL', 'DURING', 'ID.', 'INC-RES', 'ENDS:', '1-888-DTV-2009', 'MONTANA:', 'DOUBT:', 'ESPN)', 'THERE:', 'UPDATED', 'BALLOT', 'N.Y.;', 'LG', 'DVR', 'FALTER', 'USA30%', 'S', 'RX-2,', 'L.A.', 'UFA', 'WEDNESDAY:', 'DAY', 'BOOT', 'OED', 'WSJT-FM', 'AMC', 'D-28', 'U17', 'THEIR', 'HUMANITY:', 'MCCAIN', 'DAMAGE', 'QUICK', 'UF', 'FDR;', 'POWELL', 'DECK', 'AHHH,\"', 'ALMOND', 'HIV/AIDS,', 'VOTING,', 'Z.', 'AI', 'STR', 'TRUSTS', 'READY', 'SOILED', 'WRESTLING', 'V-6,', 'BCS.)', 'BE', 'NPD', 'SCORE,', 'XP,', 'PECK', '--A', 'B.', 'AT', 'GM', 'TV:', 'LB,', 'SCIENCE', '\"D-\"', 'B.J.', 'FARC.', 'C.', 'HAVE', 'NOTE:', 'ACT', 'MICHAEL', 'MUNOZ', 'TV,\"', '(NTIA)', 'BARACK', 'WIGGED', 'BEIMEL,', '--EUROPE,', 'MISSOURI:', 'DR.', 'MARATHON', 'MVP:', 'MINIVAN', 'Z', 'TIME', 'U.', 'CD,', 'POLITICAL', 'EAT', 'MILTON', 'B-24H', 'TRAP', 'PREP', 'HSBC', 'MORE', 'RIVER,', 'Z,\"', 'CAR', 'CAVE', 'ARE', '\"AI', 'FDA.\"', 'L.L.C.', 'RUNNING', 'UNPREPARED', 'NBA.', 'OF', 'SALUTING', 'BASEL,', 'SAY', '2B', 'CHARLOTTE,', 'MSG\"', 'IT', 'HEART:', 'VICE', 'TIME:', 'WR,', 'FAR', 'KLINKENBERG', 'OCT.', 'TO', 'FEW', 'ESPN,', 'CNBC;', 'DTV', 'MGM,', 'EDGE', 'KIRK', 'LARRY', \"PATIENT'S\", 'L.T.', 'MAKE', 'CRAIG', 'CONTROL:', 'OBAMA', '350Z,', 'CSOB,', 'IRAQ', 'ACC', 'CAUCUS:', 'AUCTIONS:', 'PLACES', 'HELENA,', 'LEADS', 'MINCE', 'GOD:', 'DPP.', 'ECON-EUROPE', 'CAMPAIGN-CHANGE', 'SAYS', 'BAD', 'CAMPAIGN-MCCAIN', 'BATTLE', 'MOVE', 'SLIGHTLY', 'DVD:', 'NATE', 'JUNG:', 'THAT:', 'D,', 'MJ', 'SEEING', 'WIESMANN', 'BMW', 'GETTING', 'EDS:', 'BENEFITS?', 'TPI.', 'LIFETIMES', 'PTA', 'SCCC', \"'THE\", 'MARK', \"ME?'\", 'SONG', 'OK', 'WSJT,', 'ID;', '866-OUR-VOTE.', 'ING,\"', 'LSU),', 'W,', 'YANKS', 'NY', 'US', 'Q.SEELYE', 'DAYTON,', 'UBS,', '100-RBI', 'PM', 'A.', 'RX-3,', 'P', 'HEALTH', 'WMS', 'IBANEZ,', 'Z,', 'T2:41.', 'FOCUS:', \"THEY'RE\", \"GIANT':\", 'NBA,', 'C.J.', '--U.S.', 'NYPD', 'Y', 'USA,', 'FATHER,', 'REALITY', 'BPA.', 'ORANGE,', 'BANKING', 'FILM', \"U.S.,'\", '(\"I', 'POINT,', \"PBS'\", 'HOME', 'STATE', 'WEIGHT', \"QUARTET'\", 'INDIA:', 'STAY', 'DYSFUNCTION', 'LAUGH', 'TIA', 'NU', 'COUNTRY', 'REPORTS', 'EST', 'NESN', 'STATUS', 'DEREK', 'MIT', 'IPO', \"EXPLETIVES'\", 'DNA,', 'NASA', \"'GET\", 'ESPN', 'T.J.', 'NASA.', 'CANADA:', 'N.Y.,', 'LINE', 'ABC', 'SHOW', 'N.C.):', 'STILLBORN', 'SCARY', 'GREAT', 'EFF', 'ERA.', 'TUBE', 'HELP', 'MIDDLE', 'DENVER', 'R)', '(MEND),', 'GROUND', 'EATING', 'HOMES', 'MGM.', 'OIR', 'WEIRDS', 'DMK.', 'ING', '1040-AM.', 'THE', 'TRAPS', 'DPP', 'GO:', 'CB', \"PAPA'S\", 'INJURED:', 'P.O.', 'TWO', 'HAMPSHIRE:', 'NHL.', 'TWIA-GROWTH', 'DEBRA', 'SB', 'G35', 'SARAH', 'G', 'DEWAN', 'GM.', 'FTSE', 'HIV,', 'L99', 'SUMMIT', 'SLIDE', 'RATE', 'SEC', 'YOUR', 'FU', 'HBO', 'TIME,', 'Q.', 'I-5', '1470-AM.', 'BC', 'Q:', 'TV.', 'COMICS:', 'CNN,', 'KENTUCKY', 'MYSTERY:', 'PLO', 'LB', 'AMERICA', 'J.P.', 'PA', 'ACC.', 'NEW', 'NHL', 'FRIEND', 'DUE', 'WASHINGTON-', 'R-S.C.,', 'CREAM', 'PS,', 'FAA', 'I-AA', 'FINANCIAL', 'FRIDAY:', 'GDP,', 'GEORGIA:', 'WSM', 'DIARY', 'MATERIALS:', \"LET'S\", 'FBI?', 'CHOPPY', 'MDC', 'C.B.', 'CORRECTIONS', 'QUANDARY', 'NBC', 'FBN-BRONCOS-POLITICS-ART', 'MASSIVE', 'AUTO-SALES)', 'M.', 'FOR', 'REST', 'SO', 'MAINE', 'ATLANTA', 'TACTICS', 'AIG', 'SPECIAL', 'CAROLINA', 'U.N.C.L.E.', 'LDL.', 'CNDP,', 'ARGUMENTS', \"FORESKIN'S\", 'JBS,', '\"OUR', 'CONFIDENCE:', 'RIM:', 'YOU', 'PICKING', 'ELECTION', 'NASHUA,', 'BCS,', 'OH,', 'L.', 'LAUSD,', 'A', 'DO', 'CHILDREN', 'FL', 'JAN.', 'QVC,\"', 'XP', '(NBC', 'SCI-TIERNEY-COLUMN', 'OK,', 'CBS,', 'TONGUE', 'NYT', 'LINKS', 'NOT', 'LANGUAGE:', 'MICHAELPOWELL', 'TB', 'LCD,', 'HP/230', '\"DEMOCRATICAL', 'NFC', 'HERTZBERG', 'GENERAL', 'AND', 'KMT', '(EMBARGOED:', 'SCALES', 'SCI-FISH-FARMS', 'DIE-OFFS', 'OK,\"', 'BRANDON', 'TK)', \"'TRANSSIBERIAN'\", 'SEC).', 'TROUBLE', 'USC,', 'SAN', '(GM', 'INTERNATIONAL', \"RENAISSANCE'\", 'D-', 'SETTING', '(OIR),', 'SIGNALS', 'CANDIDATE', 'SCHOOL', 'CAN', 'BARANAUCKAS', 'FROM', 'JASON', 'LOUISIANA', 'SENIOR', 'V.', 'CNN', 'D-N.C.,', 'COURSE:', 'W', 'DEN', 'FCC-RADIO-SPECTRUM', 'I', 'SCHOLARSHIPS', 'NL', 'USFL,', 'NETWORK-RATINGS', 'OWNERSHIP', 'TURNOUT:', 'ISLAND', 'QUESTION?', 'DEALBOOK', 'ORLANDO', 'H.W.', 'RB/WR', '\"USA!\"', '1-800-NYTIMES', 'KINGDOM', '\"SNL\"', 'RI-JOBLESS-ART', 'NSU', 'AGE', 'HIP-HOP', 'MP3', 'TVWORSTWEEK', 'HAUNTING', 'ELN-BLACKS-VOTE-JOURNEY', 'WRITING', 'P.I.', 'WFLZ-FM', 'PG-13).', 'LAPD', 'WARRENTON,', 'OUTWARD', 'CHALLENGING', 'WATER', 'GREGORY', 'BFF', 'BOBBY', 'MASK', 'N.C.,', 'USA,\"', 'WILLS', 'OUR', 'LT', 'LOT', 'TALKS', 'F', 'HEAD', 'RISK', 'I:', 'BANKS-BAILOUT', 'POWER', 'V-8.', 'QB', 'ANC,', 'HIV', 'G50V', 'HDTV', 'RV', 'IV', 'LOWE,', '(END', 'PHILIPPE', 'SCI-DENGUE-FEVER', 'YORK', '\"ATSC\"', 'DAYS', 'VOICES,', '\"DOLLAR\"', 'SS', 'C-', 'LITTLE', 'BEAR', 'DAX', 'HBOS', 'SPAIN', 'AFGHANISTAN', 'CHINEN', 'PAIGE-COL', 'SARS', 'L.A.,', 'C)', 'CAROLINA:', 'TNT', 'ACORN:', '\"W.,\"', 'GPA', 'USEP', 'CARPENTER', 'REMARKABLE', 'WASHINGTON', 'CRP', 'R.', 'BUSINESS', '(KCET,', 'IMG,', 'LPGA', 'B)', 'V', 'TRU,', 'JAPAN', 'KISZLA-COL', '\"I', 'YEAR,', 'IF', 'LLC,', 'SE', 'LS', 'CONSIDERATIONS:', 'BANKER', 'OFF:', 'GE', 'VOTING', 'FAMILY?', 'CRUISE', '(ATK', 'IHA', 'I-A', 'JON', 'AL', 'KPMG', 'MRI.', '\"FBI', 'PRESIDENT', 'SOUNDS', 'JERSEY', 'SHOUTS', 'SELLING', 'KC', 'BCS', 'URI', 'BPA,', 'SHERRY', 'VETERANS', 'FORGETTING', 'STRANGE', \"MERCY'\", 'WILD', 'EA,', 'TONIGHT', 'DNA.', 'LINES', \"'A\", 'CEO,', 'TIMEOUT?:', 'COLOMBIA-ARMY-RESIGN', \"'WHY\", 'MARCH', 'TOM', 'ELN-BLACKS-VOTE.', 'INDUSTRY', 'YELP-RESTAURANT-REVIEWS', 'FALL', 'GPS', 'U.S', 'PRESIDENTIAL', 'D-N.Y.,', 'LAUSD.', 'NBA', 'CIVIL', 'ET', 'GIANT', 'RBC', 'PETA', 'PDVSA,', 'SAVORY', 'P.T.', 'CC', 'PARTNERS', '\"ATK', 'MOVIE-PRESIDENTS', 'CAR.', 'K', '\"B\"', 'CITY', 'ANCHOR', 'JOE', 'NOTES:', 'MPC', 'J.R.', 'HOUSE.\"', 'PDVSA.', 'STREET', 'I-75).', '300ZX,', 'MILENA', 'M.D.', 'WITH', 'CHANGES', 'AMERICAN', 'CITY,', 'LIBOR.', 'WEST', 'X.', \"'I\", 'PLAN', '(CHARLOTTE,', 'SWIM', 'TD,', 'RCA', 'J,', 'NFC.', 'NATO,', 'AFRICA', 'SXT', 'BILL?', 'AP', 'WFLA-AM', 'JBS', 'PATRICK', 'AHEAD', \"SMART'\", 'G.', 'MSNBC', 'CNN.', 'PIMM:', 'II,\"', 'AFC.', 'FDR.\"', 'DNA', 'XLIII', 'JUNCTION', 'CRUSH?', '3-D', 'STUDY', 'LAMENT:', 'FDR,', 'WALKS', 'AUNT,', 'A16,104', 'TRIVIA', 'II?', 'AME', 'HEAVY', 'H.D.S.', 'BRADLEY,', 'TB.', 'M.,', 'TF1,', 'LEAD', 'RESEARCHERS', 'ESPN2).', 'SUNDAY', '(ACORN),', 'NEWS', 'AS', 'ABROAD', 'DANA', 'SARASOTA', 'BREW,', 'APERITIF:', 'LAWRENCE,', 'SEE:', 'LIBERTIES:', 'NAGOURNEY', 'BELFAST-MUSIC', 'THUMB', '\"C\"', 'SCHNEIDERMOVIE', 'WOMEN', 'LS3', 'WAYNE', 'LA', 'EXPENSES:', 'GIFTS', 'BURNETT,', 'FACTS', '\"E\"', 'E', 'JFK', 'WMTX-FM', 'MF', 'PEJ', 'THROUGH', 'IVAN', 'C111-II', 'N.M.;', 'F3000', 'VARITEK,', 'DS', 'GITMO-FUTURE', 'CW', 'E85', 'U.K.', 'WEATHER', 'GOP.', 'TIMES', '3-D,', 'PROGRAMS', 'CBS?', 'BILBAO,', 'S.', 'RS', 'ANXIETY', 'NGO', 'BAILING...', 'VP', 'LESLIE', 'CAUSE', 'DJ.', 'UCLA', 'VENEZUELA-SUITCASE-TRIAL', 'PNC', 'STATE?', 'AUSTEN', 'PC,\"', 'UVM', 'ABOUT', 'SLS', 'WASL.\"', 'TEBOW', 'RETURNS:', 'THURSDAY:', 'JIM', 'MISSING', '\"AIDS', \"UBS'\", 'ATK,', '(A.I.),', 'NYU', 'ELN-BUDGET', 'L.A.,\"', 'DIGITAL', 'NUMBER', 'XLII.', '620-AM', 'FOXBOROUGH', 'NANTUCKET,', 'U.S.C.', 'HTML', 'XXIX,', 'GAIN', 'AIDS.', 'ODDS', 'OK;', 'USF', 'DIXLER', 'UCLA,', \"'KUNG\", 'AM', 'AUTOIMPACT', 'HBO.', \"MURPHY'S\", 'OTHER', 'R.L.', \"CLEMENT'S\", 'FDR?', 'R', 'N.J.', 'FIFA,', 'POLITICS', '\"O-BA-MA\"', 'REPUBLICAN', 'A.J.', '(OT)', 'U.S.', 'NG),', 'A.I.,', 'GO', 'PC.', 'DINING', 'AN', 'ANOTHER', '(I', 'ADAMS,', 'DEATH', 'PISTONS-TRADE', 'UNAWARE', 'SWAT', 'HIV.', 'QUESTIONS', 'V-6', \"GUY'\", 'BOOM!', 'TOOTH', 'MVP', 'III.', 'ALASKA', 'ATK', 'DH/1B', 'K.', 'N,', 'MILAN', 'TPG,', 'BROWN', 'FINAL', '\"UT.\"', 'VA.-CONGRESS-ELECT)', 'E.W.', 'FCC', 'VIRGINIA:', 'FB', 'WRONG', 'FCAT.', 'CONNIE', 'CINCINNATI', 'BOUND', 'ALLISON,', 'CALIF-GAY-MARRIAGE', 'W-L', 'MTA', 'D.J.', 'HOUSING:', 'A,', 'KBR,', 'DHL', 'TRADE', 'N.C.', 'CDO,', '370Z', '2000XL', 'AMERICA:', 'QUARTERBACK', 'JFK.', '(OK,', '\"HDTV', 'LAME', 'NO', 'EF5', 'AFC', 'CHEEKS.\"', 'Q,\"', 'RACE', 'MEETING', \"SUPPORT'\", 'PREGNANCY', 'CAT', 'EA', 'PHILADELPHIA', 'CUT', 'GOUGING', 'WHITE', 'CNN:', 'REMORSE', 'CAMP', 'N.H.', 'KKKA.\"', 'WTA', '(WUSF-FM', 'ST.', 'NASCAR', 'FINDING', 'HAITI:', 'LAYOFFS-BLOGS', 'II,', 'BOX', 'RICHARD', '\"D\"', 'HE', '\"ING', \"STORY'\", \"WILKERSON'S\", 'K.C.', 'BUT', 'MILITARY.COM', 'MONDAY', 'UT,', 'HIV.\"', 'SNL', 'P.T.,', 'REVIEW', 'J', 'GM,', \"'OK,\", 'KBR', 'CONGO-REBELS', 'DS,', 'MYSTERY', 'MEXICO', 'CHRISTMAS', 'CULTURE', 'POLITICS-MEDIA', 'LOUIS', 'U.N.', 'Q', 'PSYCHIATRIC', 'N.Y.', 'EKG', 'MY', 'F-150', 'MINNESOTA', 'GIFT', 'U.N.C.L.E.:', '(FSU', 'TAMPA', 'SPORTS', '(CBS)', 'B-24', 'AFRANE,', 'II.', 'CRISIS', 'LARRYROHTER', 'GMC', 'DEMO', 'RURAL,', 'TSB', 'MVP.', 'ENOUGH:', 'CO2', 'TREVISANI', 'C.C.,', 'WR', 'O.J.', 'CONGRESS-ELECT', 'M', 'GEORGIA', 'CUBA:', 'PRODUCTION', 'FBI', 'COMPANY', 'RT', 'TABLE:', 'CBS', 'TNT,', 'ELN-RDP', 'ACL', 'HP/259', 'YPM', 'JONES,', 'ABC,', 'SHAILA', 'MST', 'LDL\"', 'NALEO', 'LOST', '(HBO', 'BOOBZ.\"', 'IAN', 'OBIT-DORFSMAN', '\"ABC', 'CBS.', 'TOLL', 'FBH-GA-2ND-CHANCE', 'CAC', 'OSTROW-COL-TV', 'IMAGE', 'D.', 'GENERATION', 'CONNECTICUT', 'ELIGIBLE?', 'COURT', '(A', 'CANAL', '--LATIN', \"UNICEF'S\", \"WHAT'S\", 'TV-PUNDITS-SCHOOL', 'ECONOMY:', 'JOHNSON', 'SIEDO,', '\"USA,', 'TECHNICAL', 'LOST-RECORDINGS', '--ASIA', 'ECUADOR-CHOCOLATE', 'MANY', 'QVC', 'USA:', 'BLACK', 'FORWARD-LOOKING:', 'MOLLY', '\"V.\"', 'TRANSFORMATIVE', \"'FLEETING\", 'NOTES', 'USF,', 'SEPARATION', 'NEA', 'TPI,', 'H.', 'LONDON', 'VQ', 'ROBBIE', 'ORANGE', 'ENGLAND', 'OK.', 'TJX', 'D', 'STAY:', 'DH/OF', 'ECON-CRISIS-SOROS.', 'PENNSYLVANIA:', 'CRUZ,', 'BACTERIA', 'HARBOR', 'XM', 'NYT34-36.', 'BRAZIL:', 'FALCONE', '(SE', 'SE,', 'SHEETS,', 'SPEAKING:', 'PLEASE', 'K,', 'PROBLEMS:', 'ELECTION-STOCKS', 'TE', 'MOJO,', '\"O.K.,', 'FSU', 'BROADWAY-ECON', 'I,\"', 'BEACH', 'FDA', 'FIRST', 'STEPHANIE', 'CORPORATE', 'SICHERLE', 'MSNBC:', 'G,', 'NFL.', 'IRS', 'DISCOUNTS', 'CANDIDATES', \"WHO'S\", 'A:', 'JBS-MEAT-PACKER-ART', 'MARKETS', 'EARNINGS', 'G37', 'NATIONAL', 'SYNDICATE.', \"PANDA'\", 'N.J.,', 'CALL:', 'CHICKENS', 'VECO,', 'WHILE', 'TUITION', 'KINGSTON,', 'BU.', 'AUTO-SALES', 'BATS,', 'DELIVERIES', 'B,', 'RIGHTS', 'STUMBLES', 'BROADWAY-SHORT-RUN.', 'PBS', 'MICHAELCOOPER', 'ROCKY', 'ID,', '((BC', 'NG,', 'HOUSE,', 'CDO', 'B-', 'CARAMANICA', \"'THAT\", 'ENTREPRENEURSHIP', 'KATHARINE', 'COLO-POLL-DEN', 'OL', 'MBNA', 'B.J.,', 'GET', 'N.', 'NFL', 'FAMILY', 'USDA', 'CSM', 'DC', 'ISABEL', 'J.B.', 'R.I.', 'WILLIAM', '(OTB)', 'NBC,', 'AIRPORTS-EXPAND', 'AMORIM', 'KCET', 'DEPRESSION', 'ASSESSMENT', 'HOLD', 'JUST', 'FILL', 'II', '26-NOV.', 'FAIR-WEATHER', 'OPTIONAL', 'CHICAGO', '\"CNDP', 'GAINESVILLE', 'CLIFFORD', 'RB', 'ECONOMIC', 'AFFAIRS:', 'ABREU,', 'U.N.C.L.E.\"', 'EF5.\"', '\"A\"', 'ANA', 'PS:', 'CHANGE:', 'UNIVERSITY:', 'BET', 'DEFENSIVELY', 'CROWD', 'ADVISERS', 'NYT28-29.', 'HIV-AIDS', 'JFK,', 'ELSEWHERE\")', 'FORECAST', 'V.P.', 'PEDRO', '\"A', 'ACORN', 'PUBLICATION', 'TPI', 'INDIANAPOLIS', '\"NBC', 'FUNGUS', 'SHEPARD', 'DJ', 'AI,', 'NTIA', 'LAUSD', 'AC/DC', 'SECOND-PARENT', 'PG)', 'GOODNOUGH', 'III', '(R)', 'HANOVER,', 'TRIM.)', 'POLL-BATTLEGROUND-STATES-DEN', 'PARELES', \"'MILLION\", 'PREMATURE', 'O.C.\"', 'UNDERSCORE', 'B\"', 'TALLAHASSEE', 'D.C.,', 'N.M.', 'Y.', 'EVEN', 'DIEGO', 'LX,', 'UBS', 'RATLIFF', 'OZONE-WEST-ART', 'GAME:', 'TLC.\"', 'VOTE', \"'HEMISPHERES'\", 'Y,', 'ME', 'WINNER', 'ZIP', 'NYTNS', 'ATHENS,', 'G.P.A.', 'MLS', 'DAMIEN', 'ENTERTAINMENT', 'MBNA.', 'HARTLEY', 'J.T.', 'RX-7', \"BUYERS'\", 'LOS', 'ROCK', 'D-N.Y.', 'STYLE:', 'ASSISTANCE', 'C.C.', 'NFL?', 'IMG.', 'E+', \"JAGUARS'\", 'SAUCE', 'NSU,', 'PRIVATE-EQUITY-WOES', 'OLD', 'ELECTION-TV-COVERAGE', 'OFFENSIVE', 'LOOK', 'Q,', 'COLLECTION', 'RETIREMENT', 'LCD', 'HDL', 'TB,', 'WES', 'PHILLIPS', 'DEFENSE', 'WORLD,', \"CH'NG\", 'PAC-10),', 'SOC-MARADONA', 'MEATBALLS', 'IRAN-POLITICS-SCANDAL', 'A)', 'SPECIALTY', 'TULUM,', 'J.K.', 'L.A.)', 'COLORADO', 'OBAMA-CAMPAIGN-ART', 'NALEO.', 'J.', 'CLEANSERS:', 'SIGNS', 'N.H.,', 'MEXICO:', 'GUSTS', 'NAIL', 'MGM', 'WORLD', 'FBN-BRONCOS-ELLIS', 'NPD.', 'HBOS,', 'R.J.', 'ANGELES', 'LEESBURG,', 'ENVIRONMENT', 'THQ', 'IMF', 'NORTH', 'RELAX', 'AARP', 'CHILLICOTHE,', 'FARC', 'FAST', 'DEPFA,', 'KKR', 'MOVE,', 'RW', '(CT)', 'COLORADO:', '350Z', 'KANSAS', 'ID', 'SEEKS', 'SERVICE', 'FEMA', 'READER:', 'HUDSON,', 'RX-2', 'HCA,', 'ALICE:', \"CBS'\", 'OFF', 'MONDAY:', 'BBDO', 'DEPARTMENT', 'TOW', 'SAINTS,', 'WHISPERS,', 'BY', 'I-1000.', 'O.K.', 'TD', 'I-4', 'NBC:', 'T.', 'EVOLVING', 'PALATE', 'W.', 'FUEL', 'B+', 'A.I.', 'NATO', 'KM:', 'MTA.', 'DOLLAR', 'MVP?', 'PREZELECT', 'GOES', 'ABBY', 'V-8', 'ADAM', 'WINCHESTER,', 'CD', 'VIX', 'BABY', 'TUESDAY:', 'MEDICAL', 'RIGHT', 'ALVIN', 'CAMPAIGN-FINAL-DAY', 'FARC,\"', 'CLIENTS:', 'MUCH', 'ERA,', '(BEGIN', 'MS', 'FAX:', 'C,', '(SUBS', 'NPR', 'BPA', 'STILL', 'LSU.', 'LANGUAGE', 'BBC', 'FDR', 'PEARSON', 'LLC.', 'AUGIE', 'GONE', 'AUTHOR-JENKINS-ART', '\"R\"', \"'WAKING\", 'ECON-RISK', '\"BBC', 'BONES,', 'PRIVATE', 'AVOID', 'SEC)', 'II:', 'HD', 'LED', 'INVESTMENTS', 'PAYING', 'B', 'PALM', 'TIMETABLE?', 'I.', '(\"TR:', 'JEFFZELENY', 'USC', \"'HAIR-SIDE'\", 'ELSA', 'YWCA', 'WEEK', 'VIX,', 'TWO-SCREEN', 'HAVEN', 'SUMNER-REDSTONE', 'V-6.', 'FCAT', 'DPP,', 'FEB.', 'DDT', 'GENETIC', 'GMAC', 'ING,', '\"C', 'EDITORS:', 'BANK', 'MAIN', 'ROBBINS', 'HEALY', 'ON', 'NFL:', 'BAKER', 'UNICEF', 'FIFA', 'I-A.', 'COLO-POLL', 'LAX', 'ADOPTION', 'P.S.', 'T:', 'POLL-BATTLEGROUND-STATES', 'SIEDO.', 'CHANGE', 'VIEWERS', 'OBIT-THOMPSON', 'IS', 'NCAA', 'ORLANDO,', 'FSU,', 'CONVOY:', 'OT', 'ACTIONS', 'C3', 'GI', 'SWITZERLAND', 'AFL', 'T.R.', 'NOAM', 'ART', 'FEENEY', 'REALLY', 'G).', 'MI6', 'JACKSONVILLE', 'CHANCE', 'SCORE.', 'THIS', 'IED,\"', 'HP/205', 'EARLY', 'BROADCASTS', '\"U.S.', 'SUV', 'ELECTION-DAY-GUIDE', 'P38.', '((A.J.))', 'M.D.\"', 'DRAWN', 'MSNBC,', 'MAY', 'LATIN', 'UN', 'SUNY', 'PHRASE', 'TUESDAY', 'WRBQ-FM', 'DNC', 'OUT', 'PETER', 'DT', 'WORTH', 'ROHTER', 'DRAW:', 'DE', 'FLAWED', 'DVD', 'OUR-VOTE,', 'M..A..S..H', 'ELN-CONGRESS', 'ACL.', 'LEBANON,', 'PC', 'ZIMBABWE-AID', 'OUT:', 'TV', 'ACC,', 'KOMO/4', 'BEACH,', 'FBS', 'CARLA', '970-AM.', 'EAST,', 'USS', 'UNESCO,', 'WHAT', 'G37.', 'SHIFT', 'ATK.', 'MOJO-HD,', 'V.A.', 'CHADS:', 'KMT,', 'FORESHADOWING', 'O.', '\"TB', 'IED', 'CIA'}\n"
+ ]
+ }
+ ],
+ "source": [
+ "# d)\n",
+ "import string\n",
+ "\n",
+ "uppercase_words = []\n",
+ "\n",
+ "for word in wordlist:\n",
+ " if word.isupper() == True:\n",
+ " uppercase_words.append(word)\n",
+ "print(len(uppercase_words))\n",
+ "\n",
+ "uppercase_unique = set(uppercase_words)\n",
+ "print(uppercase_unique)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# e)\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "words without vowels: 26729\n"
+ ]
+ }
+ ],
+ "source": [
+ "# f)\n",
+ "count = 0\n",
+ "\n",
+ "for i in range(len(wordlist)):\n",
+ " if \"a\" in wordlist[i] or \"e\" in wordlist[i] or \"i\" in wordlist[i] or \"o\" in wordlist[i] or \"u\" in wordlist[i]:\n",
+ " pass\n",
+ " else:\n",
+ " count += 1\n",
+ "\n",
+ "print(\"words without vowels:\",count)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# g)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "#### 4. Compute ngrams \n",
+ "\n",
+ "a. Find the 10 most common bigrams \n",
+ "b. Find the 10 most common trigrams "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "The most common bigrams are: [(('of', 'the'), 3091), (('in', 'the'), 2499), (('to', 'the'), 1171), (('on', 'the'), 1082), (('for', 'the'), 882), (('and', 'the'), 803), (('in', 'a'), 751), (('to', 'be'), 709), (('at', 'the'), 675), (('with', 'the'), 561)]\n"
+ ]
+ }
+ ],
+ "source": [
+ "# a)\n",
+ "def ngram_common(wordlist, ngrams):\n",
+ " ngram_count = {}\n",
+ " for i in range(len(wordlist)-ngrams+1):\n",
+ " ngram = tuple((wordlist[i:i+ngrams]))\n",
+ " if not ngram in ngram_count:\n",
+ " ngram_count[ngram] = 1\n",
+ " else:\n",
+ " ngram_count[ngram] += 1\n",
+ " return ngram_count \n",
+ " \n",
+ "\n",
+ "bigrams = ngram_common(wordlist, ngrams = 2) \n",
+ "bigrams_sorted = sorted(bigrams.items(), key = lambda x:x[1], reverse = True)\n",
+ "print(f\"The most common bigrams are: {bigrams_sorted[0:10]}\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "The most common trigrams are: [(('one', 'of', 'the'), 191), (('a', 'lot', 'of'), 169), (('the', 'United', 'States'), 112), (('going', 'to', 'be'), 91), (('can', 'be', 'reached'), 91), (('as', 'well', 'as'), 90), (('be', 'reached', 'at'), 90), (('the', 'end', 'of'), 89), (('to', 'be', 'a'), 85), (('the', 'University', 'of'), 83)]\n"
+ ]
+ }
+ ],
+ "source": [
+ "# b)\n",
+ "trigrams = ngram_common(wordlist, ngrams = 3)\n",
+ "trigrams_sorted = sorted(trigrams.items(), key = lambda x:x[1], reverse = True)\n",
+ "print(f\"\\nThe most common trigrams are: {trigrams_sorted[0:10]}\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "#### 5. Make a Concordance\n",
+ "\n",
+ "a. Create a concordance display for an arbitrary word. See the example below \n",
+ "\n",
+ ""
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 14,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "[['projects', 'on', 'its', 'books', 'could', 'be'], 'in', ['jeopardy', 'if', 'the', 'headwinds', 'persist', 'into']]\n",
+ "[['how', 'much', 'of', 'the', \"company's\", '$15.3billion'], 'in', ['future', 'business', 'commitments', 'could', 'be', 'affected']]\n",
+ "[['35percent', 'improvement', 'over', 'the', 'same', 'period'], 'in', ['2007.', 'KBR,', 'which', 'was', 'spun', 'off']]\n",
+ "[['from', '$63', 'million,', 'or', '37', 'cents,'], 'in', ['the', 'July-September', 'period', 'of', '2007.', 'Income']]\n",
+ "[['on', 'the', 'back', 'of', 'big', 'gains'], 'in', ['the', \"company's\", 'government', 'and', 'infrastructure', 'unit']]\n",
+ "[['KBR', 'shares', '77', 'cents', 'to', '$14.84'], 'in', ['New', 'York', 'Stock', 'Exchange', 'trading.', 'In']]\n",
+ "[['trading.', 'In', 'commenting', 'on', 'third-quarter', 'earnings'], 'in', ['recent', 'days,', 'oil', 'and', 'gas', 'executives']]\n",
+ "[['challenging', 'era,', 'given', 'the', 'extreme', 'volatility'], 'in', ['the', 'credit,', 'financial', 'and', 'commodity', 'markets.']]\n",
+ "[['orders.', '\"Just', 'based', 'on', 'the', 'change'], 'in', ['oil', 'price', 'only,', 'we', 'still', 'are']]\n",
+ "[['Tudor', 'Pickering', 'Holt', '&', 'Co.', 'Securities'], 'in', ['Houston,', 'said', 'if', 'KBR', 'sees', 'projects']]\n",
+ "[['or', 'delayed,', 'it', 'would', 'be', 'those'], 'in', ['early', 'engineering', 'stages', 'where', 'final', 'investment']]\n",
+ "[['It', 'also', 'takes', 'major', 'infrastructure', 'projects'], 'in', ['the', 'U.S.', 'and', 'abroad,', 'from', 'repairing']]\n",
+ "[['U.S.', 'and', 'abroad,', 'from', 'repairing', 'airfields'], 'in', ['Iraq', 'to', 'building', 'embassies', 'in', 'other']]\n",
+ "[['airfields', 'in', 'Iraq', 'to', 'building', 'embassies'], 'in', ['other', 'countries.', 'But', 'it', 'receives', 'more']]\n",
+ "[['non-military', 'support', 'to', 'the', 'U.S.', 'Army'], 'in', ['the', 'Middle', 'East.', 'Beginning', 'next', 'year,']]\n",
+ "[['KBR', 'could', 'see', 'a', 'short-term', 'increase'], 'in', ['work', 'to', 'mobilize', 'people', 'and', 'equipment']]\n",
+ "[['broader', 'diversification', 'effort', 'since', 'leaving', 'Halliburton'], 'in', ['April', '2007,', 'KBR', 'has', 'been', 'trying']]\n",
+ "[['construction', 'firm', 'BE&K.', 'That', 'deal', 'closed'], 'in', ['July', 'and', 'in', 'the', 'third', 'quarter']]\n",
+ "[['That', 'deal', 'closed', 'in', 'July', 'and'], 'in', ['the', 'third', 'quarter', 'helped', 'KBR', 'boost']]\n",
+ "[['4', 'to', '5', 'cents', 'per', 'share'], 'in', ['the', 'quarter', 'after', 'Hurricane', 'Ike', 'knocked']]\n",
+ "[[\"company's\", 'downtown', 'Houston', 'office', 'building,', 'resulting'], 'in', ['lost', 'billable', 'work', 'hours.', 'KBR', 'also']]\n",
+ "[['shell', 'out', 'for', 'repairs', 'to', 'operations'], 'in', ['the', 'Gulf', 'of', 'Mexico.', 'KBR', 'said']]\n",
+ "[['projects', 'on', 'its', 'books', 'could', 'be'], 'in', ['jeopardy', 'if', 'the', 'headwinds', 'persist', 'into']]\n",
+ "[['how', 'much', 'of', 'the', \"company's\", '$15.3billion'], 'in', ['future', 'business', 'commitments', 'could', 'be', 'affected']]\n",
+ "[['35percent', 'improvement', 'over', 'the', 'same', 'period'], 'in', ['2007.', 'KBR,', 'which', 'was', 'spun', 'off']]\n",
+ "[['from', '$63', 'million,', 'or', '37', 'cents,'], 'in', ['the', 'July-September', 'period', 'of', '2007.', 'Income']]\n",
+ "[['on', 'the', 'back', 'of', 'big', 'gains'], 'in', ['the', \"company's\", 'government', 'and', 'infrastructure', 'unit']]\n",
+ "[['KBR', 'shares', '77', 'cents', 'to', '$14.84'], 'in', ['New', 'York', 'Stock', 'Exchange', 'trading.', 'In']]\n",
+ "[['trading.', 'In', 'commenting', 'on', 'third-quarter', 'earnings'], 'in', ['recent', 'days,', 'oil', 'and', 'gas', 'executives']]\n",
+ "[['challenging', 'era,', 'given', 'the', 'extreme', 'volatility'], 'in', ['the', 'credit,', 'financial', 'and', 'commodity', 'markets.']]\n",
+ "[['orders.', '\"Just', 'based', 'on', 'the', 'change'], 'in', ['oil', 'price', 'only,', 'we', 'still', 'are']]\n",
+ "[['Tudor', 'Pickering', 'Holt', '&', 'Co.', 'Securities'], 'in', ['Houston,', 'said', 'if', 'KBR', 'sees', 'projects']]\n",
+ "[['or', 'delayed,', 'it', 'would', 'be', 'those'], 'in', ['early', 'engineering', 'stages', 'where', 'final', 'investment']]\n",
+ "[['It', 'also', 'takes', 'major', 'infrastructure', 'projects'], 'in', ['the', 'U.S.', 'and', 'abroad,', 'from', 'repairing']]\n",
+ "[['U.S.', 'and', 'abroad,', 'from', 'repairing', 'airfields'], 'in', ['Iraq', 'to', 'building', 'embassies', 'in', 'other']]\n",
+ "[['airfields', 'in', 'Iraq', 'to', 'building', 'embassies'], 'in', ['other', 'countries.', 'But', 'it', 'receives', 'more']]\n",
+ "[['non-military', 'support', 'to', 'the', 'U.S.', 'Army'], 'in', ['the', 'Middle', 'East.', 'Beginning', 'next', 'year,']]\n",
+ "[['KBR', 'could', 'see', 'a', 'short-term', 'increase'], 'in', ['work', 'to', 'mobilize', 'people', 'and', 'equipment']]\n",
+ "[['broader', 'diversification', 'effort', 'since', 'leaving', 'Halliburton'], 'in', ['April', '2007,', 'KBR', 'has', 'been', 'trying']]\n",
+ "[['construction', 'firm', 'BE&K.', 'That', 'deal', 'closed'], 'in', ['July', 'and', 'in', 'the', 'third', 'quarter']]\n",
+ "[['That', 'deal', 'closed', 'in', 'July', 'and'], 'in', ['the', 'third', 'quarter', 'helped', 'KBR', 'boost']]\n",
+ "[['4', 'to', '5', 'cents', 'per', 'share'], 'in', ['the', 'quarter', 'after', 'Hurricane', 'Ike', 'knocked']]\n",
+ "[[\"company's\", 'downtown', 'Houston', 'office', 'building,', 'resulting'], 'in', ['lost', 'billable', 'work', 'hours.', 'KBR', 'also']]\n",
+ "[['shell', 'out', 'for', 'repairs', 'to', 'operations'], 'in', ['the', 'Gulf', 'of', 'Mexico.', 'Three', 'states']]\n",
+ "[['any', 'sweeping', 'conclusions.', 'For', 'couples', 'living'], 'in', ['states', 'that', 'offer', 'marriage', 'or', 'civil']]\n",
+ "[['relationship', 'official', 'may', 'pay', 'significantly', 'less'], 'in', ['state', 'estate', 'taxes.', 'They', 'will', 'also']]\n",
+ "[['make', 'medical', 'decisions', 'for', 'a', 'partner'], 'in', ['emergencies.', 'Still,', 'the', 'many', 'rights', 'that']]\n",
+ "[['marriage', '--', 'Connecticut', 'made', 'it', 'legal'], 'in', ['October', '--', 'New', 'Jersey,', 'New', 'Hampshire']]\n",
+ "[['and', 'senior', 'counsel', 'at', 'Lambda', 'Legal'], 'in', ['New', 'York.', '\"More', 'than', '40', 'states']]\n",
+ "[['as', 'soon', 'as', 'California', 'legalized', 'it'], 'in', ['May.', 'They', 'were', 'wed', 'in', 'Palos']]\n",
+ "[['it', 'in', 'May.', 'They', 'were', 'wed'], 'in', ['Palos', 'Verdes', 'Estates,', 'Calif.,', 'on', 'Oct.']]\n",
+ "[['if', 'their', 'son,', 'Joshua,', '5,', 'lands'], 'in', ['the', 'emergency', 'room', 'because', 'of', 'his']]\n",
+ "[['to', 'specify', 'who', 'can', 'visit', 'you'], 'in', ['the', 'hospital.', 'Another', 'important', 'document', 'is']]\n",
+ "[['we', 'could', 'have', 'family', 'members', 'come'], 'in', ['and', 'say,', \"'No,\", 'I', 'know', 'better']]\n",
+ "[['bills.', 'WILLS', 'AND', 'TRUSTS', 'Being', 'married'], 'in', ['a', 'state', 'that', 'recognizes', 'your', 'union']]\n",
+ "[['you', 'basically', 'put', 'all', 'your', 'assets'], 'in', ['the', 'trust,', 'and', 'the', 'trustee', 'you']]\n",
+ "[['legal', 'documents', 'drafted', 'if', 'they', 'are'], 'in', ['a', 'civil', 'union', 'or', 'a', 'marriage,']]\n",
+ "[['said', 'Debra', 'Neiman,', 'a', 'financial', 'planner'], 'in', ['Arlington,', 'Mass.', 'RETIREMENT', 'Since', 'same-sex', 'married']]\n",
+ "[['and', 'those', 'with', 'equivalent', 'rights', 'living'], 'in', ['states', 'that', 'recognize', 'them', 'have', 'this']]\n",
+ "[['the', 'child', 'and', 'will', 'ensure', 'custody'], 'in', ['the', 'event', 'that', 'one', 'parent', 'dies,']]\n",
+ "[['from', 'either', 'parent.', 'If', 'you', 'live'], 'in', ['a', 'state', 'where', 'you', 'cannot', 'get']]\n",
+ "[['one', 'partner', 'makes', 'a', 'big', 'deposit'], 'in', ['a', 'shared', 'account', 'and', 'the', 'other']]\n",
+ "[['there', 'about', 'how', 'to', 'apply', 'this'], 'in', ['the', 'day-to-day', 'operation', 'of', 'a', 'household,\"']]\n",
+ "[['continue.', '\"It\\'s', 'like', 'seeing', 'someone', 'out'], 'in', ['the', 'water', 'drowning', 'and', 'saying,', \"'I\"]]\n",
+ "[['P.', 'Louise', 'Halloran,', 'a', 'vice', 'president'], 'in', ['wealth', 'management', 'at', 'Smith', 'Barney', 'in']]\n",
+ "[['in', 'wealth', 'management', 'at', 'Smith', 'Barney'], 'in', ['Connecticut,', 'who', 'has', 'several', 'same-sex', 'couples']]\n",
+ "[['when', 'he', 'visited', 'a', 'row', 'house'], 'in', ['the', 'Georgetown', 'neighborhood,', 'he', 'overlooked', 'the']]\n",
+ "[['thisshouldbeillegal.com,', 'a', 'Web', 'site', 'set', 'up'], 'in', ['August', 'by', 'city', 'housing', 'officials', 'as']]\n",
+ "[['the', 'director', 'of', 'the', 'program,', 'said'], 'in', ['a', 'videotaped', 'introduction', 'to', 'the', 'Web']]\n",
+ "[['we', 'want', 'to', 'put', 'the', 'power'], 'in', ['your', 'hands.\"', 'More', 'than', '9,000', 'users']]\n",
+ "[['campus-related', 'fire', 'deaths', 'since', '2000', 'occurred'], 'in', ['off-campus', 'housing.', 'After', \"Rigby's\", 'death,', 'fire']]\n",
+ "[['on', 'an', 'Obama', 'win', 'a', 'week'], 'in', ['advance', 'had', 'zero', 'downside.', '\"I', 'never']]\n",
+ "[['it', 'on', 'an', 'outcome,\"', 'Trudeau', 'wrote'], 'in', ['an', 'e-mail', 'to', 'the', 'St.', 'Petersburg']]\n",
+ "[['Petersburg', 'Times.', '\"If', 'Obama', 'wins,', \"I'm\"], 'in', ['the', 'flow', 'and', 'commenting', 'on', 'a']]\n",
+ "[['global', 'uproar', 'that', 'a', 'goofy', 'call'], 'in', ['a', 'comic', 'strip', \"isn't\", 'going', 'to']]\n",
+ "[['readers.', '\"If', 'Obama', 'is', 'elected', 'president'], 'in', [\"(Doonesbury's)\", 'world,\"', 'said', 'Tim', 'Bannon,', 'editor']]\n",
+ "[['\"great', 'idea\"', 'to', 'keep', 'Obama', 'president'], 'in', ['Doonesbury', 'even', 'if', 'he', 'loses.', 'At']]\n",
+ "[['him', 'still', 'hate', 'him,\"', 'Wilson', 'wrote'], 'in', ['an', 'e-mail.', '\"If', \"he's\", 'wrong,', 'everybody']]\n",
+ "[['from', 'most', 'of', 'its', 'money', 'funds'], 'in', ['the', 'wake', 'of', 'a', 'panicky', 'run']]\n",
+ "[['Exchange', 'Commission', 'have', 'to', 'choose', 'sides'], 'in', ['a', 'backstage', 'battle', 'between', 'two', 'groups']]\n",
+ "[['week', 'of', 'Sept.', '15', 'share', 'equally'], 'in', ['the', 'liquidation', 'proceeds.', 'The', 'other', 'legal']]\n",
+ "[['has', 'more', 'than', '$5', 'billion', 'frozen'], 'in', ['the', 'fund.', 'The', 'corporation', '\"has', 'communicated']]\n",
+ "[['promise', 'of', 'full', 'repayment,\"', 'it', 'said'], 'in', ['a', 'recent', 'statement.', '\"We', 'reiterated', 'our']]\n",
+ "[['dollar.', 'Peggy', 'Lucero,', 'a', 'fund', 'investor'], 'in', ['Bethesda,', 'Md.,', 'said', 'she', 'was', 'too']]\n",
+ "[['government', 'regulators,', 'to', 'take', 'much', 'pleasure'], 'in', ['the', 'news.', 'A', 'check', 'for', 'half']]\n",
+ "[['jump', 'jubilantly', 'around', 'the', 'cold', 'room'], 'in', ['my', 'house,\"', 'she', 'said.', '\"When', \"one's\"]]\n",
+ "[['Michael', 'Rosenbaum,', 'an', 'independent', 'television', 'producer'], 'in', ['Manhattan,', 'said', 'he', 'took', '\"some', 'solace\"']]\n",
+ "[['distributions\"', 'when', 'its', 'remaining', '$25', 'billion'], 'in', ['assets', 'were', 'liquidated.', 'But', '17', 'other']]\n",
+ "[['that', 'helped', 'doom', 'his', 'presidential', 'bid'], 'in', ['2000.', '\"Sooooo,', 'where', 'were', 'we?', \"It's\"]]\n",
+ "[['stretched', 'across', 'the', 'stage,', 'Gore', 'engaged'], 'in', ['a', 'subtle', 'game', 'of', 'what-if:', 'What']]\n",
+ "[['\"But', 'seriously,', 'right', 'now', 'we', 'are'], 'in', ['the', 'final', 'days', 'of', 'this', 'historic']]\n",
+ "[['making', 'his', 'first', 'appearance', 'for', 'Obama'], 'in', ['Florida,', 'with', 'stops', 'in', 'West', 'Palm']]\n",
+ "[['for', 'Obama', 'in', 'Florida,', 'with', 'stops'], 'in', ['West', 'Palm', 'Beach', 'and', 'Pompano', 'Beach.']]\n",
+ "[['before', 'Tuesday.', 'The', 'crowd', 'paid', 'homage'], 'in', ['return.', '\"You\\'re', 'our', 'president,\"', 'a', 'man']]\n",
+ "[['a', 'man', 'shouted', 'at', 'Broward', 'College'], 'in', ['Pompano', 'Beach.', 'Gore', 'smiled,', 'but', 'kept']]\n",
+ "[['Bush', 'clone,', 'telling', 'an', 'afternoon', 'audience'], 'in', ['Broward', 'County', 'that', 'McCain', 'has', 'overwhelmingly']]\n",
+ "[['on', 'opposing', 'pages,', 'apparently', 'leading', 'many'], 'in', ['the', 'heavily', 'Democratic', 'county', 'to', 'mistakenly']]\n",
+ "[['who', 'came', 'to', 'hear', 'Gore', 'speak'], 'in', ['West', 'Palm', 'Beach.', '\"A', 'lot', 'of']]\n",
+ "[['earning', 'him', 'the', 'Nobel', 'Peace', 'Prize'], 'in', ['2007.', '\"Certainly', 'this', 'will', 'always', 'be']]\n",
+ "[['Mitchell', 'Berger,', 'a', 'prominent', 'Democratic', 'fundraiser'], 'in', ['Florida', 'and', 'friend', 'of', 'Gore.', '\"He']]\n",
+ "[['royal', 'family', 'of', 'Abu', 'Dhabi,', 'swooped'], 'in', ['last', 'month', 'to', 'buy', 'the', 'British']]\n",
+ "[['almost', '3.5', 'billion', 'pounds', '($5.77', 'billion)'], 'in', ['Barclays,', 'one', 'of', \"Britain's\", 'largest', 'banks']]\n",
+ "[['to', 'another', '15.5', 'percent.', 'With', 'markets'], 'in', ['turmoil', 'and', 'some', 'big', 'sovereign', 'wealth']]\n",
+ "[['the', 'market', 'is', 'down,\"', 'Mubarak', 'said'], 'in', ['a', 'brief', 'interview', 'last', 'month.', '\"There']]\n",
+ "[['strategic', 'investments.', 'These', 'have', 'included', 'stakes'], 'in', ['the', 'private', 'equity', 'fund', 'Carlyle,', 'the']]\n",
+ "[['investor;', \"Mubadala's\", 'charge', 'is', 'to', 'invest'], 'in', ['joint', 'ventures', 'that', 'promise', 'both', 'a']]\n",
+ "[['Davidson,', 'a', 'professor', 'at', 'Durham', 'University'], 'in', ['Britain,', 'who', 'has', 'written', 'an', 'economic']]\n",
+ "[['crown', 'prince', 'and', 'he', 'can', 'step'], 'in', ['whenever', 'he', 'is', 'needed.\"', 'Mubarak', 'appeared']]\n",
+ "[['joint', 'venture', 'focused', 'on', 'commercial', 'finance'], 'in', ['the', 'Middle', 'East', 'and', 'Africa,', 'and']]\n",
+ "[['increasingly', 'public', 'profile', 'tracked', 'the', 'rise'], 'in', ['the', 'price', 'of', 'oil', 'to', 'a']]\n",
+ "[['coming.', 'So', 'far,', 'Mubadala', 'has', 'invested'], 'in', ['sectors', 'like', 'aerospace,', 'health', 'care,', 'gas']]\n",
+ "[['Mokarrab.', 'Like', 'Mubarak,', 'he', 'was', 'educated'], 'in', ['the', 'United', 'States', 'and', 'has', 'a']]\n",
+ "[['purposefully', 'toward', 'a', 'more', 'active', 'role'], 'in', ['the', 'international', 'financial', 'community,', 'with', 'Mubarak']]\n",
+ "[['of', 'the', 'great', 'young', 'business', 'leaders'], 'in', ['the', 'world.\"', 'Hexion', 'Specialty', 'Chemicals', 'suffered']]\n",
+ "[['the', 'hook', 'for', 'billions', 'of', 'dollars'], 'in', ['legal', 'damages.', 'The', 'financing', 'commitments', 'of']]\n",
+ "[['executives,', 'Leon', 'Black', 'and', 'Joshua', 'Harris,'], 'in', ['Texas,', 'arguing', 'that', 'the', 'three', 'fraudulently']]\n",
+ "[['sued', 'Credit', 'Suisse', 'and', 'Deutsche', 'Bank'], 'in', ['Texas', 'as', 'well.', '\"Hexion', 'remains', 'obligated']]\n",
+ "[['vigorously', 'pursue', 'our', 'claims', 'for', 'damages'], 'in', ['our', 'suits', 'pending', 'in', 'both', 'Delaware']]\n",
+ "[['for', 'damages', 'in', 'our', 'suits', 'pending'], 'in', ['both', 'Delaware', 'and', 'Texas.\"', 'The', 'state']]\n",
+ "[['P.', 'Mills,', 'will', 'be', 'stepping', 'down'], 'in', ['June', 'after', '14', 'years', 'of', 'overseeing']]\n",
+ "[['3', 'million', 'students.', 'Mills,', '63,', 'said'], 'in', ['an', 'interview', 'on', 'Friday', 'that', 'he']]\n",
+ "[['paid', '$195,000', 'a', 'year,', 'was', 'appointed'], 'in', ['1995', 'by', 'the', 'Board', 'of', 'Regents,']]\n",
+ "[['to', 'students', 'who', 'pass', 'Regents', 'exams'], 'in', ['core', 'subjects,', 'the', 'standard', 'for', 'all']]\n",
+ "[['between', '98', 'percent', 'and', '100', 'percent'], 'in', ['each', 'of', 'the', 'last', 'three', 'years,']]\n",
+ "[['years,', 'up', 'from', 'about', '85', 'percent'], 'in', ['the', 'mid-1990s.', 'With', 'the', \"Regents'\", 'backing,']]\n",
+ "[['mid-1990s.', 'With', 'the', \"Regents'\", 'backing,', 'Mills'], 'in', ['1999', 'began', 'holding', 'districts', 'accountable', 'for']]\n",
+ "[['a', 'state', 'leader', 'matters', 'a', 'lot'], 'in', ['terms', 'of', 'whether', 'kids', 'learn', 'or']]\n",
+ "[['Education', 'Trust,', 'an', 'advocacy', 'group', 'based'], 'in', ['Washington.', '\"If', 'you', 'judge', 'this', 'man']]\n",
+ "[['judge', 'this', 'man', 'by', 'the', 'improvement'], 'in', ['achievement,', 'especially', 'among', 'minority', 'and', 'poor']]\n",
+ "[['about', 'some', 'of', 'the', 'biggest', 'gains'], 'in', ['the', 'country.\"', 'But', 'some', 'educators', 'and']]\n",
+ "[['on', 'drilling', 'students', 'on', 'basic', 'skills'], 'in', ['English', 'and', 'math', 'that', 'were', 'covered']]\n",
+ "[['of', 'more', 'creative', 'forms', 'of', 'instruction'], 'in', ['poetry', 'and', 'writing', 'as', 'well', 'as']]\n",
+ "[['poetry', 'and', 'writing', 'as', 'well', 'as'], 'in', ['enrichment', 'activities', 'like', 'art,', 'music', 'and']]\n",
+ "[['taken', 'over', 'by', 'the', 'Education', 'Department'], 'in', ['2002.', 'In', 'January,', 'the', 'state', 'Legislature']]\n",
+ "[['the', 'state', 'had', 'built', 'new', 'buildings'], 'in', ['the', 'district', 'and', 'sent', 'in', 'some']]\n",
+ "[['buildings', 'in', 'the', 'district', 'and', 'sent'], 'in', ['some', 'of', 'the', \"state's\", 'top', 'administrators']]\n",
+ "[['creative', 'pursuits.', 'Mills', 'got', 'his', 'start'], 'in', ['education', 'as', 'a', 'history', 'teacher', 'at']]\n",
+ "[['after', 'earning', \"bachelor's\", 'and', \"master's\", 'degrees'], 'in', ['history', 'from', 'Middlebury', 'College', 'and', 'Columbia']]\n",
+ "[['that', 'he', 'planned', 'to', 'continue', 'working'], 'in', ['the', 'education', 'field', 'and', 'would', 'be']]\n",
+ "[['\"It', 'will', 'be', 'hard', 'to', 'leave'], 'in', ['June,', 'but', \"there's\", 'time', 'to', 'get']]\n",
+ "[['Is', \"Hollywood's\", 'next', 'big', 'adventure', '\"Tintin'], 'in', ['Culver', 'City\"?', 'After', 'months', 'of', 'deal-making']]\n",
+ "[['Peter', 'Jackson', 'may', 'find', 'its', 'financiers'], 'in', ['a', 'partnership', 'being', 'forged', 'by', 'Sony']]\n",
+ "[['Calif.-based', 'parent', 'of', 'Columbia', 'Pictures,', 'is'], 'in', ['advanced', 'negotiations', 'toward', 'a', 'deal', 'to']]\n",
+ "[['there', '25', 'years', 'ago,', 'shocked', 'many'], 'in', ['Hollywood', 'by', 'declaring', 'it', 'too', 'risky,']]\n",
+ "[['Paramount', 'would', 'distribute', 'the', '\"Tintin\"', 'movies'], 'in', ['North', 'America', 'and', 'some', 'English-speaking', 'territories,']]\n",
+ "[['while', 'Sony', 'would', 'distribute', 'the', 'pictures'], 'in', ['various', 'foreign', 'territories,', 'including', 'Europe', 'and']]\n",
+ "[['Pitt,', 'will', 'be', 'distributed', 'by', 'Paramount'], 'in', ['the', 'United', 'States', 'and', 'by', 'Warner']]\n",
+ "[['expected', 'to', 'be', 'ready', 'for', 'release'], 'in', ['2010.', \"Jackson's\", 'installment', 'would', 'come', 'some']]\n",
+ "[['deal', 'would', 'be', 'one', 'more', 'step'], 'in', ['the', 'readjustment', 'of', 'its', 'relations', 'with']]\n",
+ "[['company.', 'The', 'studio', 'had', 'acquired', 'DreamWorks'], 'in', ['2006,', 'but', 'Spielberg', 'and', 'his', 'associates']]\n",
+ "[['with', 'a', 'number', 'of', 'Paramount', 'projects'], 'in', ['coming', 'months.', 'He', 'has', 'a', 'producing']]\n",
+ "[['Fallen,\"', 'a', 'sequel', 'set', 'for', 'release'], 'in', ['June.', 'Meanwhile,', 'his', 'new', 'company', 'remains']]\n",
+ "[['with', 'Paramount', 'through', 'their', 'mutual', 'interest'], 'in', ['dozens', 'of', 'development', 'projects', 'that', 'are']]\n",
+ "[['videos.', 'Disputes', 'over', 'prime', 'poster', 'placement'], 'in', ['the', 'gym.', 'Campaign', 'season', 'is', 'in']]\n",
+ "[['in', 'the', 'gym.', 'Campaign', 'season', 'is'], 'in', ['full', 'swing', 'at', 'suburban', 'Sylvester', 'Middle']]\n",
+ "[['of', 'Seattle--and', \"it's\", 'intense.', 'Each', 'student'], 'in', ['Ellyn', \"Roe's\", 'social', 'studies/language', 'arts', 'class']]\n",
+ "[['the', 'project', 'with', 'fervor,', 'and', 'ballots'], 'in', ['the', \"school's\", 'mock', 'election', 'already', 'have']]\n",
+ "[['Learning', 'is', 'a', 'hot', 'topic,', 'particularly'], 'in', ['the', 'race', 'for', 'state', 'school', 'superintendent,']]\n",
+ "[['political', 'views', 'by', 'campaigning', 'for', 'candidates'], 'in', ['school', 'or', 'participating', 'in', 'national', 'or']]\n",
+ "[['for', 'candidates', 'in', 'school', 'or', 'participating'], 'in', ['national', 'or', 'state', 'mock', 'elections.', 'Nearly']]\n",
+ "[['14,000', 'Washington', 'students', 'already', 'have', 'voted'], 'in', ['the', 'Youth', 'Leadership', \"Initiative's\", '2008', 'Mock']]\n",
+ "[['social', 'studies,', 'and', 'got', 'Sealth', 'involved'], 'in', ['the', 'election.', '\"They', \"don't\", 'hear', 'much']]\n",
+ "[[\"don't\", 'hear', 'much', 'about', 'third-party', 'candidates'], 'in', ['the', 'media.\"', \"Sealth's\", 'results', 'Friday:', 'An']]\n",
+ "[['election', 'issue.', 'Even', 'kindergarteners', 'cast', 'ballots'], 'in', ['a', 'mock', 'election', 'organized', 'by', 'the']]\n",
+ "[['At', 'the', 'Puget', 'Sound', 'Skills', 'Center'], 'in', ['Burien,', 'social', 'studies', 'specialist', 'Michael', 'McSweeney']]\n",
+ "[['Anderson,', 'who', 'said', 'he', 'grew', 'up'], 'in', ['a', 'Democratic-leaning', 'family', 'and', 'had', 'supported']]\n",
+ "[['family', 'and', 'had', 'supported', 'Obama.', 'But'], 'in', [\"McSweeney's\", 'class,', \"he's\", 'studied', 'both', 'candidates']]\n",
+ "[['marriage.', '\"I\\'m', 'still', 'kind', 'of', 'confused,'], 'in', ['the', 'middle,\"', 'he', 'said.', '\"But', \"I'm\"]]\n",
+ "[['both', 'sides.\"', 'At', 'Pacific', 'Middle', 'School'], 'in', ['Des', 'Moines,', 'teachers', 'challenged', 'students', 'to']]\n",
+ "[['into', 'a', \"voters'\", 'pamphlet.', 'Top', 'finishers'], 'in', ['the', \"school's\", 'primary', 'last', 'week', 'were']]\n",
+ "[['allowed', 'to', 'hang', 'one', 'campaign', 'poster'], 'in', ['the', 'cafeteria', 'and', 'will', 'deliver', 'a']]\n",
+ "[['\"We', 'can', 'mirror', \"what's\", 'going', 'on'], 'in', ['the', 'real', 'world.\"', 'The', 'cosmetic', 'company']]\n",
+ "[['Avon', 'products,', 'be', 'it', 'lip', 'gloss'], 'in', ['Shanghai,', 'China,', 'or', 'face', 'powder', 'in']]\n",
+ "[['in', 'Shanghai,', 'China,', 'or', 'face', 'powder'], 'in', ['Rio', 'de', 'Janeiro,', 'Brazil.', 'The', 'company,']]\n",
+ "[['By', 'contrast,', 'revenue', 'rose', '25', 'percent'], 'in', ['both', 'Latin', 'America', 'and', 'China', 'and']]\n",
+ "[['America', 'and', 'China', 'and', '8', 'percent'], 'in', ['Western', 'Europe,', 'the', 'Middle', 'East', 'and']]\n",
+ "[['born', 'the', 'daughter', 'of', 'Chinese', 'immigrants'], 'in', ['Toronto', 'and', 'moved', 'to', 'a', 'suburb']]\n",
+ "[['can', 'improve', 'the', 'lives', 'of', 'women'], 'in', ['developing', 'countries', 'and', 'where', 'the', 'next']]\n",
+ "[['you', 'became', 'the', 'chief', 'of', 'Avon'], 'in', ['1999,', 'the', 'company', 'has', 'expanded', 'into']]\n",
+ "[['your', 'direct-selling', 'model', 'works', 'so', 'well'], 'in', ['developing', 'countries?', 'JUNG:', 'It', 'is', 'part']]\n",
+ "[['with', 'hundreds', 'of', 'thousands', 'of', 'women'], 'in', ['small', 'villages', 'really', 'striving', 'to', 'make']]\n",
+ "[['women', 'and', 'the', 'men', 'are', 'often'], 'in', ['Avon', 'couples.', 'I', 'love', 'those', 'conversations,']]\n",
+ "[['employees.', 'They', 'start', 'canvassing', 'for', 'representatives'], 'in', ['work', 'places,', 'in', 'religious', 'gatherings,', 'in']]\n",
+ "[['canvassing', 'for', 'representatives', 'in', 'work', 'places,'], 'in', ['religious', 'gatherings,', 'in', 'school', 'fundraisers.', 'We']]\n",
+ "[['in', 'work', 'places,', 'in', 'religious', 'gatherings,'], 'in', ['school', 'fundraisers.', 'We', 'also', 'run', 'recruiting']]\n",
+ "[['fundraisers.', 'We', 'also', 'run', 'recruiting', 'advertisements'], 'in', ['a', 'dozen', 'markets', 'today.', 'And', 'we']]\n",
+ "[['manage', 'their', 'businesses', 'online.', 'For', 'example,'], 'in', ['Turkey,', 'where', 'there', 'is', 'not', 'much']]\n",
+ "[['do', 'you', 'deal', 'with', 'economic', 'uncertainty'], 'in', ['emerging', 'markets?', 'JUNG:', 'With', \"what's\", 'going']]\n",
+ "[['the', 'very', 'difficult', 'time', 'we', 'had'], 'in', ['Russia.', 'I', 'recall', 'in', 'the', 'late']]\n",
+ "[['we', 'had', 'in', 'Russia.', 'I', 'recall'], 'in', ['the', 'late', \"'90s,\", 'with', 'the', 'massive']]\n",
+ "[['saw', '11', 'time', 'zones,', 'with', 'women'], 'in', ['every', 'small', 'town', 'and', 'village', 'who']]\n",
+ "[['company.', 'It', 'speaks', 'to', 'something', 'deep'], 'in', ['me,', 'the', 'concept', 'that', 'you', \"don't\"]]\n",
+ "[['know', 'that', 'you', 'have', 'similar', 'programs'], 'in', ['countries', 'like', 'Mexico', 'and', 'Malaysia.', 'How']]\n",
+ "[['philanthropy', 'now?', 'JUNG:', \"We've\", 'got', 'programs'], 'in', ['around', '50', 'different', 'countries.', 'Together,', 'we']]\n",
+ "[['donated', 'mammography', 'units', 'to', 'underserved', 'hospitals'], 'in', ['Spain', 'and', 'created', 'mobile', 'mammography', 'units']]\n",
+ "[['Spain', 'and', 'created', 'mobile', 'mammography', 'units'], 'in', ['China.', 'Recently,', 'I', 'had', 'one', 'of']]\n",
+ "[['mainland', 'China,', 'died', 'of', 'breast', 'cancer'], 'in', ['Singapore', 'in', 'the', '1970s.', 'It', 'was']]\n",
+ "[['died', 'of', 'breast', 'cancer', 'in', 'Singapore'], 'in', ['the', '1970s.', 'It', 'was', 'diagnosed', 'at']]\n",
+ "[['I', 'look', 'at', 'the', 'two', 'generations'], 'in', ['my', 'own', 'family,', 'it', 'shows', 'the']]\n",
+ "[['the', 'helm', 'at', 'CentCom', 'on', 'Friday'], 'in', ['an', 'hourlong', 'ceremony', 'under', 'fluttering', 'flags']]\n",
+ "[['kind', 'of', 'military', 'reputation', 'seldom', 'seen'], 'in', ['the', 'days', 'since', 'World', 'War', 'II.']]\n",
+ "[['challenge', 'of', 'stemming', 'the', 'rising', 'violence'], 'in', ['Afghanistan.', 'Petraeus,', '55,', 'shook', \"Dempsey's\", 'hand']]\n",
+ "[['responsibility', 'is', 'one', 'of', 'the', 'largest'], 'in', ['the', 'U.S.', 'military:', 'nearly', 'two', 'dozen']]\n",
+ "[['countries,', 'including', 'oversight', 'for', 'the', 'wars'], 'in', ['Iraq', 'and', 'Afghanistan', 'and', 'other', 'hot']]\n",
+ "[['Petraeus,', 'who', 'has', 'served', 'three', 'tours'], 'in', ['Iraq', 'including', 'one', 'as', 'commander', 'of']]\n",
+ "[['credited', 'with', 'policies', 'helping', 'curb', 'violence'], 'in', ['Iraq.', 'And', 'expectations', 'that', 'he', 'will']]\n",
+ "[['that', 'he', 'will', 'do', 'the', 'same'], 'in', ['Afghanistan', 'could', 'hardly', 'be', 'higher.', 'Defense']]\n",
+ "[['will', 'take', 'aim', 'at', 'our', 'adversaries'], 'in', ['Afghanistan.\"', 'Petraeus,', 'who', 'had', 'served', 'as']]\n",
+ "[['served', 'as', 'the', 'overall', 'ground', 'commander'], 'in', ['Iraq', 'since', 'early', '2007,', 'is', 'expected']]\n",
+ "[['back', 'to', \"CentCom's\", 'area', 'of', 'responsibility'], 'in', ['the', 'Middle', 'East.', 'The', 'general', 'warned']]\n",
+ "[['an', 'instant', 'legend.', 'Cepero', 'will', 'be'], 'in', ['goal', 'Saturday', 'at', '4', 'p.m.', 'when']]\n",
+ "[['artificial', 'turf,', 'the', 'first', \"keeper's\", 'goal'], 'in', ['13', 'years', 'of', 'the', \"league's\", 'existence.']]\n",
+ "[['arranged', 'to', 'take', 'the', 'winter', 'semester'], 'in', ['Italy,', 'on', 'loan', 'from', 'the', 'Los']]\n",
+ "[['the', 'United', 'States', 'putting', 'Jose', 'Canseco'], 'in', ['charge', 'of', 'the', 'U.S.', 'team', 'for']]\n",
+ "[['has', 'produced', 'more', 'than', '80', 'goals'], 'in', ['domestic', 'competition,', 'according', 'to', 'FIFA.com,', 'Chilavert']]\n",
+ "[['a', 'few', 'goals', 'as', 'a', 'teenager'], 'in', ['Baldwin,', 'N.Y.,', 'playing', 'the', 'field,', 'but']]\n",
+ "[['18,', 'Cepero', 'had', 'a', '2-1', 'lead'], 'in', ['the', '83rd', 'minute.', 'Given', 'a', 'direct']]\n",
+ "[['backup,', 'then', 'he', 'saw', 'a', 'flutter'], 'in', ['the', 'cords', 'of', 'the', 'net.', \"Cepero's\"]]\n",
+ "[['least', 'not', 'yet.', 'Reality', 'hit', 'home'], 'in', ['the', 'next', 'game', 'when', 'the', 'Red']]\n",
+ "[['the', 'playoffs', 'when', 'DC', 'United', 'stumbled'], 'in', ['its', 'final', 'game.', 'This', 'has', 'been']]\n",
+ "[['defender', '(from', \"Italy's\", 'top', 'league)', 'bumbled'], 'in', ['an', 'own', 'goal.', 'Now', 'Danny', 'Cepero']]\n",
+ "[['was', 'a', 'tendency', 'to', 'cut', 'back'], 'in', ['an', 'effort', 'to', 'gain', 'yards', 'laterally.']]\n",
+ "[['want', 'to', 'return', 'kickoffs', 'and', 'punts'], 'in', ['the', 'National', 'Football', 'League.', '\"You', 'stand']]\n",
+ "[['special', 'teams.', '\"We', 'led', 'the', 'country'], 'in', ['blocked', 'kicks', 'and', 'other', 'special', 'teams']]\n",
+ "[['he', 'believes', 'he', 'made', 'an', 'impression'], 'in', ['Dallas,', 'and', \"it's\", 'hard', 'to', 'argue.']]\n",
+ "[['likely', 'will', 'get', 'another', 'shot', 'Sunday'], 'in', ['Kansas', 'City.', 'After', 'spending', 'seven', 'weeks']]\n",
+ "[['game', 'captain', 'for', 'the', 'first', 'time'], 'in', ['his', 'Bulls', 'career,', 'went', '13-for-31', 'on']]\n",
+ "[['game', 'at', 'Nippert,', 'a', '23-8', 'loss'], 'in', ['2006', 'that', 'saw', 'him', 'pass', 'for']]\n",
+ "[['saw', 'him', 'pass', 'for', '47', 'yards'], 'in', ['21', 'attempts.', 'Grothe', 'has', 'had', 'only']]\n",
+ "[['had', 'only', 'three', 'games', 'at', 'USF'], 'in', ['which', 'he', 'failed', 'to', 'pass', 'or']]\n",
+ "[['his', 'receivers', 'consistently', 'failed', 'to', 'bring'], 'in', ['catchable', 'passes,', 'with', 'at', 'least', 'five']]\n",
+ "[['least', 'five', 'drops', 'on', 'a', 'night'], 'in', ['which', \"Cincinnati's\", 'receivers', 'had', 'several', 'highlight-reel']]\n",
+ "[['Cincinnati', \"hadn't\", 'converted', 'a', 'third', 'down'], 'in', ['its', 'previous', 'two', 'games,', 'going', 'a']]\n",
+ "[['Pike', 'converted', 'on', 'third', 'and', '10'], 'in', ['the', 'first', 'quarter', 'with', 'a', '48-yard']]\n",
+ "[['Bearcats', 'went', '4-for-5', 'on', 'third', 'downs'], 'in', ['the', 'first', 'half', 'in', 'building', 'a']]\n",
+ "[['third', 'downs', 'in', 'the', 'first', 'half'], 'in', ['building', 'a', '17-7', 'lead.', 'THIS', 'AND']]\n",
+ "[['5', 'yards.', \"It's\", 'the', 'fourth', 'longest'], 'in', ['USF', 'history', 'and', 'the', 'longest', 'since']]\n",
+ "[['Big', 'East', 'record', '56-yarder', 'against', 'Syracuse'], 'in', ['2006.', 'DE', 'George', 'Selvie,', 'who', 'saw']]\n",
+ "[['their', 'decision', 'to', 'play', 'Warrick', 'Dunn'], 'in', ['their', 'previous', 'game.', 'They', 'will', 'have']]\n",
+ "[['the', 'Cowboys,', 'has', 'a', 'pinched', 'nerve'], 'in', ['his', 'back', 'and', 'did', 'not', 'practice']]\n",
+ "[['strain', 'and', 'sustained', 'a', 'mild', 'concussion'], 'in', ['practice', 'Wednesday', 'even', 'though', 'it', 'was']]\n",
+ "[['drain.', 'They', 'have', 'a', 'second-year', 'quarterback'], 'in', ['Tyler', 'Thigpen', 'from', 'Coastal', 'Carolina', 'who']]\n",
+ "[['are.', 'They', 'play', 'their', 'butts', 'off'], 'in', ['their', 'stadium,', 'and', \"we've\", 'got', 'to']]\n",
+ "[['Amsterdam', 'and', 'a', 'few', 'rural', 'counties'], 'in', ['nearby', 'Nevada.', 'But', 'this', 'week,', 'it']]\n",
+ "[['effectively', 'decriminalize', 'the', \"world's\", 'oldest', 'profession'], 'in', ['San', 'Francisco.', 'At', 'a', 'news', 'conference']]\n",
+ "[['is', 'not', 'fanciful,\"', 'Newsom', 'said,', 'standing'], 'in', ['front', 'of', 'the', 'pink-on-pink', 'facade', 'of']]\n",
+ "[['facade', 'of', 'a', 'closed', 'massage', 'parlor'], 'in', ['the', 'Tenderloin', 'district.', '\"This', 'is', 'a']]\n",
+ "[['other', 'women', 'working', 'now.\"', 'The', 'language'], 'in', ['Proposition', 'K', 'is', 'far-reaching.', 'It', 'would']]\n",
+ "[['investigate', 'or', 'prosecute', 'people', 'who', 'engage'], 'in', ['prostitution.', 'It', 'would', 'also', 'bar', 'financing']]\n",
+ "[['state', 'grants', 'that', 'use', '\"racial', 'profiling\"'], 'in', ['anti-prostitution', 'efforts,', 'an', 'apparent', 'reference', 'to']]\n",
+ "[['the', 'country', 'held', 'against', 'their', 'will'], 'in', ['dark', 'and', 'dangerous', 'brothels', 'here,', 'forced']]\n",
+ "[['\"I', 'think', \"it's\", 'completely', 'ridiculous,', 'just'], 'in', ['case', \"there's\", 'any', 'ambiguity', 'about', 'my']]\n",
+ "[['and', '\"compromises', 'the', 'quality', 'of', 'life'], 'in', ['a', 'community.\"', 'She', 'also', 'dismisses', 'the']]\n",
+ "[['their', 'business', 'were', 'not', 'illegal.', '\"We\\'re'], 'in', ['the', 'practice', 'and', 'habit', 'of', 'protecting']]\n",
+ "[['have', 'expressed', 'support', 'for', 'the', 'measure'], 'in', ['the', 'past,', 'would', 'have', 'the', 'power']]\n",
+ "[['decriminalization', 'bill', 'was', 'defeated', 'by', 'voters'], 'in', ['Berkeley,', 'Calif.,', 'in', '2004.', 'Heidi', 'Machen,']]\n",
+ "[['defeated', 'by', 'voters', 'in', 'Berkeley,', 'Calif.,'], 'in', ['2004.', 'Heidi', 'Machen,', 'a', 'spokeswoman', 'for']]\n",
+ "[['occupation', 'safer', 'and', 'more', 'legitimate.', '\"Working'], 'in', ['a', 'coal', 'mine', 'can', 'be', 'really']]\n",
+ "[['columnists', 'speculated', 'his', 'job', 'already', 'is'], 'in', ['jeopardy', '(Sports', 'Illustrated', 'incorrectly', 'predicted', 'he']]\n",
+ "[['couple,', \"I'll\", 'be', 'the', 'greatest', 'coach'], 'in', ['the', 'world,', 'so', 'I', \"don't\", 'worry']]\n",
+ "[['stuff', 'like', 'that,', 'you', \"shouldn't\", 'be'], 'in', ['the', 'business.\"', 'It', 'is', 'difficult', 'to']]\n",
+ "[['drama.', 'Melrose', 'is', 'a', 'new', 'hire'], 'in', ['a', 'situation', 'that', 'screams', 'for', 'patience:']]\n",
+ "[['he', 'was', 'fired', 'by', 'the', 'Kings'], 'in', ['April', '1995,', 'tries', 'to', 're-establish', 'his']]\n",
+ "[['Brian', 'Lawton', \"isn't\", 'saying.', '\"We\\'re', 'still'], 'in', ['the', 'earliest', 'stages', 'of', 'evaluation,\"', 'he']]\n",
+ "[['Thursday', 'dominated', 'the', 'then-Northeast-leading', 'Sabres', '5-2'], 'in', ['Buffalo.', '\"The', 'guys', 'better', 'know', 'their']]\n",
+ "[['have', 'a', 'chance', 'to', 'get', 'back'], 'in', ['the', 'fight', 'and', \"don't\", 'take', 'it,']]\n",
+ "[['I', 'would', 'have', 'been', 'very', 'disappointed'], 'in', ['myself', 'for', 'not', 'having', 'the', 'courage']]\n",
+ "[['most', 'important', 'position', 'of', 'any', 'position'], 'in', ['sports,', 'and', 'hockey', 'is', 'still', 'a']]\n",
+ "[['you', 'have', 'to', 'win,', 'like,', 'four'], 'in', ['a', 'row.\"', 'Damian', 'Cristodero', 'can', 'be']]\n",
+ "[['each', 'have', 'two', 'goals,', 'two', 'assists'], 'in', ['their', 'past', 'two', 'games.', \"Ottawa's\", 'Filip']]\n",
+ "[['have', 'scored', 'with', 'the', 'man', 'advantage'], 'in', ['nine', 'of', '10', 'games,', 'had', 'the']]\n",
+ "[['Moore),', 'a', 'transfer', 'who', \"hadn't\", 'played'], 'in', ['nearly', '18', 'months', '(Emmanuel', 'Moody),', 'a']]\n",
+ "[['young', 'man', 'from', 'South', 'Lake', 'High'], 'in', ['Groveland', 'could', 'be', 'a', 'great', 'player']]\n",
+ "[['with', 'Demps,', 'who', 'arrived', 'on', 'campus'], 'in', ['July,', 'the', 'veteran', 'assistant', 'sensed', 'quick']]\n",
+ "[['the', 'Gators,', 'something', 'Meyer', \"didn't\", 'have'], 'in', ['his', 'previous', 'three', 'years', 'at', 'Florida,']]\n",
+ "[['after', 'the', 'loss', 'to', 'Ole', 'Miss,'], 'in', ['which', 'senior', 'Moore', 'and', 'transfer', 'Moody']]\n",
+ "[['speed.', 'Demps', 'has', 'run', '100', 'meters'], 'in', ['10.01', 'seconds', 'and', 'just', 'missed', 'qualifying']]\n",
+ "[['sub-4.4', 'for', '40', 'yards', 'and', '10.23'], 'in', ['the', '100.', 'Demps', 'is', 'more', 'tough']]\n",
+ "[['Demps', 'is', 'more', 'tough', 'to', 'defend'], 'in', ['the', 'speed-option', 'because', 'once', 'he', 'breaks']]\n",
+ "[['the', 'offensive', 'game', 'plan.', '\"Having', 'them'], 'in', ['the', 'game', 'just', 'opens', 'things', 'up,\"']]\n",
+ "[['the', 'edge.', 'We', 'can', 'put', 'them'], 'in', ['open', 'space', 'to', 'try', 'to', 'create']]\n",
+ "[['are', 'just', 'average.\"', 'In', 'a', 'game'], 'in', ['which', 'teams', 'are', 'so', 'evenly', 'matched,']]\n",
+ "[['winning', 'and', 'losing', 'for', 'the', 'Gators'], 'in', [\"today's\", 'rivalry', 'game', 'against', 'Georgia', 'in']]\n",
+ "[['in', \"today's\", 'rivalry', 'game', 'against', 'Georgia'], 'in', ['Jacksonville.', \"Today's\", 'state', 'games', 'No.??5', 'UF']]\n",
+ "[['be', 'setting', 'the', 'stage', 'for', 'consolidation'], 'in', ['the', 'industry', 'by', 'favoring', 'those', 'most']]\n",
+ "[['been', 'awarded', 'more', 'than', '$38', 'billion'], 'in', ['capital.', 'The', 'Treasury', 'is', 'concerned', 'that']]\n",
+ "[['lending,', 'will', 'end', 'up', 'culling', 'banks'], 'in', ['their', 'districts.', 'Regulators', 'are', 'applying', 'a']]\n",
+ "[['ranking', 'of', '1', 'applies', 'to', 'those'], 'in', ['the', 'best', 'shape', 'and', 'a', '5']]\n",
+ "[['shape', 'and', 'a', '5', 'to', 'those'], 'in', ['the', 'worst.', 'Under', 'the', 'program,', 'banks']]\n",
+ "[['people', 'briefed', 'on', 'the', 'process.', 'Those'], 'in', ['the', 'bottom', 'categories', 'are', 'unlikely', 'to']]\n",
+ "[['like', 'assurances', 'that', 'banks', 'are', 'lending'], 'in', ['low-income', 'communities,', 'to', 'determine', 'eligibility.', 'They']]\n",
+ "[['of', 'the', 'major', 'banking', 'regulators,', 'said'], 'in', ['a', 'recent', 'interview.', '\"But', 'the', 'economics']]\n",
+ "[['economics', 'work', 'so', 'that', 'it', 'is'], 'in', ['their', 'interest', 'to', 'do', 'so\"', 'and']]\n",
+ "[['the', 'House', 'Financial', 'Services', 'Committee,', 'said'], 'in', ['a', 'statement', 'on', 'Friday.', 'Justice', 'Antonin']]\n",
+ "[['the', 'federal', 'government', 'for', 'individual', 'achievement'], 'in', ['the', 'arts', 'in', '26', 'years.', 'Along']]\n",
+ "[['for', 'individual', 'achievement', 'in', 'the', 'arts'], 'in', ['26', 'years.', 'Along', 'with', 'Price,', 'the']]\n",
+ "[['Along', 'with', 'Price,', 'the', 'other', 'honorees'], 'in', ['this', 'first', 'year', 'are', 'the', 'conductor']]\n",
+ "[['Gioia,', 'the', 'chairman', 'of', 'the', 'endowment,'], 'in', ['welcoming', 'the', 'honorees,', 'their', 'guests', 'and']]\n",
+ "[['The', 'endowment', 'has', 'come', 'under', 'criticism'], 'in', ['recent', 'years', 'by', 'legislators', 'who', 'seek']]\n",
+ "[['\"as', 'an', 'expression', 'of', 'the', 'regard'], 'in', ['which', 'the', 'NEA', 'is', 'still', 'held.\"']]\n",
+ "[['three', 'readily', 'accepted.', 'As', 'Ginsburg', 'said,'], 'in', ['welcoming', 'the', 'guests,', '\"When', 'Dana', 'Gioia']]\n",
+ "[['her', 'brother,', 'thinking', 'of', 'their', 'origins'], 'in', ['Laurel,', 'Miss.,', 'where', 'her', 'mother', 'was']]\n",
+ "[['who', 'also', 'attended', 'the', 'luncheon,', 'were'], 'in', ['the', 'audience', 'when', 'Price', 'made', 'her']]\n",
+ "[['on', 'Jan.', '27,', '1961,', 'as', 'Leonora'], 'in', [\"Verdi's\", '\"Trovatore,\"', 'the', 'same', 'night', 'that']]\n",
+ "[['the', 'acts,', \"Price's\", 'parents,', 'proudly', 'sitting'], 'in', ['a', 'box', 'at', 'the', 'Met,', 'were']]\n",
+ "[['was', 'Levine,', 'who', 'spent', 'Friday', 'afternoon'], 'in', ['rehearsals', 'for', 'the', \"Met's\", 'new', 'production']]\n",
+ "[['loved', 'it.\"', 'Scalia,', '72,', 'grew', 'up'], 'in', ['Queens,', 'an', 'only', 'child', 'of', 'music-loving']]\n",
+ "[['lessons', 'until', 'I', 'was', 'a', 'junior'], 'in', ['high', 'school,\"', 'he', 'said.', '\"I', 'used']]\n",
+ "[['good.\"', 'His', 'love', 'of', 'opera', 'started'], 'in', ['his', 'youth,', 'when', 'his', 'father,', 'a']]\n",
+ "[['choice', 'for', 'a', 'future', 'jurist:', 'set'], 'in', ['Renaissance', 'Italy,', 'it', 'is', 'a', 'comedy']]\n",
+ "[['aria,', 'softly', 'at', 'first,', 'then', 'nearly'], 'in', ['full', 'voice.', 'Even', 'a', 'hint', 'of']]\n",
+ "[['the', 'soul', 'of', 'a', 'troubled', 'girl'], 'in', ['\"The', 'Haunting', 'of', 'Molly', 'Hartley,\"', 'an']]\n",
+ "[['her', 'mother', '(Marin', 'Hinkle)', 'is', 'raving'], 'in', ['a', 'psych', 'ward', 'after', 'taking', 'a']]\n",
+ "[['that', 'greets', 'this', 'seemingly', 'heartfelt', 'avowal'], 'in', ['the', 'musical', '\"Million', 'Dollar', 'Quartet\"', 'can']]\n",
+ "[['baby', 'face', 'is', 'Elvis', 'Presley,', 'still'], 'in', ['the', 'middle', 'innings', 'of', 'his', 'recording']]\n",
+ "[['bright-eyed', 'guitar', 'strummer', 'with', 'career', 'problems'], 'in', ['this', 'lively', 'little', 'jukebox', 'musical,', 'which']]\n",
+ "[['the', 'rest', 'of', 'the', 'karaoke', 'competition'], 'in', ['the', 'shade.', '\"Million', 'Dollar', 'Quartet\"', 'is']]\n",
+ "[['shade.', '\"Million', 'Dollar', 'Quartet\"', 'is', 'set'], 'in', ['the', 'studio', 'of', 'Sun', 'Records', 'in']]\n",
+ "[['in', 'the', 'studio', 'of', 'Sun', 'Records'], 'in', ['Memphis', 'during', 'the', 'very', 'hours', 'in']]\n",
+ "[['in', 'Memphis', 'during', 'the', 'very', 'hours'], 'in', ['which', 'its', 'celebrated', 'stature', 'was', 'cemented.']]\n",
+ "[['one', 'of', 'those', 'golden-hued,', 'fantastical', 'hours'], 'in', ['which', 'a', 'whole', 'pantheon', 'of', 'gods']]\n",
+ "[['of', 'that', 'hallowed', 'night,', 'previously', 'seen'], 'in', ['Florida', 'and', 'Washington', 'state', '(and', 'rumored']]\n",
+ "[['keeps', 'the', 'sea', 'of', 'gray', 'heads'], 'in', ['the', 'audience', 'bobbing,', 'bobbing,', 'bobbing', 'throughout']]\n",
+ "[['(the', 'amiable', 'Brian', 'McCaskill),', 'who', 'steps'], 'in', ['and', 'out', 'of', 'the', 'show,', 'annotating']]\n",
+ "[['and', 'background', 'as', 'it', 'goes', 'along,'], 'in', ['the', 'process', 'reminding', 'us', 'a', 'little']]\n",
+ "[['these', 'boys,', '\"taught', 'them', 'to', 'believe'], 'in', ['themselves', 'and', 'made', 'them', 'stars.\"', 'About']]\n",
+ "[['did', 'invest', 'some', 'of', 'the', 'money'], 'in', ['a', 'little', 'outfit', 'called', 'Holiday', 'Inn.)']]\n",
+ "[['when', 'they', 'were', 'touring', 'the', 'South'], 'in', ['the', 'back', 'of', 'a', 'flatbed', 'truck.']]\n",
+ "[['Kreis', 'just', 'about', 'pounds', 'a', 'hole'], 'in', ['the', 'stage', 'floor', 'with', 'his', 'Converse']]\n",
+ "[['The', \"Phillies'\", 'only', 'other', 'title', 'came'], 'in', ['1980.', 'The', 'parade', 'started', 'in', 'Center']]\n",
+ "[['came', 'in', '1980.', 'The', 'parade', 'started'], 'in', ['Center', 'City,', 'passed', 'City', 'Hall', 'and']]\n",
+ "[['about', '4', 'miles', 'per', 'hour,', 'arriving'], 'in', ['South', 'Philadelphia', 'more', 'than', 'an', 'hour']]\n",
+ "[['fielder', 'Pat', 'Burrell', 'led', 'the', 'procession'], 'in', ['a', 'horse-drawn', 'carriage,', 'which', 'was', 'followed']]\n",
+ "[['Archbald,', 'Pa.,', 'both', '39,', 'stayed', 'overnight'], 'in', ['Center', 'City', 'so', 'they', 'could', 'take']]\n",
+ "[['of', 'this', 'than', 'if', 'they', 'were'], 'in', ['school,\"', 'David', 'Golden', 'said.', 'The', 'parade']]\n",
+ "[['Packer,', '44,', 'of', 'Huntington,', 'N.Y.,', 'drove'], 'in', ['for', 'Game', '5', 'of', 'the', 'World']]\n",
+ "[['represent', 'and', 'cheer', 'our', 'neighbors.\"', 'Early'], 'in', ['the', \"Giants'\", 'workout', 'on', 'Friday,', 'much']]\n",
+ "[['practice', 'ended,', 'the', 'sheets', 'were', 'back'], 'in', ['place.', 'But', 'it', 'is', 'doubtful', 'that']]\n",
+ "[['NFL.', 'Dallas', 'won', 'both', 'regular-season', 'games'], 'in', ['2007,', 'but', 'the', 'Giants', 'beat', 'the']]\n",
+ "[['the', 'Giants', 'beat', 'the', 'favored', 'Cowboys'], 'in', ['the', 'playoffs,', 'en', 'route', 'to', 'the']]\n",
+ "[['laughed', 'it', 'off.', '\"Like', 'I', 'said'], 'in', ['training', 'camp,', 'everybody', 'crowned', 'certain', 'people,\"']]\n",
+ "[['a', 'lot', 'of', 'crazy', 'things', 'happen'], 'in', ['this', 'league.\"', 'Dallas', 'has', 'been', 'weakened']]\n",
+ "[['Cowboys,\"', 'Pierce', 'said.', '\"Everybody', 'hates', 'everybody'], 'in', ['this', 'league.', 'This', 'rivalry', 'has', 'gotten']]\n",
+ "[['Johnson,', 'playing', 'with', 'his', 'fifth', 'team'], 'in', ['his', '17th', 'season.', 'On', 'defense,', 'Dallas']]\n",
+ "[['Adam', 'Jones,', 'formerly', 'Pacman,', 'who', 'is'], 'in', ['alcohol', 'rehabilitation.', 'Cornerback', 'Anthony', 'Henry', '(thigh']]\n",
+ "[['DeMarcus', 'Ware,', 'who', 'leads', 'the', 'Cowboys'], 'in', ['sacks', 'with', 'nine.', 'The', 'Dallas', 'offense']]\n",
+ "[['for', '167', 'yards', 'and', 'a', 'touchdown'], 'in', ['the', 'last', 'four', 'games.', 'His', 'relative']]\n",
+ "[['injured.', '\"It', 'is', 'frustrating,\"', 'Owens', 'said'], 'in', ['a', 'video', 'clip', 'on', 'NFL.com.', '\"You\\'ve']]\n",
+ "[['rushing', 'attack', 'that', 'leads', 'the', 'league'], 'in', ['yards', 'per', 'game', 'with', '157.3.', 'The']]\n",
+ "[['The', 'team', 'also', 'leads', 'the', 'league'], 'in', ['a', 'category', 'most', 'would', 'not', 'guess']]\n",
+ "[['Even', 'the', 'word', 'itself', 'is', 'versatile'], 'in', ['this', 'sport.', 'It', 'applies', 'to', 'two']]\n",
+ "[['hope', 'they', 'work', 'for', 'us.\"', 'Indeed,'], 'in', ['pro', 'football,', 'you', 'can', 'never', 'be']]\n",
+ "[['comedian', 'Chris', \"Rock's\", 'free', 'concert', 'today'], 'in', ['Tampa', 'to', 'Jimmy', \"Buffett's\", 'free', 'concert']]\n",
+ "[['to', 'Jimmy', \"Buffett's\", 'free', 'concert', 'Sunday'], 'in', ['Tampa', 'not', 'to', 'mention', 'visits', 'by']]\n",
+ "[['the', 'presidential', 'nominees', 'themselves', \"here's\", \"what's\"], 'in', ['store.', 'Who/Where/When', 'Vice', 'presidential', 'nominee', 'Sarah']]\n",
+ "[['Today:', 'Palin', 'campaigns', 'at', 'Sims', 'Park'], 'in', ['New', 'Port', 'Richey', 'at', '9', 'this']]\n",
+ "[['Doors', 'open', 'at', '6', 'a.m.', 'Later'], 'in', ['the', 'day', 'she', 'stumps', 'at', 'Fantasy']]\n",
+ "[['she', 'stumps', 'at', 'Fantasy', 'of', 'Flight'], 'in', ['Polk', 'City', 'and', 'at', 'West', 'Port']]\n",
+ "[['and', 'at', 'West', 'Port', 'High', 'School'], 'in', ['Ocala.', 'Former', 'New', 'York', 'City', 'Mayor']]\n",
+ "[['former', 'Republican', 'primary', 'rival', 'will', 'campaign'], 'in', ['South', 'Tampa.', 'He', 'is', 'scheduled', 'to']]\n",
+ "[['and', 'Monday:', 'McCain,', 'who', 'was', 'just'], 'in', ['Miami', 'on', 'Wednesday,', 'is', 'expected', 'to']]\n",
+ "[['a', 'rally', 'outside', 'Raymond', 'James', 'Stadium'], 'in', ['Tampa.', 'Doors', 'open', 'at', '6', 'a.m.;']]\n",
+ "[['host', 'a', 'free', 'concert', 'and', 'rally'], 'in', ['Tampa', 'at', 'the', 'Belmont', 'Heights', 'Little']]\n",
+ "[['a.m.', 'rally', 'at', 'the', 'Miami-Dade', 'Auditorium'], 'in', ['Miami,', 'then', 'heads', 'to', 'Winter', 'Park']]\n",
+ "[['is', 'crisscrossing', 'the', 'country', 'for', 'him'], 'in', ['the', \"campaign's\", 'final', 'days.', 'Vice', 'presidential']]\n",
+ "[['returns', 'to', 'the', 'state', 'for', 'stops'], 'in', ['Tallahassee,', 'Gainesville', 'and', 'Volusia', 'County.', 'Details']]\n",
+ "[['for', 'Obama', 'at', 'the', 'Ford', 'Amphitheatre'], 'in', ['Tampa.', 'Gates', 'open', 'at', '1:30', 'p.m.']]\n",
+ "[['Obama', 'Monday:', 'He', 'plans', 'to', 'campaign'], 'in', ['Jacksonville.', 'Details', 'to', 'be', 'announced.', 'Campaigning']]\n",
+ "[['for', 'Barack', 'Obama', 'What', 'looked', 'implausible'], 'in', ['June', 'but', 'practically', 'guaranteed', 'in', 'September']]\n",
+ "[['implausible', 'in', 'June', 'but', 'practically', 'guaranteed'], 'in', ['September', 'happened', 'Friday,', 'when', 'the', 'Mets']]\n",
+ "[['back,\"', 'general', 'manager', 'Omar', 'Minaya', 'said'], 'in', ['a', 'statement.', '\"Yesterday', '--', 'the', 'day']]\n",
+ "[['.617', 'slugging', 'percentage.', 'Only', 'two', 'players'], 'in', ['each', 'of', 'the', 'last', 'three', 'categories']]\n",
+ "[['I', 'won\\'t.\"', 'Though', 'joint', 'parent-child', 'appearances'], 'in', ['the', 'New', 'York', 'City', 'Marathon', 'are']]\n",
+ "[['her', 'life', 'into', 'her', 'son.', 'Tyler,'], 'in', ['turn,', 'is', 'what', 'she', 'calls', '\"my']]\n",
+ "[['by', 'then', 'a', 'single', 'mother', 'living'], 'in', ['the', 'Bronx.', 'She', 'had', 'already', 'been']]\n",
+ "[['tantrums', 'and', 'other', 'behavior.', '\"He', 'came'], 'in', ['with', 'his', 'mother,\"', 'said', 'Penny', 'Shaw,']]\n",
+ "[['a', 'basketball,', 'he', 'would', 'throw', 'it'], 'in', ['the', 'hoop', 'with', 'almost', 'mathematical', 'precision.']]\n",
+ "[['began', 'to', 'improve', 'during', 'his', 'involvement'], 'in', ['Achilles', 'Kids', 'and', 'Project', 'Happy.', 'He']]\n",
+ "[['has', 'since', 'won', 'dozens', 'of', 'medals'], 'in', ['the', 'Special', 'Olympics,', 'particularly', 'in', 'swimming.']]\n",
+ "[['medals', 'in', 'the', 'Special', 'Olympics,', 'particularly'], 'in', ['swimming.', '\"This', 'child', 'was', 'saved', 'by']]\n",
+ "[['athletics', 'could', 'serve', 'a', 'similar', 'role'], 'in', ['her', 'own', 'life.', 'At', 'Achilles', 'Kids,']]\n",
+ "[['coats', 'while', 'Tyler', 'ran.', 'One', 'day'], 'in', ['August', '2006,', 'Dick', 'Traum,', 'an', 'amputee']]\n",
+ "[['Nadine', 'that', 'she', 'should', 'consider', 'racing'], 'in', ['a', 'marathon.', '\"I', 'laughed,\"', 'Nadine', 'said.']]\n",
+ "[['\"He', 'said', 'I', 'could', 'do', 'it'], 'in', ['a', 'handcycle.', 'I', 'was', 'like,', \"'Dick,\"]]\n",
+ "[['my', 'right', 'arm?\"\\'', 'Three', 'months', 'later,'], 'in', ['November', '2006,', 'Nadine', 'found', 'herself', 'at']]\n",
+ "[['found', 'herself', 'at', 'the', 'starting', 'line'], 'in', ['Staten', 'Island.', 'She', 'had', 'attached', 'her']]\n",
+ "[['left', 'arm', 'and', 'finished', 'the', 'marathon'], 'in', ['4', 'hours', '3', 'minutes.', 'As', 'Nadine']]\n",
+ "[['Nadine', 'began', 'to', 'notice', 'a', 'difference'], 'in', ['her', 'supposedly', 'frozen', 'arm:', 'It', 'had']]\n",
+ "[['too.', '\"It', 'has', 'become', 'much', 'stronger'], 'in', ['just', 'the', 'past', 'year', 'with', 'all']]\n",
+ "[['was', '18.', 'After', 'Tyler', 'turned', '18'], 'in', ['July,', 'Nadine', 'took', 'him', 'to', 'his']]\n",
+ "[['capable.', \"Tyler's\", 'school', 'for', 'special-needs', 'students'], 'in', ['the', 'Bronx,', 'P.S.', '176,', 'held', 'a']]\n",
+ "[['Schwalbe,', 'who', 'stepped', 'down', 'as', 'editor'], 'in', ['chief', 'of', 'Hyperion', 'Books', 'in', 'January,']]\n",
+ "[['editor', 'in', 'chief', 'of', 'Hyperion', 'Books'], 'in', ['January,', 'is', 'starting', 'Cookstr', 'to', 'showcase']]\n",
+ "[['sites', 'attracted', '45.6', 'million', 'unique', 'visitors'], 'in', ['September,', 'up', '10', 'percent', 'from', 'a']]\n",
+ "[['the', 'rate', 'of', 'total', 'Internet', 'growth'], 'in', ['the', 'United', 'States.', 'At', 'the', 'same']]\n",
+ "[['up', 'the', 'publishing', 'industry,', 'as', 'authors'], 'in', ['all', 'genres', 'debate', 'whether', 'giving', 'away']]\n",
+ "[['particularly', 'vulnerable,', 'because', 'recipes', 'are', 'self-contained'], 'in', ['a', 'way', 'that', 'a', 'chapter', 'of']]\n",
+ "[['cookbook', 'buyers.', 'During', 'a', 'recent', 'interview'], 'in', ['the', 'downtown', 'Manhattan', 'offices', 'of', 'Tipping']]\n",
+ "[['remind', 'them', 'that', 'the', 'best', 'recipes'], 'in', ['the', 'world', 'are', 'in', 'books,', 'to']]\n",
+ "[['best', 'recipes', 'in', 'the', 'world', 'are'], 'in', ['books,', 'to', 'introduce', 'them', 'to', 'authors']]\n",
+ "[['know', 'about.\"', 'Cookbooks', 'remain', 'stalwart', 'performers'], 'in', ['publishing.', 'Last', 'year,', 'books', 'in', 'the']]\n",
+ "[['performers', 'in', 'publishing.', 'Last', 'year,', 'books'], 'in', ['the', 'food', 'and', 'entertaining', 'category', 'sold']]\n",
+ "[['users', 'or', 'those', 'that', 'have', 'appeared'], 'in', ['food', 'magazines.', 'The', 'foodnetwork.com', 'site', 'primarily']]\n",
+ "[['links', 'to', 'recipes', 'and', 'books,', 'and'], 'in', ['the', 'case', 'of', 'restaurant', 'chefs,', 'links']]\n",
+ "[['Workman', 'Publishing', 'Co.,', 'a', 'well-known', 'name'], 'in', ['cookbooks', '--', 'to', 'be', 'editor', 'in']]\n",
+ "[['in', 'cookbooks', '--', 'to', 'be', 'editor'], 'in', ['chief', 'and', 'chief', 'marketing', 'officer,', 'as']]\n",
+ "[['officer,', 'as', 'well', 'as', 'a', 'partner'], 'in', ['the', 'site.', 'Schwalbe,', 'who', 'left', 'Hyperion']]\n",
+ "[['Jamie\"', 'and', '\"Jamie', 'at', 'Home,\"', 'wrote'], 'in', ['an', 'e-mail', 'message', 'that', 'he', 'was']]\n",
+ "[['also', 'attracted', 'by', \"Cookstr's\", 'business', 'model,'], 'in', ['which', 'publishers', 'and', 'authors', 'share', 'a']]\n",
+ "[['gives', 'certain', 'people', 'prominence,\"', 'Lawson', 'said'], 'in', ['a', 'telephone', 'interview.', '\"But', 'there', 'are']]\n",
+ "[['that', 'they', 'like', 'to', 'curl', 'up'], 'in', ['a', 'chair', 'with', 'it.\"', 'Joan', 'Nathan,']]\n",
+ "[['Nathan,', 'the', 'author', 'of', '\"Jewish', 'Cooking'], 'in', ['America\"', 'and', '\"The', 'New', 'American', 'Cooking,\"']]\n",
+ "[['the', 'Marine', 'Corps', 'who', 'served', 'heroically'], 'in', ['World', 'War', 'II,', 'the', 'Korean', 'War']]\n",
+ "[['recruiting', 'and', 'training,', 'died', 'on', 'Thursday'], 'in', ['St.', 'Francisville,', 'La.', 'He', 'was', '86.']]\n",
+ "[['to', 'Marine', 'tradition', 'and', 'courage', 'reflected'], 'in', ['dozens', 'of', 'awards.', 'He', 'was', 'awarded']]\n",
+ "[['He', 'was', 'awarded', 'the', 'Navy', 'Cross'], 'in', ['Korea', 'and', 'the', 'Army', 'Distinguished', 'Service']]\n",
+ "[['and', 'the', 'Army', 'Distinguished', 'Service', 'Cross'], 'in', ['Vietnam,', 'both', 'of', 'which', 'are', 'second']]\n",
+ "[['Honor.', 'As', 'the', 'Marine', 'manpower', 'chief'], 'in', ['1976,', 'Barrow', 'was', 'instrumental', 'in', 'drafting']]\n",
+ "[['chief', 'in', '1976,', 'Barrow', 'was', 'instrumental'], 'in', ['drafting', 'reforms', 'designed', 'to', 'end', 'physical']]\n",
+ "[['York', 'Times,', 'quoting', 'military', 'officials,', 'reported'], 'in', ['1979', 'that', 'the', 'training', 'reforms,', 'which']]\n",
+ "[['by', 'drill', 'sergeants.', 'Barrow', 'also', 'succeeded'], 'in', ['raising', 'the', 'quality', 'of', 'recruits,', 'in']]\n",
+ "[['in', 'raising', 'the', 'quality', 'of', 'recruits,'], 'in', ['part', 'by', 'seeking', 'out', 'high', 'school']]\n",
+ "[['Barrow', 'was', 'born', 'Feb.', '5,', '1922,'], 'in', ['Baton', 'Rouge,', 'La.,', 'and', 'grew', 'up']]\n",
+ "[['up', 'on', 'his', \"family's\", 'Rosale', 'Plantation'], 'in', ['West', 'Feliciana', 'Parish,', 'La.', 'The', \"family's\"]]\n",
+ "[['a', 'waiter', 'and', 'janitor', 'and', 'served'], 'in', ['the', \"university's\", 'Corps', 'of', 'Cadets,', 'as']]\n",
+ "[['ultimately', 'unsuccessful', 'defense', 'of', 'Wake', 'Island'], 'in', ['December', '1941,', 'was', 'attracted', 'by', 'a']]\n",
+ "[['a', 'double-page', 'Marine', 'Corps', 'recruiting', 'ad'], 'in', ['The', 'Baton', 'Rouge', 'Morning', 'Advocate.', 'He']]\n",
+ "[['Morning', 'Advocate.', 'He', 'joined', 'the', 'Marines'], 'in', ['March', '1942.', 'He', 'could', 'have', 'stayed']]\n",
+ "[['to', 'graduate', 'because', 'of', 'his', 'membership'], 'in', ['the', \"university's\", 'corps', 'but', 'instead', 'asked']]\n",
+ "[['but', 'instead', 'asked', 'for', 'active', 'duty'], 'in', ['November', '1942,', 'Allan', 'R.', 'Millett', 'and']]\n",
+ "[['R.', 'Millett', 'and', 'Jack', 'Shulimson', 'wrote'], 'in', ['\"Commandants', 'of', 'the', 'Marine', 'Corps\"', '(2004).']]\n",
+ "[['Marine', 'Corps\"', '(2004).', 'Barrow', 'was', 'disappointed'], 'in', ['his', 'preparation', 'during', 'the', 'six-week', 'boot']]\n",
+ "[['preparation', 'during', 'the', 'six-week', 'boot', 'camp'], 'in', ['San', 'Diego,', 'undoubtedly', 'setting', 'the', 'stage']]\n",
+ "[['was', 'commissioned', 'as', 'a', '2nd', 'lieutenant'], 'in', ['May', '1943.', 'He', 'ended', 'up', 'being']]\n",
+ "[['MacArthur,', 'and', 'the', 'Chosin', 'Reservoir', 'campaign,'], 'in', ['which', 'U.S.', 'troops', 'fought', 'valiantly', 'to']]\n",
+ "[['of', 'Taiwan,', 'the', 'Marine', 'Corps', 'said'], 'in', ['its', 'announcement', 'of', 'his', 'death.', 'During']]\n",
+ "[['Marine', 'Division.', 'In', 'Operation', 'Dewey', 'Canyon'], 'in', ['early', '1969,', 'his', 'troops', 'killed', '1,617']]\n",
+ "[['C.', 'Westmoreland,', 'the', 'U.S.', 'American', 'commander'], 'in', ['Vietnam,', 'called', 'Barrow', 'the', \"war's\", '\"finest']]\n",
+ "[['through', 'the', 'ranks,', 'becoming', 'assistant', 'commandant'], 'in', ['1978', 'and', 'commandant', 'in', '1979,', 'succeeding']]\n",
+ "[['assistant', 'commandant', 'in', '1978', 'and', 'commandant'], 'in', ['1979,', 'succeeding', 'Gen.', 'Louis', 'H.', 'Wilson,']]\n",
+ "[['who', 'had', 'already', 'started', 'big', 'reforms'], 'in', ['the', 'Marines,', 'including', 'discharging', 'more', 'than']]\n",
+ "[['training,', 'Barrow', 'expanded', 'the', \"Marines'\", 'role'], 'in', ['the', \"military's\", 'new', 'rapid', 'response', 'strategy.']]\n",
+ "[['Caspar', 'W.', 'Weinberger,', 'criticizing', 'Israeli', 'soldiers'], 'in', ['Lebanon,', 'was', 'released', 'by', 'the', 'Pentagon.']]\n",
+ "[['wife', 'of', '53', 'years,', 'Patty,', 'died'], 'in', ['2005.', 'He', 'is', 'survived', 'by', 'his']]\n",
+ "[['H.', 'Barrow,', 'a', 'retired', 'lieutenant', 'colonel'], 'in', ['the', 'Marines,', 'of', 'Tampa;', 'his', 'daughters']]\n",
+ "[['and', 'five', 'great-grandchildren.', 'At', 'his', 'retirement'], 'in', ['1983,', 'Barrow', 'recalled', 'asking', 'graduates', 'of']]\n",
+ "[['of', 'South', 'African', 'literature,', 'died', 'Monday'], 'in', ['Lebowakgomo,', 'South', 'Africa.', 'He', 'was', '88.']]\n",
+ "[['life,', 'and', 'of', 'violence', 'and', 'oppression'], 'in', ['a', 'black', 'township', 'in', 'Pretoria,', 'reflected']]\n",
+ "[['and', 'oppression', 'in', 'a', 'black', 'township'], 'in', ['Pretoria,', 'reflected', 'the', 'experience', 'of', 'countless']]\n",
+ "[['fellow', 'black', 'South', 'Africans.', '\"He', 'was'], 'in', ['many', 'ways', 'the', 'father', 'of', 'modern']]\n",
+ "[['at', 'the', 'University', 'of', 'the', 'Witwatersrand'], 'in', ['Johannesburg.', '\"His', 'death', 'closes', 'a', 'certain']]\n",
+ "[['\"His', 'death', 'closes', 'a', 'certain', 'bracket'], 'in', ['our', 'literature,', 'what', 'we', 'used', 'to']]\n",
+ "[['used', 'to', 'call', 'protest', 'literature,', 'literature'], 'in', ['the', 'resistance', 'mode', 'that', 'included', 'exile']]\n",
+ "[['exile', 'and', 'return.\"', 'In', 'an', 'essay'], 'in', ['The', 'Star,', 'a', 'Johannesburg', 'newspaper,', 'the']]\n",
+ "[['his', 'first', 'name', '--', 'was', 'born'], 'in', ['Marabastad', 'Township,', 'Pretoria,', 'but', 'spent', 'much']]\n",
+ "[['but', 'spent', 'much', 'of', 'his', 'boyhood'], 'in', ['Maupaneng,', 'a', 'large', 'village', 'outside', 'Pietersburg']]\n",
+ "[['and', 'sister', 'returned', 'to', 'Pretoria,', 'moving'], 'in', ['with', 'their', 'maternal', 'grandmother', 'in', 'a']]\n",
+ "[['moving', 'in', 'with', 'their', 'maternal', 'grandmother'], 'in', ['a', 'house', 'on', 'Second', 'Avenue', 'in']]\n",
+ "[['in', 'a', 'house', 'on', 'Second', 'Avenue'], 'in', ['a', 'teeming', 'slum', 'neighborhood.', 'Collecting', 'and']]\n",
+ "[['white', 'customers,', 'Ezekiel', 'learned', 'his', 'place'], 'in', ['South', 'African', 'society.', 'At', 'the', 'same']]\n",
+ "[['At', 'the', 'same', 'time,', 'he', 'excelled'], 'in', ['school', 'and', 'attended', 'a', 'progressive', 'secondary']]\n",
+ "[['identities', 'would', 'become', 'an', 'important', 'theme'], 'in', ['his', 'work.', 'After', 'training', 'as', 'a']]\n",
+ "[['arts', 'and', 'a', 'master', 'of', 'arts'], 'in', ['English', 'literature', 'from', 'the', 'University', 'of']]\n",
+ "[['Bantu', 'Education', 'Act.', 'Barred', 'from', 'teaching'], 'in', ['South', 'Africa,', 'he', 'struggled', 'to', 'survive']]\n",
+ "[['Africa,', 'he', 'struggled', 'to', 'survive', 'and'], 'in', ['1957', 'emigrated.', '\"I', 'was', 'suddenly', 'seized']]\n",
+ "[['Avenue.\"', 'He', 'was,', 'he', 'complained,', '\"shriveling'], 'in', ['the', 'acid', 'of', 'my', 'bitterness.\"', 'A']]\n",
+ "[['ensued,', 'as', 'he', 'wrote', 'and', 'taught'], 'in', ['Nigeria,', 'France,', 'Kenya', 'and', 'Zambia.', 'In']]\n",
+ "[['where', 'he', 'had', 'earned', 'a', 'doctorate'], 'in', ['1968,', 'and', 'in', '1974', 'accepted', 'a']]\n",
+ "[['earned', 'a', 'doctorate', 'in', '1968,', 'and'], 'in', ['1974', 'accepted', 'a', 'full', 'professorship', 'in']]\n",
+ "[['in', '1974', 'accepted', 'a', 'full', 'professorship'], 'in', ['the', 'English', 'department', 'of', 'the', 'University']]\n",
+ "[['of', 'the', 'University', 'of', 'Pennsylvania.', 'While'], 'in', ['exile', 'he', 'completed', 'his', 'memoir,', 'as']]\n",
+ "[['often', 'wry', 'voice', 'of', 'the', 'stories'], 'in', ['\"In', 'Corner', 'B\"', '(1967).', 'In', 'his']]\n",
+ "[['much', 'like', 'himself,', 'unable', 'to', 'live'], 'in', ['South', 'Africa', 'but', 'ill', 'at', 'ease']]\n",
+ "[['South', 'Africa', 'but', 'ill', 'at', 'ease'], 'in', ['freer', 'African', 'states.', 'While', 'in', 'exile,']]\n",
+ "[['ease', 'in', 'freer', 'African', 'states.', 'While'], 'in', ['exile,', 'he', 'also', 'published', 'two', 'well-regarded']]\n",
+ "[['\"The', 'African', 'Image\"', '(1962)', 'and', '\"Voices'], 'in', ['the', 'Whirlwind\"', '(1972).', 'In', '1977', 'Mphahlele']]\n",
+ "[['York', 'state', 'absentee', 'ballots', 'to', 'arrive'], 'in', ['India,', 'where', 'she', 'has', 'been', 'working']]\n",
+ "[['no', 'chance', 'of', 'getting', 'them', 'back'], 'in', ['time', 'to', 'be', 'counted.', 'They', 'had']]\n",
+ "[['for', 'a', 'traveler', 'to', 'go', 'farther'], 'in', ['one', 'direction', 'on', 'earth', '--', 'but']]\n",
+ "[['about', 'this', 'election', 'than', 'they', 'have'], 'in', ['nearly', '50', 'years.', 'But', 'it', 'is']]\n",
+ "[['and', 'her', 'husband,', 'who', 'was', 'born'], 'in', ['Morocco,', 'the', 'votes', 'they', 'intend', 'to']]\n",
+ "[['they', 'intend', 'to', 'cast', 'on', 'Tuesday'], 'in', ['the', 'Washington', 'Heights', 'section', 'of', 'Manhattan']]\n",
+ "[['few', 'months', 'after', 'they', 'were', 'sworn'], 'in', ['as', 'citizens,', 'Scott-Ker', 'was', 'transferred', 'to']]\n",
+ "[['election,', 'filing', 'the', 'voter', 'registration', 'forms'], 'in', ['August', 'and', 'getting', 'the', 'confirmation', 'in']]\n",
+ "[['in', 'August', 'and', 'getting', 'the', 'confirmation'], 'in', ['early', 'October.', 'Then', 'she', 'discovered', 'that']]\n",
+ "[['ballots', 'came.', 'The', 'Board', 'of', 'Elections'], 'in', ['Manhattan', '--', 'its', 'funding', 'cut', 'this']]\n",
+ "[['--', 'its', 'funding', 'cut', 'this', 'year'], 'in', ['a', 'dispute', 'with', 'the', 'mayor', '--']]\n",
+ "[['the', 'mayor', '--', 'has', 'been', 'laggard'], 'in', ['sending', 'out', 'absentee', 'ballots,', 'officials', 'say.']]\n",
+ "[['could', 'get', 'the', 'ballots', 'for', 'us'], 'in', ['Manhattan', 'and', 'have', 'them', 'couriered', 'to']]\n",
+ "[['want', 'a', 'bureaucratic', 'process', 'to', 'get'], 'in', ['the', 'way', 'of', 'casting', 'a', 'ballot.\"']]\n",
+ "[['all', 'that', 'trouble', 'to', 'cast', 'votes'], 'in', ['New', 'York', 'state,', 'where', 'most', 'polls']]\n",
+ "[['job,\"', 'she', 'said.', '\"Apathy', \"doesn't\", 'work'], 'in', ['a', 'democracy.\"', 'Soon', 'after', 'she', 'got']]\n",
+ "[['heard', 'on', 'the', 'news', 'that', 'people'], 'in', ['some', 'states', 'said', 'an', 'incorrect', 'vote']]\n",
+ "[['when', 'they', 'used', 'a', 'touch', 'screen'], 'in', ['early', 'voting.', 'She', 'fretted', 'that', 'they']]\n",
+ "[['that', 'they', 'might', 'lose', 'their', 'votes'], 'in', ['one', 'final', 'foul-up.', 'Not', 'to', 'worry,']]\n",
+ "[['she', 'was', 'told,', 'the', 'voting', 'machines'], 'in', ['New', 'York', 'have', 'been', 'around', 'since']]\n",
+ "[['least', 'the', 'early', '1960s,', 'and', 'are'], 'in', ['no', 'immediate', 'danger', 'of', 'being', 'transformed']]\n",
+ "[['of', 'the', 'State', 'Board', 'of', 'Elections'], 'in', ['Albany.', 'That', 'agency', 'does', 'not', 'register']]\n",
+ "[['that', 'they', 'could', 'receive', 'the', 'applications'], 'in', ['Albany.', 'In', 'a', 'mass', 'e-mail', 'message']]\n",
+ "[['217,326', 'braces', 'for', 'the', 'biggest', 'game'], 'in', ['university', 'history,', 'there', 'is', 'a', 'palpable']]\n",
+ "[['of', 'the', 'many', 'other', 'openings', 'expected'], 'in', ['the', 'off-season.', 'One', 'reason', 'for', 'the']]\n",
+ "[['the', 'shortest', 'length', 'of', 'any', 'coach'], 'in', ['the', 'Big', '12.', 'Leach', 'has', 'gone']]\n",
+ "[['Big', '12.', 'Leach', 'has', 'gone', '73-37'], 'in', ['his', 'nine', 'years', 'here,', 'and', 'with']]\n",
+ "[['being', 'upgraded', 'for', 'the', 'third', 'time'], 'in', ['his', 'tenure,', 'a', 'testament', 'to', 'just']]\n",
+ "[['for', 'Oklahoma', 'coach', 'Bob', 'Stoops', 'expires'], 'in', ['2013,', 'and', 'Mack', \"Brown's\", 'deal', 'at']]\n",
+ "[['Mack', \"Brown's\", 'deal', 'at', 'Texas', 'ends'], 'in', ['2016.', \"Leach's\", 'expires', 'in', '2010,', 'which']]\n",
+ "[['Texas', 'ends', 'in', '2016.', \"Leach's\", 'expires'], 'in', ['2010,', 'which', 'opposing', 'coaches', 'can', 'use']]\n",
+ "[['opposing', 'coaches', 'can', 'use', 'against', 'him'], 'in', ['recruiting.', '\"I', \"don't\", 'really', 'second-guess', 'it,']]\n",
+ "[['not', 'during', 'the', 'season,\"', 'Leach', 'said'], 'in', ['a', 'telephone', 'interview', 'this', 'week.', '\"I']]\n",
+ "[['not', 'among', 'the', 'five', 'highest-paid', 'coaches'], 'in', ['the', 'Big', '12.', 'While', 'reports', 'in']]\n",
+ "[['in', 'the', 'Big', '12.', 'While', 'reports'], 'in', ['the', 'local', 'news', 'media', 'this', 'summer']]\n",
+ "[['leads', 'the', 'NCAA', 'Football', 'Bowl', 'Subdivision'], 'in', ['passing', 'yards', 'with', '3,147.', 'The', 'system']]\n",
+ "[['receivers.', 'He', 'is', 'tied', 'for', 'first'], 'in', ['the', 'FBS', 'with', '14', 'touchdown', 'catches.']]\n",
+ "[[\"team's\", 'aerial', 'antics,', 'Leach', 'has', 'thrived'], 'in', ['a', 'place', 'with', 'a', 'small', 'local']]\n",
+ "[['national', 'championship.', \"That's\", 'what', 'it', 'takes'], 'in', ['that', 'division', 'to', 'do', 'that.\"', 'With']]\n",
+ "[['on', 'Saturday,', 'Leach', 'would', 'have', 'Tech'], 'in', ['position', 'to', 'compete', 'for', 'a', 'spot']]\n",
+ "[['position', 'to', 'compete', 'for', 'a', 'spot'], 'in', ['the', 'Bowl', 'Championship', 'Series', 'title', 'game.']]\n",
+ "[['Series', 'title', 'game.', 'Considering', 'the', 'advantages'], 'in', ['financing,', 'recruiting', 'and', 'tradition', 'at', 'Big']]\n",
+ "[['almost', 'surreal', 'if', 'Tech', 'found', 'itself'], 'in', ['position', 'to', 'pass', 'them', 'and', 'win']]\n",
+ "[['done', 'more', 'with', 'less', 'than', 'anybody'], 'in', ['that', 'conference', 'over', 'the', 'past', 'nine']]\n",
+ "[['as', 'an', 'assistant', 'at', 'Oklahoma,', 'said'], 'in', ['a', 'telephone', 'interview.', '\"I', 'think', \"it's\"]]\n",
+ "[['innovator', 'on', 'the', 'field,', 'few', 'personalities'], 'in', ['college', 'football', 'are', 'as', 'engaging', 'as']]\n",
+ "[['of', 'the', 'few', 'major', 'college', 'coaches'], 'in', ['any', 'sport', 'to', 'have', 'a', 'law']]\n",
+ "[['six', 'years', '--', 'the', 'highest', 'percentage'], 'in', ['the', 'Big', '12,', 'according', 'to', 'the']]\n",
+ "[['that', 'the', 'university', 'itself', '\"has', 'grown'], 'in', ['stature,', 'and', 'Tech', 'football', 'has', 'something']]\n",
+ "[['when', 'the', 'teams', 'meet', 'this', 'weekend'], 'in', ['a', 'game', 'featuring', 'a', 'Heisman', 'showdown']]\n",
+ "[['here,', 'or', 'is', 'just', 'a', 'milepost'], 'in', ['a', 'long', 'career,', 'is', 'likely', 'to']]\n",
+ "[['clients', 'worried', 'about', 'losing', 'their', 'homes'], 'in', ['this', 'bad', 'economy.', '\"What', 'should', 'I']]\n",
+ "[['plasma', 'TV', 'and', 'stereo', 'surround', 'sound'], 'in', ['his', 'spacious', 'three-story', 'home', 'in', 'the']]\n",
+ "[['sound', 'in', 'his', 'spacious', 'three-story', 'home'], 'in', ['the', 'hillsides', 'above', 'Woodland', 'Hills', 'and']]\n",
+ "[['used', 'to,\"', 'said', 'the', 'single', 'man'], 'in', ['his', '30s.', '\"So', 'I', 'figured', 'that,']]\n",
+ "[['country', 'who', 'never', 'thought', 'of', 'taking'], 'in', ['roomers', 'but', 'are', 'now', 'quietly', 'doing']]\n",
+ "[['debts.', '\"In', 'this', 'economy,', \"we're\", 'now'], 'in', ['uncharted', 'waters,', 'and', \"I've\", 'never', 'seen']]\n",
+ "[['never', 'seen', 'anything', 'like', 'homeowners', 'taking'], 'in', ['boarders', 'except', 'in', 'stories', 'about', 'the']]\n",
+ "[['like', 'homeowners', 'taking', 'in', 'boarders', 'except'], 'in', ['stories', 'about', 'the', 'Depression,\"', 'said', 'Bob']]\n",
+ "[['of', 'the', 'Center', 'of', 'Governmental', 'Studies'], 'in', ['Los', 'Angeles,', 'which', 'examines', 'political', 'and']]\n",
+ "[['which', 'examines', 'political', 'and', 'economic', 'issues'], 'in', ['the', 'Southland.', 'Although', 'there', 'are', 'no']]\n",
+ "[['services', 'that', 'place', 'roomers', 'say', 'that'], 'in', ['recent', 'months', 'they', 'have', 'received', 'a']]\n",
+ "[['their', 'services', '--', 'middle-class', 'professionals', 'living'], 'in', ['upscale', 'suburbs.', '\"We\\'ve', 'seen', 'an', 'upsurge']]\n",
+ "[['upscale', 'suburbs.', '\"We\\'ve', 'seen', 'an', 'upsurge'], 'in', ['homeowners', 'renting', 'out', 'rooms', 'in', 'their']]\n",
+ "[['upsurge', 'in', 'homeowners', 'renting', 'out', 'rooms'], 'in', ['their', 'homes.', \"It's\", 'a', 'sign', 'of']]\n",
+ "[['also', 'places', 'roommates.', '\"I', 'was', 'recently'], 'in', ['our', 'Valley', 'office,', 'and', 'a', '62-year-old']]\n",
+ "[['office,', 'and', 'a', '62-year-old', 'woman', 'walked'], 'in', ['looking', 'to', 'share', 'her', 'home', 'with']]\n",
+ "[['looking', 'to', 'rent', 'out', 'a', 'room'], 'in', ['my', 'house', 'to', 'help', 'me', 'with']]\n",
+ "[['mortgage', 'foreclosures', 'still', 'on', 'the', 'rise'], 'in', ['the', 'U.S.,', 'more', 'homeowners', 'nationwide', 'are']]\n",
+ "[['on', 'the', 'lawns', 'of', 'some', 'homes'], 'in', ['Woodland', 'Hills.', 'Other', 'homeowners', 'have', 'resorted']]\n",
+ "[['Internet', 'site', 'craigslist.org', 'to', 'list', 'rooms'], 'in', ['their', 'houses.', 'Marlene', 'Mazzi', 'of', 'Winnetka']]\n",
+ "[['of', 'work', 'because', 'of', 'the', 'downturn'], 'in', ['the', 'Los', 'Angeles', 'home-building', 'industry.', '\"We']]\n",
+ "[['\"We', 'have', 'our', \"life's\", 'savings', 'invested'], 'in', ['our', 'home,', 'and', 'we', 'have', 'to']]\n",
+ "[['Taborga,', 'a', 'construction', 'worker', 'who', 'sleeps'], 'in', ['a', 'converted', 'family', 'room', 'and', 'also']]\n",
+ "[['most', 'were', 'reluctant', 'to', 'be', 'identified'], 'in', ['this', 'story.', '\"It', 'was', 'hard', 'enough']]\n",
+ "[['grips', 'with', 'renting', 'out', 'a', 'room'], 'in', ['our', 'home,\"', 'said', 'a', 'Northridge', 'homeowner']]\n",
+ "[['loss', 'of', 'privacy', 'and', 'security', 'involved'], 'in', ['opening', 'up', 'their', 'home', 'to', 'an']]\n",
+ "[['who', 'has', 'owned', 'his', 'three-bedroom', 'home'], 'in', ['Canoga', 'Park', 'since', '1988,', 'said', 'having']]\n",
+ "[['for', 'the', 'first', 'time', '-', 'and'], 'in', ['many', 'ways', 'driven', 'by', 'economic', 'reasons']]\n",
+ "[['he', 'said.', '\"And', 'having', 'another', '$700'], 'in', ['my', 'pocket', \"isn't\", 'going', 'to', 'hurt']]\n",
+ "[['for', 'the', 'New', 'York', 'City', 'Marathon'], 'in', ['2003.', 'On', 'its', 'own,', 'the', \"marathon's\"]]\n",
+ "[['increased', 'since,', 'to', 'place', 'its', 'letters'], 'in', ['front', 'of', 'the', \"marathon's\", 'name.', '\"ING']]\n",
+ "[['us,\"', 'she', 'said,', '\"which', 'put', 'us'], 'in', ['a', 'good', 'position', 'to', 'say,', 'Here']]\n",
+ "[['of', 'the', 'financial', 'rescue.', '\"We\\'d', 'been'], 'in', ['close', 'contact', 'with', 'ING,\"', 'she', 'said.']]\n",
+ "[['understood', 'it.', 'ING', 'is', 'quite', 'significant'], 'in', ['the', 'Netherlands,', 'so', 'we', 'thought', 'the']]\n",
+ "[['vice', 'president', 'for', 'ING', 'Americas,', 'said'], 'in', ['an', 'interview', 'at', 'Tavern', 'on', 'the']]\n",
+ "[['he', 'said:', '\"When', 'ING', 'is', 'involved'], 'in', ['something,', \"we're\", 'not', 'a', 'drive-by.', \"We're\"]]\n",
+ "[['of', 'sports', 'sponsors,', 'who', 'are', 'prominent'], 'in', ['the', 'financial', 'and', 'automotive', 'sectors.', 'How']]\n",
+ "[['along', 'with', 'others', 'that', 'it', 'sponsors'], 'in', ['the', 'United', 'States', 'and', 'around', 'the']]\n",
+ "[['us', 'when', 'we', 'entered', 'the', 'market'], 'in', ['a', 'big', 'way,\"', 'Waldron', 'said.', '\"We']]\n",
+ "[['money', 'into', 'generates', 'new', 'business', 'or,'], 'in', ['its', 'case,', 'new', 'accounts', 'or', 'clients']]\n",
+ "[['its', 'name.', '\"We', 'see', 'an', 'uptick'], 'in', ['the', 'recognition', 'of', 'our', 'name', 'after']]\n",
+ "[['to', 'federal', 'documents,', 'the', 'club', 'took'], 'in', ['$10.8', 'million', 'in', 'sponsorship', 'and', 'television']]\n",
+ "[['the', 'club', 'took', 'in', '$10.8', 'million'], 'in', ['sponsorship', 'and', 'television', 'revenues', 'in', 'the']]\n",
+ "[['million', 'in', 'sponsorship', 'and', 'television', 'revenues'], 'in', ['the', 'year', 'ended', 'March', '31,', '2007.']]\n",
+ "[['for', 'the', 'organization,', 'after', '$13.1', 'million'], 'in', ['race', 'entries.', 'The', 'marathon', 'diligently', 'uses']]\n",
+ "[['marathon', 'diligently', 'uses', 'the', 'ING', 'name'], 'in', ['all', 'public', 'utterances,', 'press', 'releases', 'and']]\n",
+ "[['of', 'the', 'Southeastern', 'Conference,', 'the', 'difference'], 'in', ['talent', 'is', 'so', 'slight', 'that', 'games']]\n",
+ "[['their', 'game', 'last', 'year', 'against', 'Florida'], 'in', ['Jacksonville,', 'Fla.,', 'to', 'be', 'sure', 'to']]\n",
+ "[['players', 'stormed', 'the', 'field', 'and', 'danced'], 'in', ['the', 'end', 'zone.', 'Georgia', 'went', 'on']]\n",
+ "[['42-30', 'victory,', 'suddenly', 'altering', 'a', 'rivalry'], 'in', ['which', 'Florida', 'had', 'won', '15', 'of']]\n",
+ "[['plays', 'No.', '8', 'Georgia', '(7-1,', '4-1)'], 'in', ['one', 'of', 'the', 'biggest', 'games', 'in']]\n",
+ "[['in', 'one', 'of', 'the', 'biggest', 'games'], 'in', ['the', \"rivalry's\", 'history,', 'and', \"Richt's\", 'ploy']]\n",
+ "[['game.', '\"I', 'think', 'anything', 'that', 'gets'], 'in', ['the', 'way', 'of', 'our', 'preparation', 'would']]\n",
+ "[['kinesiology', 'at', 'Georgia', 'with', 'a', 'specialty'], 'in', ['exercise', 'and', 'sports', 'psychology.', '\"But', 'there']]\n",
+ "[['died', 'Tuesday', 'at', 'Valley', 'Presbyterian', 'Hospital'], 'in', ['Van', 'Nuys.', 'She', 'was', '89.', 'Political']]\n",
+ "[['life,', 'Broadous', 'made', 'sure', 'she', 'participated'], 'in', ['next', \"week's\", 'historic', 'election.', '\"She', 'was']]\n",
+ "[['the', 'late', 'Rev.', 'Hillery', 'T.', 'Broadous,'], 'in', ['1955.', 'A', 'mother', 'of', '11', 'children,']]\n",
+ "[['organize', 'a', 'Negro', 'History', 'Week', 'Program'], 'in', ['the', 'San', 'Fernando', 'Valley.', 'She', 'was']]\n",
+ "[['Pamela', 'J.', 'Broadous', 'said.', '\"She', 'believed'], 'in', ['the', \"'total'\", 'community.', 'She', 'taught', 'that']]\n",
+ "[['came', 'to', 'the', 'San', 'Fernando', 'Valley'], 'in', ['1946', 'with', 'her', 'husband', 'and', 'the']]\n",
+ "[['11', 'children.', 'She', 'lived', 'since', '1954'], 'in', ['the', 'same', 'house', 'in', 'Pacoima.', 'Broadous']]\n",
+ "[['since', '1954', 'in', 'the', 'same', 'house'], 'in', ['Pacoima.', 'Broadous', 'volunteered', 'with', 'the', 'Braille']]\n",
+ "[['of', 'the', 'YWCA', 'and', 'the', 'PTA'], 'in', ['her', \"children's\", 'schools.', '\"We', 'all', 'called']]\n",
+ "[['was', 'always', 'there', 'to', 'support', 'you'], 'in', ['any', 'way', 'you', 'needed,\"', 'said', 'Jose']]\n",
+ "[['graduated', 'from', 'Los', 'Angeles', 'Mission', 'College'], 'in', ['1976', 'as', 'a', 'liberal', 'arts', 'major']]\n",
+ "[['Lee', 'Thompson', 'on', 'Dec.', '8,', '1918,'], 'in', ['Gould,', 'Ark.,', 'she', 'married', 'the', 'Rev.']]\n",
+ "[['12', 'great-great-grandchildren.', 'Two', 'children', 'preceded', 'her'], 'in', ['death', 'as', 'did', 'five', 'grandchildren.', 'Viewing']]\n",
+ "[['are', 'expected', 'to', 'see', 'an', 'uptick'], 'in', ['business', 'during', 'the', 'slumping', 'economy', '--']]\n",
+ "[['undertaking', 'the', 'largest', 'school', 'construction', 'project'], 'in', ['the', 'nation,', 'are', 'awarded', 'based', 'on']]\n",
+ "[['Inc.,', 'one', 'of', 'the', 'largest', 'builders'], 'in', ['Los', 'Angeles.', 'LAUSD', 'facilities', 'chief', 'Guy']]\n",
+ "[['Yes', 'on', 'Q', 'campaign', 'received', '$264,300'], 'in', ['contributions.', 'The', 'largest', 'donations', 'were', '$25,000']]\n",
+ "[['bid', 'on', 'two', 'new', 'elementary', 'schools'], 'in', ['North', 'Hills', 'and', 'Canoga', 'Park', 'as']]\n",
+ "[['Sept.', '10,', 'Bernards', 'Brother', 'Inc.,', 'based'], 'in', ['San', 'Fernando,', 'donated', '$10,000', 'to', 'the']]\n",
+ "[['middle', 'school', 'on', 'West', '46th', 'Street'], 'in', ['South', 'Los', 'Angeles.', 'At', '$74.9', 'million']]\n",
+ "[['of', 'the', 'school,', 'which', 'should', 'open'], 'in', ['two', 'years,', 'is', 'approximately', '$136.6million.', 'Over']]\n",
+ "[['and', 'the', 'local', 'economy.', '\"We', 'believe'], 'in', ['L.A.', 'Unified.', 'My', 'kids', 'graduated', 'from']]\n",
+ "[['said', 'Stern,', 'but', 'donors', 'are', 'investing'], 'in', ['something', 'that', 'they', 'think', \"they'll\", 'get']]\n",
+ "[['$7', 'billion.\"', 'Stephon', 'Marbury', 'sat', 'docilely'], 'in', ['jeans', 'and', 'a', 'black,', 'blue', 'and']]\n",
+ "[['and', 'warm-ups', 'over', 'their', 'jerseys.', 'Marbury,'], 'in', ['his', 'corner', 'locker,', 'remained', 'still,', 'unaffected']]\n",
+ "[['probably', 'ever.', 'That', 'point', 'was', 'hammered'], 'in', ['as', 'Marbury', 'watched', 'the', 'game', 'from']]\n",
+ "[['second', 'consecutive', 'game,', 'although', 'he', 'was'], 'in', ['uniform.', 'Marbury', 'and', 'Curry', 'were', 'once']]\n",
+ "[['be', 'divvied', 'among', 'young', 'players,', 'those'], 'in', ['the', \"Knicks'\", 'future,', 'those', 'not', 'named']]\n",
+ "[['Marbury,', 'a', 'lighting', 'rod', 'of', 'controversy'], 'in', ['past', 'years.', '\"It\\'s', 'not', 'that', \"he's\"]]\n",
+ "[['Marbury', 'as', 'inactive', 'against', 'the', 'Heat'], 'in', ['the', 'season', 'opener', 'on', 'Wednesday,', 'when']]\n",
+ "[['\"It\\'s', 'just', 'the', 'team', 'is', 'going'], 'in', ['a', 'different', 'direction.', \"He's\", 'been', 'in']]\n",
+ "[['in', 'a', 'different', 'direction.', \"He's\", 'been'], 'in', ['the', 'league', 'for', 'a', 'long', 'time.']]\n",
+ "[['minutes.\"', 'Friday', 'was', 'the', 'next', 'step'], 'in', ['the', 'evolution', 'of', \"Marbury's\", 'apparent', 'exile.']]\n",
+ "[['apparent', 'exile.', 'It', 'started', 'subtly', 'enough'], 'in', ['July,', 'with', 'the', 'signing', 'of', 'Duhon.']]\n",
+ "[['with', 'the', 'signing', 'of', 'Duhon.', 'Then,'], 'in', ['training', 'camp,', \"D'Antoni\", 'shuffled', 'Marbury', 'from']]\n",
+ "[['the', 'starter.', 'Next', 'came', 'sporadic', 'minutes'], 'in', ['the', 'preseason,', 'followed', 'by', \"Wednesday's\", '48-minute']]\n",
+ "[['Marbury', 'left', 'the', 'bench', 'to', 'huddle'], 'in', ['timeouts', 'and', 'slapped', 'the', 'hands', 'of']]\n",
+ "[['statements', 'that', 'he', 'wanted', 'to', 'remain'], 'in', ['New', 'York', 'and', 'help', 'the', 'team']]\n",
+ "[['get', 'an', 'umbrella', 'and', 'then', 'walk'], 'in', ['the', 'rain.', 'I', 'have', 'no', 'control']]\n",
+ "[['Marbury', 'said.', 'Would', 'you', 'rather', 'sit'], 'in', ['clothes', 'than', 'a', 'jersey?', '\"Coach\\'s', 'decision,\"']]\n",
+ "[['died', 'Tuesday', 'at', 'Valley', 'Presbyterian', 'Hospital'], 'in', ['Van', 'Nuys.', 'She', 'was', '89.', 'Political']]\n",
+ "[['life,', 'Broadous', 'made', 'sure', 'she', 'participated'], 'in', ['next', \"week's\", 'historic', 'election.', '\"She', 'was']]\n",
+ "[['the', 'late', 'Rev.', 'Hillery', 'T.', 'Broadous,'], 'in', ['1955.', 'A', 'mother', 'of', '11', 'children,']]\n",
+ "[['organize', 'a', 'Negro', 'History', 'Week', 'Program'], 'in', ['the', 'San', 'Fernando', 'Valley.', 'She', 'was']]\n",
+ "[['Pamela', 'J.', 'Broadous', 'said.', '\"She', 'believed'], 'in', ['the', \"'total'\", 'community.', 'She', 'taught', 'that']]\n",
+ "[['came', 'to', 'the', 'San', 'Fernando', 'Valley'], 'in', ['1946', 'with', 'her', 'husband', 'and', 'the']]\n",
+ "[['11', 'children.', 'She', 'lived', 'since', '1954'], 'in', ['the', 'same', 'house', 'in', 'Pacoima.', 'Broadous']]\n",
+ "[['since', '1954', 'in', 'the', 'same', 'house'], 'in', ['Pacoima.', 'Broadous', 'volunteered', 'with', 'the', 'Braille']]\n",
+ "[['of', 'the', 'YWCA', 'and', 'the', 'PTA'], 'in', ['her', \"children's\", 'schools.', '\"We', 'all', 'called']]\n",
+ "[['was', 'always', 'there', 'to', 'support', 'you'], 'in', ['any', 'way', 'you', 'needed,\"', 'said', 'Jose']]\n",
+ "[['graduated', 'from', 'Los', 'Angeles', 'Mission', 'College'], 'in', ['1976', 'as', 'a', 'liberal', 'arts', 'major']]\n",
+ "[['Lee', 'Thompson', 'on', 'Dec.', '8,', '1918,'], 'in', ['Gould,', 'Ark.,', 'she', 'married', 'the', 'Rev.']]\n",
+ "[['12', 'great-great-grandchildren.', 'Two', 'children', 'preceded', 'her'], 'in', ['death', 'as', 'did', 'five', 'grandchildren.', 'Viewing']]\n",
+ "[['the', 'games.', 'A', 'new', 'scoreboard', 'stands'], 'in', ['a', 'corner.', 'A', 'rumpled', 'metal', 'piece']]\n",
+ "[['are', '10-0', 'and', 'ranked', 'No.', '1'], 'in', [\"Iowa's\", 'Class', '1A,', 'for', 'small', 'schools']]\n",
+ "[['Ed', 'Thomas', 'Field.', 'As', 'people', 'gathered'], 'in', ['the', 'chilled', 'twilight', 'before', 'the', 'game,']]\n",
+ "[['horizon', 'filled', 'with', 'houses', 'and', 'businesses'], 'in', ['various', 'states', 'of', 'construction.', 'When', 'asked']]\n",
+ "[['Enhanced', 'Fujita', 'scale,', 'the', \"state's\", 'strongest'], 'in', ['at', 'least', 'a', 'generation', '--', 'and']]\n",
+ "[['years.', 'The', 'Falcons', 'won', 'state', 'championships'], 'in', ['1993', 'and', '2001,', 'and', 'four', 'former']]\n",
+ "[['2001,', 'and', 'four', 'former', 'players', 'are'], 'in', ['the', 'NFL:', 'Packers', 'defensive', 'end', 'Aaron']]\n",
+ "[['they', 'played', 'their', 'first', 'home', 'game'], 'in', ['September,', 'the', 'scoreboard', 'went', 'up.', 'In']]\n",
+ "[['a', 'bus', 'barn.', 'Musco', 'Lighting,', 'based'], 'in', ['Muscatine,', 'Iowa,', 'donated', 'and', 'installed', 'the']]\n",
+ "[['reseeding', 'the', 'field.', 'A', 'man', 'put'], 'in', ['a', 'concrete', 'floor', 'in', 'part', 'of']]\n",
+ "[['man', 'put', 'in', 'a', 'concrete', 'floor'], 'in', ['part', 'of', 'his', 'barn', 'to', 'create']]\n",
+ "[['was', 'held', 'at', 'the', 'middle', 'school'], 'in', ['Aplington,', 'where', 'the', '240', 'high', 'school']]\n",
+ "[['players.', 'The', 'rest', 'has', 'come', 'mostly'], 'in', ['small', 'increments.', '\"Sometimes', 'I', 'catch', 'myself']]\n",
+ "[['many', 'children', 'would', 'not', 'sleep', 'upstairs'], 'in', ['their', 'bedrooms,', 'away', 'from', 'the', 'relative']]\n",
+ "[['Her', 'daughter', 'and', 'son', 'Coy', 'were'], 'in', ['the', 'basement', 'with', 'two', 'of', \"Coy's\"]]\n",
+ "[['twister.', 'Only', 'when', 'the', '80-year-old', 'tree'], 'in', ['the', 'yard', 'was', 'ripped', 'from', 'the']]\n",
+ "[['The', 'players,', 'all', '74', 'of', 'them'], 'in', ['uniform,', 'were', 'silent.', '\"I', 'think', \"you've\"]]\n",
+ "[['from', 'the', 'old', 'scoreboard.', 'The', 'people'], 'in', ['the', 'bleachers', 'stood', 'and', 'cheered.', 'Just']]\n",
+ "[['stood', 'and', 'cheered.', 'Just', 'behind', 'them,'], 'in', ['the', 'twilight', 'behind', 'the', 'construction', 'fence,']]\n",
+ "[['was', 'diagnosed', 'with', 'acute', 'myeloid', 'leukemia'], 'in', ['April.', 'The', 'only', 'cure', 'is', 'a']]\n",
+ "[['proved', 'elusive', 'among', 'the', '11million', 'people'], 'in', ['the', 'registry.', 'Even', 'his', 'brothers', 'and']]\n",
+ "[['to', '11', 'percent', 'of', 'the', 'population'], 'in', ['several', 'Western', 'states', 'checks', 'more', 'than']]\n",
+ "[['is', 'white', 'and', '\"other', 'race,\"', 'and'], 'in', ['Alaska', 'and', 'Oklahoma,', 'it', 'is', 'white']]\n",
+ "[['finding', 'a', 'match)', 'is', 'probably', 'greatest'], 'in', ['this', 'growing', 'community', 'of', 'racially', 'and']]\n",
+ "[['will', 'create', 'a', 'new', 'tissue', 'type'], 'in', ['children', 'is', 'very', 'high.\"', \"That's\", 'why']]\n",
+ "[['wife,', 'Olga,', 'were', 'on', 'a', 'cruise'], 'in', ['Mexico', 'when', 'he', 'started', 'feeling', 'ill.']]\n",
+ "[['USC,', 'and', 'the', 'rivalry', 'is', 'embedded'], 'in', ['students.', 'We', 'thought', 'we', 'could', 'generate']]\n",
+ "[['him', 'because', 'he', 'brings', 'them', 'burritos'], 'in', ['the', 'morning', 'stuffed', 'with', 'bacon,', 'eggs']]\n",
+ "[['skillet', 'potatoes.\"', 'Corrales,', 'who', 'grew', 'up'], 'in', ['the', 'city', 'of', 'San', 'Fernando', 'and']]\n",
+ "[['the', 'city', 'of', 'San', 'Fernando', 'and'], 'in', ['Pacoima,', 'attended', 'College', 'of', 'the', 'Canyons']]\n",
+ "[['Pacoima,', 'attended', 'College', 'of', 'the', 'Canyons'], 'in', ['Valencia,', 'where', 'he', 'played', 'baseball.', 'He']]\n",
+ "[['whipsawed', 'and', 'the', 'words', 'he', 'read'], 'in', ['textbooks', 'slipped', 'easily', 'from', 'his', 'memory,']]\n",
+ "[['when', 'a', 'Humvee', 'he', 'was', 'riding'], 'in', ['detonated', 'a', 'bomb', 'buried', 'under', 'the']]\n",
+ "[['order,', 'he', 'endured', 'numerous', 'surgeries,', 'months'], 'in', ['a', 'wheelchair,', 'a', 'titanium', 'prosthesis', 'and']]\n",
+ "[['blessings.', 'College', 'was', 'the', 'first', 'step'], 'in', ['his', 'plan', 'to', 'reshape', 'his', 'life.']]\n",
+ "[['reshape', 'his', 'life.', 'After', 'four', 'years'], 'in', ['the', 'Marines,', 'one', 'combat', 'tour', 'in']]\n",
+ "[['in', 'the', 'Marines,', 'one', 'combat', 'tour'], 'in', ['Iraq', 'and', 'a', 'life-changing', 'injury,', 'how']]\n",
+ "[['When', 'the', 'bill', 'goes', 'into', 'effect,'], 'in', ['August', '2009,', 'a', 'boom', 'in', 'post-9/11']]\n",
+ "[['effect,', 'in', 'August', '2009,', 'a', 'boom'], 'in', ['post-9/11', 'veterans', 'is', 'expected', 'at', 'colleges']]\n",
+ "[['to', 'ease', 'the', 'difficult', 'transition.', 'Still'], 'in', ['its', 'early', 'stages', 'at', 'many', 'institutions,']]\n",
+ "[['many', 'institutions,', 'the', 'effort', 'is', 'led'], 'in', ['large', 'part', 'by', 'a', 'generation', 'of']]\n",
+ "[['most', 'successful', 'and', 'transformative', 'government', 'programs'], 'in', ['history.', 'It', 'ultimately', 'sent', '2.2', 'million']]\n",
+ "[['to', 'deal', 'with', \"veterans'\", 'reacclimation', 'issues'], 'in', ['a', 'more', 'comprehensive', 'way.', 'They', 'are']]\n",
+ "[['a', 'more', 'comprehensive', 'way.', 'They', 'are'], 'in', ['a', 'safe', 'place', 'there', 'in', 'school,']]\n",
+ "[['are', 'in', 'a', 'safe', 'place', 'there'], 'in', ['school,', 'moving', 'forward', 'with', 'their', 'life.\"']]\n",
+ "[['the', 'Montgomery', 'GI', 'Bill,', 'was', 'passed'], 'in', ['1984', 'and', 'was', 'named', 'after', 'the']]\n",
+ "[['college', 'education,', 'found', 'that', 'the', 'program,'], 'in', ['essence,', 'paid', 'for', 'community', 'college.', 'Many']]\n",
+ "[['40', 'percent', 'of', 'the', '450,000', 'veterans'], 'in', ['the', 'current', 'program', 'attend', 'community', 'colleges,']]\n",
+ "[['veterans,', 'though,', 'say', 'they', 'wind', 'up'], 'in', ['community', 'colleges', 'or', 'fail', 'to', 'transfer']]\n",
+ "[['--', 'led', 'many', 'into', 'the', 'military'], 'in', ['the', 'first', 'place.', 'But', 'many', 'institutions']]\n",
+ "[['to', 'study', 'at', 'Columbia', 'University.', 'Reared'], 'in', ['El', 'Paso,', 'Texas,', 'he', 'did', 'a']]\n",
+ "[['stint', 'at', 'a', 'community', 'college,', 'then'], 'in', ['1997', 'moved', 'to', 'New', 'York', 'to']]\n",
+ "[['patriot,', 'he', 'had', 'long', 'imagined', 'himself'], 'in', ['the', 'military.', 'So', 'in', '2000,', 'Valenzuela']]\n",
+ "[['imagined', 'himself', 'in', 'the', 'military.', 'So'], 'in', ['2000,', 'Valenzuela', 'enlisted', 'in', 'the', 'Marine']]\n",
+ "[['military.', 'So', 'in', '2000,', 'Valenzuela', 'enlisted'], 'in', ['the', 'Marine', 'Corps.', 'Twice', 'he', 'was']]\n",
+ "[['The', 'second', 'tour,', 'with', 'the', 'country'], 'in', ['the', 'throes', 'of', 'an', 'insurgency,', 'was']]\n",
+ "[['for', 'weapons', 'caches.', 'A', 'buddy', 'died'], 'in', ['combat.', 'Explosions', 'and', 'small', 'arms', 'fire']]\n",
+ "[['He', 'was', 'told', 'to', 'reapply', 'later'], 'in', ['the', 'year.', 'Fearing', 'that', 'if', 'he']]\n",
+ "[['first', 'the', 'director,', 'Eugenio', 'Barrios,', 'saw'], 'in', ['him', 'just', 'another', 'case', 'of', 'procrastination']]\n",
+ "[['Valenzuela', 'brought', 'up', 'his', 'seven-year', 'career'], 'in', ['the', 'corps,', 'and', 'showed', 'pictures', 'of']]\n",
+ "[['showed', 'pictures', 'of', 'a', 'banged-up', 'Humvee'], 'in', ['Iraq.', 'The', 'vehicle', 'had', 'flipped', 'in']]\n",
+ "[['in', 'Iraq.', 'The', 'vehicle', 'had', 'flipped'], 'in', ['an', 'accident,', 'a', 'common', 'danger,', 'and']]\n",
+ "[['so', 'well', 'on', 'the', 'placement', 'exam'], 'in', ['reading,', 'writing', 'and', 'math', 'required', 'by']]\n",
+ "[['need', 'to', 'apply', 'everything', 'he', 'learned'], 'in', ['the', 'corps', 'to', 'his', 'schoolwork.', '\"Some']]\n",
+ "[['is', 'there.', 'There', 'is', 'a', 'word'], 'in', ['Spanish', 'for', 'that:', 'las', 'ganas.', 'They']]\n",
+ "[['to', 'change', 'after', 'he', 'started', 'college,'], 'in', ['January.', 'With', 'the', 'help', 'of', 'his']]\n",
+ "[['the', 'war', 'was', 'the', 'first', 'step'], 'in', ['a', 'long', 'process.', '\"I', 'have', 'gotten']]\n",
+ "[['Still,', 'old', 'habits', 'die', 'hard,', 'even'], 'in', ['the', 'classroom.', '\"I', 'always', 'know', 'where']]\n",
+ "[['after', 'four', 'years', 'and', 'one', 'tour'], 'in', ['Iraq,', 'explains:', '\"You', 'have', 'P.T.', 'formation,']]\n",
+ "[['curiosity', 'about', 'life', 'on', 'the', 'ground'], 'in', ['Iraq.', 'The', 'discomfort', 'many', 'veterans', 'mention']]\n",
+ "[['war.', 'With', 'fewer', 'than', '2.7', 'million'], 'in', ['the', 'armed', 'forces', '--', 'roughly', '2']]\n",
+ "[['what', 'it', 'is', 'like', 'to', 'fight'], 'in', ['a', 'war.', 'For', 'Arcangel,', 'Iraq,', 'where']]\n",
+ "[['hook', 'veterans', 'up', 'with', 'one', 'another'], 'in', ['a', 'social', 'network.', '\"There', 'are', 'some']]\n",
+ "[['\"Introduction', 'to', 'College', 'Life\"', '--', 'and'], 'in', ['the', 'spring,', 'psychology,', 'chemistry,', 'sociology', 'and']]\n",
+ "[['psychology,', 'chemistry,', 'sociology', 'and', 'one', 'course'], 'in', ['the', 'mainstream', 'to', 'ease', 'them', 'into']]\n",
+ "[['from', 'the', 'community', 'to', 'get', 'enough'], 'in', ['the', 'spring,\"', 'he', 'says.', '\"They', \"didn't\"]]\n",
+ "[['semester', 'there', 'are', '25', 'new', 'students'], 'in', ['the', 'program.', 'Schupp', 'sees', 'camaraderie', 'in']]\n",
+ "[['in', 'the', 'program.', 'Schupp', 'sees', 'camaraderie'], 'in', ['the', 'classroom', 'as', 'crucial', 'to', 'getting']]\n",
+ "[['War,', 'offers', 'a', 'class', 'called', '\"Veterans'], 'in', ['Higher', 'Education,\"', 'to', 'help', 'them', 'learn']]\n",
+ "[['Troops', 'to', 'College,', 'an', 'initiative', 'begun'], 'in', ['2006', 'and', 'championed', 'by', 'Gov.', 'Arnold']]\n",
+ "[['members', 'of', 'the', 'service', 'or', 'veterans'], 'in', ['gathering', 'lost', 'transcripts', 'before', 'they', 'apply,']]\n",
+ "[['that', 'veterans', 'have', 'access', 'to', 'counseling,'], 'in', ['some', 'cases', 'without', 'having', 'to', 'wait']]\n",
+ "[['some', 'cases', 'without', 'having', 'to', 'wait'], 'in', ['a', 'roomful', 'of', 'other', 'students.', 'Veterans']]\n",
+ "[['Student', 'Veterans', 'of', 'America', 'says', 'many'], 'in', ['the', 'military', 'view', 'the', 'best', 'universities']]\n",
+ "[['when', 'he', 'graduated', 'from', 'high', 'school'], 'in', ['Alanson,', 'Mich.', 'The', '3.9', 'GPA', 'he']]\n",
+ "[['Mich.', 'The', '3.9', 'GPA', 'he', 'earned'], 'in', ['a', 'community', 'college', 'and,', 'he', 'believes,']]\n",
+ "[['college', 'and,', 'he', 'believes,', 'his', 'standing'], 'in', ['the', 'military', 'got', 'him', 'into', 'the']]\n",
+ "[['University', 'rejected', 'him.)', 'He', 'is', 'double-majoring'], 'in', ['psychology', 'and', 'political', 'science.', 'His', 'friends']]\n",
+ "[['says', 'Blumke,', 'a', 'former', 'noncommissioned', 'officer'], 'in', ['the', 'Air', 'Force.', '\"The', 'Michigans,', 'UCLAs']]\n",
+ "[['the', 'military', 'there.', 'They', 'were', 'stuck'], 'in', ['the', \"'60s\", 'and', '\\'70s.\"', 'Until', 'recently,']]\n",
+ "[['to', 'college.', '\"The', 'all-volunteer', 'military', 'draws'], 'in', ['a', 'segment', 'of', 'the', 'population', 'that']]\n",
+ "[['has', 'not', 'customarily', 'gone', 'to', 'college'], 'in', ['the', 'same', 'proportion', 'as', 'other', 'parts']]\n",
+ "[[\"don't\", 'look', 'for', 'the', 'same', 'thing'], 'in', ['terms', 'of', 'test', 'scores,', 'but', 'we']]\n",
+ "[['attending', 'Dartmouth', 'is', 'tiny,', 'all', 'matriculating'], 'in', ['the', 'last', 'two', 'years.', 'Last', 'year,']]\n",
+ "[['freshmen;', 'this', 'fall', 'there', 'are', 'six'], 'in', ['a', 'first-year', 'class', 'of', '1,077.', 'Blumke']]\n",
+ "[['James', 'McMahon,', 'who', 'served', 'four', 'years'], 'in', ['the', 'Marines,', 'into', 'the', 'college', 'of']]\n",
+ "[['(\"I', \"didn't\", 'have', 'a', 'vested', 'interest'], 'in', ['college\")', 'and', 'was', 'unimpressed.', 'He', 'was']]\n",
+ "[['unimpressed.', 'He', 'was', 'rejected.', 'McMahon', 'was'], 'in', ['California', 'training', 'other', 'Marines', 'for', 'deployment']]\n",
+ "[['his', 'successes.', '\"My', 'father', 'finally', 'got'], 'in', ['touch', 'with', 'the', 'president', 'of', 'the']]\n",
+ "[['not', 'wired', 'to', 'think', 'about', 'it'], 'in', ['those', 'terms.', 'I', \"didn't\", 'take', 'it']]\n",
+ "[['keep', 'up.', 'But', 'he', 'is', 'majoring'], 'in', ['sociology', 'with', 'a', 'focus', 'on', 'criminal']]\n",
+ "[['his', 'injuries', 'dictate', 'his', 'future.', 'Following'], 'in', ['his', \"father's\", 'footsteps,', 'he', 'joined', 'the']]\n",
+ "[['Corps', 'right', 'out', 'of', 'high', 'school,'], 'in', ['2001.', 'His', 'specialty', 'was', 'combat', 'engineering,']]\n",
+ "[['two', 'veterans', 'moved', 'into', 'an', 'apartment'], 'in', ['Virginia', 'together,', 'and', 'Blanchard', 'started', 'his']]\n",
+ "[['of', 'what', 'he', 'read', 'or', 'heard'], 'in', ['the', 'classroom.', '\"My', 'mind', 'was', 'blurred,']]\n",
+ "[['time,', 'and', 'I', 'was', 'walking', 'around'], 'in', ['a', 'daze,\"', 'says', 'Blanchard,', 'who', 'does']]\n",
+ "[['veterans', 'group,', 'which', 'has', 'put', 'him'], 'in', ['touch', 'with', 'about', '20', 'other', 'veterans']]\n",
+ "[['America.', 'He', 'ran', 'on', 'a', 'whim'], 'in', ['the', 'spring', 'and', 'was', 'voted', 'in.']]\n",
+ "[['clients', 'worried', 'about', 'losing', 'their', 'homes'], 'in', ['this', 'bad', 'economy.', '\"What', 'should', 'I']]\n",
+ "[['plasma', 'TV', 'and', 'stereo', 'surround', 'sound'], 'in', ['his', 'spacious', 'three-story', 'home', 'in', 'the']]\n",
+ "[['sound', 'in', 'his', 'spacious', 'three-story', 'home'], 'in', ['the', 'hillsides', 'above', 'Woodland', 'Hills', 'and']]\n",
+ "[['used', 'to,\"', 'said', 'the', 'single', 'man'], 'in', ['his', '30s.', '\"So', 'I', 'figured', 'that']]\n",
+ "[['country', 'who', 'never', 'thought', 'of', 'taking'], 'in', ['boarders', 'but', 'are', 'now', 'quietly', 'doing']]\n",
+ "[['debts.', '\"In', 'this', 'economy,', \"we're\", 'now'], 'in', ['uncharted', 'waters,', 'and', \"I've\", 'never', 'seen']]\n",
+ "[['never', 'seen', 'anything', 'like', 'homeowners', 'taking'], 'in', ['boarders', 'except', 'in', 'stories', 'about', 'the']]\n",
+ "[['like', 'homeowners', 'taking', 'in', 'boarders', 'except'], 'in', ['stories', 'about', 'the', 'Depression,\"', 'said', 'Bob']]\n",
+ "[['of', 'the', 'Center', 'of', 'Governmental', 'Studies'], 'in', ['Los', 'Angeles,', 'which', 'examines', 'political', 'and']]\n",
+ "[['which', 'examines', 'political', 'and', 'economic', 'issues'], 'in', ['the', 'Southland.', 'Although', 'there', 'are', 'no']]\n",
+ "[['services', 'that', 'place', 'boarders', 'say', 'that'], 'in', ['recent', 'months', 'they', 'have', 'received', 'a']]\n",
+ "[['their', 'services', '--', 'middle-class', 'professionals', 'living'], 'in', ['upscale', 'suburbs.', '\"We\\'ve', 'seen', 'an', 'upsurge']]\n",
+ "[['upscale', 'suburbs.', '\"We\\'ve', 'seen', 'an', 'upsurge'], 'in', ['homeowners', 'renting', 'out', 'rooms', 'in', 'their']]\n",
+ "[['upsurge', 'in', 'homeowners', 'renting', 'out', 'rooms'], 'in', ['their', 'homes.', \"It's\", 'a', 'sign', 'of']]\n",
+ "[['also', 'places', 'roommates.', '\"I', 'was', 'recently'], 'in', ['our', 'Valley', 'office,', 'and', 'a', '62-year-old']]\n",
+ "[['office,', 'and', 'a', '62-year-old', 'woman', 'walked'], 'in', ['looking', 'to', 'share', 'her', 'home', 'with']]\n",
+ "[['looking', 'to', 'rent', 'out', 'a', 'room'], 'in', ['my', 'house', 'to', 'help', 'me', 'with']]\n",
+ "[['mortgage', 'foreclosures', 'still', 'on', 'the', 'rise'], 'in', ['the', 'U.S.,', 'more', 'homeowners', 'nationwide', 'are']]\n",
+ "[['on', 'the', 'lawns', 'of', 'some', 'homes'], 'in', ['Woodland', 'Hills.', 'Other', 'homeowners', 'have', 'resorted']]\n",
+ "[['Internet', 'site', 'craigslist.org', 'to', 'list', 'rooms'], 'in', ['their', 'houses.', 'Marlene', 'Mazzi', 'of', 'Winnetka']]\n",
+ "[['of', 'work', 'because', 'of', 'the', 'downturn'], 'in', ['the', 'Los', 'Angeles', 'home-building', 'industry.', '\"We']]\n",
+ "[['\"We', 'have', 'our', \"life's\", 'savings', 'invested'], 'in', ['our', 'home,', 'and', 'we', 'have', 'to']]\n",
+ "[['Taborga,', 'a', 'construction', 'worker', 'who', 'sleeps'], 'in', ['a', 'converted', 'family', 'room', 'and', 'also']]\n",
+ "[['most', 'were', 'reluctant', 'to', 'be', 'identified'], 'in', ['this', 'story.', '\"It', 'was', 'hard', 'enough']]\n",
+ "[['grips', 'with', 'renting', 'out', 'a', 'room'], 'in', ['our', 'home,\"', 'said', 'a', 'Northridge', 'homeowner']]\n",
+ "[['loss', 'of', 'privacy', 'and', 'security', 'involved'], 'in', ['opening', 'up', 'their', 'home', 'to', 'an']]\n",
+ "[['who', 'has', 'owned', 'his', 'three-bedroom', 'home'], 'in', ['Canoga', 'Park', 'since', '1988,', 'said', 'having']]\n",
+ "[['for', 'the', 'first', 'time', '--', 'and'], 'in', ['many', 'ways', 'driven', 'by', 'economic', 'reasons']]\n",
+ "[['he', 'said.', '\"And', 'having', 'another', '$700'], 'in', ['my', 'pocket', \"isn't\", 'going', 'to', 'hurt']]\n",
+ "[['out', 'there.', 'More', 'than', '$300', 'million'], 'in', ['scholarships', 'and', 'grants', 'for', 'veterans', 'and']]\n",
+ "[['would', 'have', 'gotten.', 'The', 'program,', 'rooted'], 'in', ['World', 'War', 'I', 'and', 'part', 'of']]\n",
+ "[['extras.', 'There', 'are', '97,000', 'veterans', 'enrolled'], 'in', ['the', 'program;', 'more', 'than', '20', 'percent']]\n",
+ "[['than', '20', 'percent', 'of', 'them', 'fought'], 'in', ['Iraq', 'or', 'Afghanistan.', 'PAYING', 'FOR', 'PRIVATE']]\n",
+ "[['But', 'that', 'leaves', 'thousands', 'of', 'dollars'], 'in', ['unpaid', 'tuition.', 'The', 'Department', 'of', 'Veterans']]\n",
+ "[['of', 'servicemen', 'and', 'women.', 'Pace', 'University'], 'in', ['New', 'York', 'cuts', 'tuition', 'by', 'half']]\n",
+ "[['by', 'half', 'for', 'post-9/11', 'veterans', 'enrolled'], 'in', ['undergraduate', 'and', 'graduate', 'programs,', 'including', 'online.']]\n",
+ "[['programs,', 'including', 'online.', 'At', 'Benedictine', 'University'], 'in', ['Lisle,', 'Ill.,', 'Iraq', 'and', 'Afghanistan', 'veterans']]\n",
+ "[['veterans', 'who', 'pursue', 'an', 'associate', 'degree'], 'in', ['business', 'administration', 'or', 'a', \"bachelor's\", 'in']]\n",
+ "[['in', 'business', 'administration', 'or', 'a', \"bachelor's\"], 'in', ['management', 'pay', 'no', 'tuition.', 'Online', 'programs']]\n",
+ "[['management', 'pay', 'no', 'tuition.', 'Online', 'programs'], 'in', ['particular', 'draw', 'students', 'from', 'the', 'military.']]\n",
+ "[['waiving', 'tuition', 'for', 'vets', 'include', 'those'], 'in', ['New', 'York,', 'Connecticut,', 'Wisconsin', 'and', 'Illinois.']]\n",
+ "[['vets', 'from', 'elsewhere', 'wishing', 'to', 'enroll'], 'in', ['its', 'public', 'colleges', 'and', 'universities.', 'Most']]\n",
+ "[['entering', 'any', 'of', '300', 'colleges', 'participating'], 'in', ['its', 'Military', 'Award', 'Program.', 'Its', 'Leadership']]\n",
+ "[['members', 'of', 'the', 'military', 'or', 'veterans'], 'in', ['any', 'accredited', 'career', 'school', 'who', 'meet']]\n",
+ "[['Afghanistan', 'veterans', 'practical', 'training', 'and', 'mentoring'], 'in', ['developing', 'new', 'ventures', 'and', 'running', 'small']]\n",
+ "[['through', 'letters', 'of', 'recommendation,', 'work', 'achievements'], 'in', ['or', 'out', 'of', 'the', 'military', 'and']]\n",
+ "[['PARTNERS', '(www.acp-usa.org)', 'This', 'mentoring', 'program', 'operates'], 'in', ['Atlanta,', 'Chicago,', 'Cincinnati,', 'Dallas,', 'Houston,', 'New']]\n",
+ "[['and', 'help', 'them', 'leverage', 'military', 'skills'], 'in', ['a', 'business', 'context.', 'OUTWARD', 'BOUND', '(www.outwardboundwilderness.org/veterans.html)']]\n",
+ "[['practical', 'skills,', 'confidence,', 'self-reliance', 'and', 'leadership'], 'in', ['its', 'participants.', 'It', 'also', 'tries', 'to']]\n",
+ "[['including', 'travel', 'to', 'and', 'from', 'sites'], 'in', ['California,', 'Colorado,', 'Maine,', 'Minnesota', 'and', 'Texas.']]\n",
+ "[['Texas.', 'The', 'new', 'GI', 'Bill', 'kicks'], 'in', ['on', 'Aug.', '1,', '2009,', 'and', 'will']]\n",
+ "[['It', 'also', 'provides', 'benefits', 'to', 'those'], 'in', ['the', 'National', 'Guard', 'and', 'Reserve,', 'who']]\n",
+ "[['half', 'the', 'veterans', 'returning', 'from', 'wars'], 'in', ['Iraq', 'and', 'Afghanistan', 'and', 'were', 'shortchanged']]\n",
+ "[['program,', 'including', 'a', 'technical', 'school.', 'And'], 'in', ['parts', 'of', 'the', 'country', 'with', 'low']]\n",
+ "[['military.', 'The', 'New', 'York', 'Times', 'said'], 'in', ['editorials', 'for', 'Saturday,', 'Nov.', '1:', 'OH,']]\n",
+ "[['that', 'would', 'be', 'ready', 'to', 'go'], 'in', ['90', 'days.', 'All', 'they', 'need', 'is']]\n",
+ "[['for', 'Medicaid.', 'During', 'the', 'last', 'recession'], 'in', ['2001,', 'Congress', 'provided', 'states', 'an', 'extra']]\n",
+ "[['provided', 'states', 'an', 'extra', '$10', 'billion'], 'in', ['block', 'grants', 'and', 'another', '$10', 'billion']]\n",
+ "[['protect', 'the', \"nation's\", 'most', 'vulnerable.', 'Investing'], 'in', ['highways', 'and', 'health', 'care', 'is', 'a']]\n",
+ "[['ON', 'THE', 'SCALES', 'The', 'world', 'is'], 'in', ['economic', 'turmoil', '--', 'much', 'of', 'it']]\n",
+ "[['if', 'only', 'barely.', '\"Rivals\\'', 'continued', 'presence'], 'in', ['the', 'market', 'casts', 'serious', 'doubt', 'on']]\n",
+ "[['placed', '\"a', 'thumb', 'on', 'the', 'scales'], 'in', ['favor', 'of', 'firms', 'with', 'monopoly', 'or']]\n",
+ "[['advisory', 'panel', 'might', 'pull', 'its', 'punches'], 'in', ['evaluating', 'the', 'Food', 'and', 'Drug', \"Administration's\"]]\n",
+ "[['safety', 'of', 'BPA,', 'which', 'is', 'found'], 'in', ['baby', 'bottles,', 'plastic', 'water', 'bottles', 'and']]\n",
+ "[['that', 'the', 'weight', 'of', 'the', 'evidence,'], 'in', ['its', 'view,', 'suggests', 'the', 'need', 'for']]\n",
+ "[['reported', 'on', 'an', 'especially', 'absurd', 'turn'], 'in', ['the', '\"Joe', 'the', 'Plumber\"', 'saga.', 'John']]\n",
+ "[['Joe', 'the', 'Plumber', 'with', 'me!\"', 'Earlier,'], 'in', ['Virginia,', \"McCain's\", 'running', 'mate,', 'Sarah', 'Palin,']]\n",
+ "[['unrequited', 'sixth-grade', 'crush', 'once', 'played', 'Back'], 'in', ['Black', 'during', 'gymnastics.', 'This', 'should', 'explain']]\n",
+ "[['VegiTerranean,', 'a', 'vegan', 'restaurant', 'she', 'opened'], 'in', ['her', 'Akron,', 'Ohio,', 'hometown,', 'the', 'menu']]\n",
+ "[['the', 'total', 'opposite:', 'messy,', 'swaggery,', 'built'], 'in', ['an', 'oil-slick', 'garage', 'with', 'bad', 'lighting.']]\n",
+ "[['blog', 'is', 'at', 'blogs.tampabay.com/popmusic.', 'He', 'walked'], 'in', ['beauty', 'Tony', 'Hillerman', 'liked', 'to', 'tell']]\n",
+ "[['his', 'first', 'novel,', 'The', 'Blessing', 'Way,'], 'in', ['1970.', 'His', 'first', 'agent', 'advised', 'him']]\n",
+ "[['I', 'hope', 'that', 'agent', 'found', 'work'], 'in', ['another', 'field.', 'Hillerman,', 'who', 'died', 'last']]\n",
+ "[['((10/26))', 'at', '83', 'at', 'his', 'home'], 'in', ['Albuquerque,', 'wrote', '18', 'novels', 'about', 'all']]\n",
+ "[['been', 'among', 'his', 'fans.', 'I', 'lived'], 'in', ['the', 'Southwest', 'for', '10', 'years,', 'and']]\n",
+ "[['While', 'I', 'was', 'a', 'book', 'editor'], 'in', ['Tucson,', 'Ariz.,', 'I', 'was', 'lucky', 'enough']]\n",
+ "[['about', 'his', 'own', 'success', 'and', 'expert'], 'in', ['all', 'things', 'related', 'to', 'the', \"Southwest's\"]]\n",
+ "[['many', 'of', 'the', 'tribes', 'that', 'live'], 'in', ['the', 'Four', 'Corners', 'area', '(where', 'New']]\n",
+ "[['Nation', 'is', 'the', 'largest', 'Indian', 'tribe'], 'in', ['the', 'United', 'States,', 'with', 'almost', '300,000']]\n",
+ "[['members.', 'About', '180,000', 'of', 'them', 'live'], 'in', ['the', 'tribal', 'homeland,', 'which', 'covers', 'about']]\n",
+ "[['which', 'covers', 'about', '27,000', 'square', 'miles'], 'in', ['Arizona,', 'Utah', 'and', 'New', 'Mexico.', 'Hillerman']]\n",
+ "[['bones', 'of', 'the', 'Earth', 'and', 'where,'], 'in', ['the', \"McDonald's\", 'in', 'the', 'town', 'of']]\n",
+ "[['Earth', 'and', 'where,', 'in', 'the', \"McDonald's\"], 'in', ['the', 'town', 'of', 'Window', 'Rock,', 'Ariz.,']]\n",
+ "[['the', 'ideal', 'of', 'harmony,', 'or', '\"walking'], 'in', ['beauty\"', 'with', 'everything', 'around', 'you', 'and']]\n",
+ "[['through', 'long', 'experience.', 'He', 'was', 'born'], 'in', ['the', 'Indian', 'Territory,', 'in', 'Sacred', 'Heart,']]\n",
+ "[['was', 'born', 'in', 'the', 'Indian', 'Territory,'], 'in', ['Sacred', 'Heart,', 'Okla.,', 'founded', 'as', 'a']]\n",
+ "[['schools.', 'Hillerman', 'quit', 'college', 'to', 'fight'], 'in', ['World', 'War', 'II,', 'returning', 'with', 'a']]\n",
+ "[['the', 'University', 'of', 'New', 'Mexico,', 'retiring'], 'in', ['1987.', 'He', 'was', 'in', 'his', '40s']]\n",
+ "[['Mexico,', 'retiring', 'in', '1987.', 'He', 'was'], 'in', ['his', '40s', 'when', 'he', 'wrote', 'his']]\n",
+ "[['no-nonsense', 'rationalist', 'with', 'a', \"master's\", 'degree'], 'in', ['anthropology', 'and', 'a', 'cynical', 'view', 'of']]\n",
+ "[['considers', 'Navajo', 'superstitions.', 'From', 'the', 'first,'], 'in', ['The', 'Blessing', 'Way,', 'Hillerman', 'skillfully', 'interwove']]\n",
+ "[['Hillerman', 'featured', 'Leaphorn', 'and', 'Chee', 'separately'], 'in', ['some', 'novels', 'and', 'in', 'others', 'brought']]\n",
+ "[['Chee', 'separately', 'in', 'some', 'novels', 'and'], 'in', ['others', 'brought', 'them', 'together', 'on', 'cases.']]\n",
+ "[['last', 'published', 'novel,', 'The', 'Shape', 'Shifter'], 'in', ['2006,', 'featured', 'both', 'Leaphorn', 'and', 'Chee']]\n",
+ "[['2006,', 'featured', 'both', 'Leaphorn', 'and', 'Chee'], 'in', ['a', 'mystery', 'that', 'links', 'a', 'missing']]\n",
+ "[['by', 'the', 'Mystery', 'Writers', 'of', 'America'], 'in', ['1991.', 'But', 'he', 'said', 'that', 'his']]\n",
+ "[['the', 'Dineh', 'by', 'the', 'Navajo', 'Nation'], 'in', ['1987.', 'For', 'him,', 'bringing', 'the', 'culture']]\n",
+ "[['world', 'was', 'a', \"life's\", 'mission.', 'Live'], 'in', ['the', 'Southwest', 'for', 'a', 'while', 'and']]\n",
+ "[['the', 'story', 'about', 'tourists', 'driving', 'up'], 'in', ['a', 'grocery', 'store', 'parking', 'lot', 'in']]\n",
+ "[['in', 'a', 'grocery', 'store', 'parking', 'lot'], 'in', ['Window', 'Rock', 'or', 'Chinle,', 'Ariz.,', 'to']]\n",
+ "[['Ariz.,', 'to', 'a', 'Navajo', 'family', 'clad'], 'in', ['Wranglers', 'and', 'Nikes', 'and', 'Old', 'Navy']]\n",
+ "[['reached', 'at', 'cbancroftsptimes.com.', 'Cuban', 'clout', 'weakening'], 'in', ['South', 'Florida', 'MIAMI', 'Puerto', 'Rican-born', 'chef']]\n",
+ "[['used', 'to', 'be', 'a', 'Republican,', 'voting'], 'in', ['solidarity', 'with', 'the', 'cause', 'of', 'Cuban']]\n",
+ "[['rejection', 'of', 'Diaz-Balart,', 'the', 'eight-term', 'incumbent'], 'in', ['the', '21st', 'District,', 'is', 'a', 'signal']]\n",
+ "[['on', 'three', 'key', 'congressional', 'seats', 'is'], 'in', ['serious', 'jeopardy.', 'The', 'races', 'in', 'the']]\n",
+ "[['is', 'in', 'serious', 'jeopardy.', 'The', 'races'], 'in', ['the', '18th,', '21st', 'and', '25th', 'districts']]\n",
+ "[['are', 'closer', 'than', 'they', 'have', 'been'], 'in', ['two', 'decades,', 'and', 'a', 'Democratic', 'win']]\n",
+ "[['two', 'decades,', 'and', 'a', 'Democratic', 'win'], 'in', ['any', 'one', 'of', 'them', 'would', 'not']]\n",
+ "[['Cuba.', '\"We', 'are', 'witnessing', 'a', 'revolution'], 'in', ['South', 'Florida', 'politics,\"', 'said', 'Fernand', 'Amandi,']]\n",
+ "[['Associates,', 'a', 'leading', 'Hispanic', 'polling', 'firm'], 'in', ['Miami', 'that', 'works', 'with', 'Democratic', 'candidates.']]\n",
+ "[['Party', 'has', 'a', 'strong', 'presidential', 'contender'], 'in', ['Barack', 'Obama.', 'The', 'local', 'candidates', 'are']]\n",
+ "[['\"Cuba', 'is', 'not', 'the', 'driving', 'force'], 'in', ['this', 'election,', \"it's\", 'the', 'economy,\"', 'said']]\n",
+ "[['double', 'digit', 'margins', 'of', '16-18', 'percent'], 'in', ['2006.', 'Defeat', 'for', 'either', 'of', 'them']]\n",
+ "[['11', 'points', 'when', 'the', 'campaign', 'began'], 'in', ['January.', 'Mario', 'Diaz-Balart,', '47,', 'also', 'has']]\n",
+ "[['an', 'easier', 'time', 'defending', 'her', 'seat'], 'in', ['the', '18th', 'District,', 'which', 'includes', 'Miami']]\n",
+ "[['and', 'television,', 'a', 'first', 'for', 'Democrats'], 'in', ['South', 'Florida.', 'The', 'ads', 'have', 'countered']]\n",
+ "[['countered', 'attacks', 'from', 'Republican-leaning', 'Spanish-language', 'radio'], 'in', ['Miami', 'that', 'have', 'branded', 'them', 'as']]\n",
+ "[['of', 'Corruption\"', 'portrays', 'Martinez', 'as', 'mired'], 'in', ['repeated', 'scandals,', 'including', 'a', '1991', 'public']]\n",
+ "[['case', 'for', 'which', 'he', 'was', 'convicted'], 'in', ['federal', 'court.', 'The', 'verdict', 'was', 'later']]\n",
+ "[['later', 'overturned', 'and', 'subsequent', 'retrials', 'ended'], 'in', ['hung', 'juries.', 'Martinez', 'hit', 'back', 'with']]\n",
+ "[['Diaz-Balart', 'to', 'a', 'suitcase', 'with', '$50,000'], 'in', ['illegal', 'campaign', 'contributions', 'from', 'a', 'crooked']]\n",
+ "[['Congressional', 'Committee', 'has', 'responded', 'with', '$600,000'], 'in', ['advertising.', '\"We', 'feel', 'good', 'about', 'where']]\n",
+ "[['dadamssptimes.com.', 'REPUBLICAN', 'SLIDE', 'Voter', 'registration', 'figures'], 'in', ['all', 'three', 'Congressional', 'districts', 'show', 'an']]\n",
+ "[['an', 'eroding', 'Republican', 'advantage.', 'Since', '2006,'], 'in', ['the', '18th,', 'the', 'lead', 'has', 'shrunk']]\n",
+ "[['is', 'now', '10,543,', 'down', 'from', '28,146'], 'in', ['2006.', 'In', 'the', '25th,', 'the', 'Republican']]\n",
+ "[['going', 'to', 'come', 'very', 'near', 'Earth'], 'in', ['2029', 'but', 'that', 'it', \"isn't\", 'going']]\n",
+ "[['orbit.', 'And', 'if', 'it', 'alters', 'it'], 'in', ['such', 'a', 'way', 'that', 'it', 'passes']]\n",
+ "[['enough', 'that', 'on', 'its', 'next', 'pass,'], 'in', ['2036,', 'it', 'will', 'hit', 'us.', 'We']]\n",
+ "[['and', 'how', 'the', 'solutions', \"we've\", 'seen'], 'in', ['the', 'movies', 'probably', \"wouldn't\", 'work.', 'But']]\n",
+ "[['might.', \"Plait's\", 'book', 'is', 'the', 'latest'], 'in', ['the', 'genre', 'of', 'science', 'made', 'easy']]\n",
+ "[['elegant', 'a', 'writer', 'as', 'Bill', 'Bryson'], 'in', ['a', 'similar', 'book,', 'A', 'Short', 'History']]\n",
+ "[['if', 'a', 'supernova', 'were', 'to', 'occur'], 'in', ['our', 'solar', 'neighborhood', '(bad', 'news),', 'gamma']]\n",
+ "[['ago', 'we', 'were', 'shunned.', 'Now', \"we're\"], 'in', ['the', 'middle', 'of', 'the', 'route', 'to']]\n",
+ "[['the', \"state's\", 'reputation', 'as', 'a', 'kingmaker'], 'in', ['presidential', 'politics.', '\"Selfish,\"', 'snaps', 'state', 'Democratic']]\n",
+ "[['Eight', 'Republican', 'presidential', 'contenders', 'square', 'off'], 'in', ['a', 'CNN/YouTube', 'debate', 'at', 'St.', \"Petersburg's\"]]\n",
+ "[['There', 'was', 'no', 'talking', 'snowman', 'as'], 'in', ['a', 'previous', 'YouTube', 'debate,', 'but', 'a']]\n",
+ "[['Jan.', '29:', 'McCain', 'wins', 'the', 'primary'], 'in', ['Florida,', 'where', 'Republican', 'voters', 'also', 'deliver']]\n",
+ "[['now', \"McCain's,\", 'while', 'cracks', 'are', 'evident'], 'in', [\"Obama's\", 'Florida', 'base.', 'Analysis:', \"Giuliani's\", 'post-9/11']]\n",
+ "[['boycott', 'of', 'Florida', 'with', 'a', 'rally'], 'in', ['Tampa.', 'On', 'a', 'few', \"days'\", 'notice']]\n",
+ "[['to', 'say', 'he', 'decided', 'to', '\"go'], 'in', ['a', 'different', 'direction.\"', 'Analysis:', 'As', 'later']]\n",
+ "[['to', \"McCain's\", 'hopes.', 'Sept.', '16:', 'Campaigning'], 'in', ['Jacksonville,', 'McCain', 'declares:', '\"I', 'believe,', 'still,']]\n",
+ "[['crowd', 'estimated', 'as', 'high', 'as', '60,000'], 'in', ['The', 'Villages,', 'the', \"boomers'\", 'mega-retirement', 'community']]\n",
+ "[['the', 'reverse', 'of', 'what', 'usually', 'happens'], 'in', ['Florida', 'races.', 'Sept.', '30:', 'State', 'Republican']]\n",
+ "[['average', 'of', 'polls', 'shows', 'Obama', 'ahead'], 'in', ['Florida', 'for', 'the', 'first', 'time.', 'Analysis:']]\n",
+ "[['that', 'Democrats', 'had', 'a', '2-to-1', 'advantage'], 'in', ['registering', 'voters', 'in', 'Florida', 'in', '2008']]\n",
+ "[['a', '2-to-1', 'advantage', 'in', 'registering', 'voters'], 'in', ['Florida', 'in', '2008', 'and', 'signed', 'up']]\n",
+ "[['advantage', 'in', 'registering', 'voters', 'in', 'Florida'], 'in', ['2008', 'and', 'signed', 'up', '657,775', 'more']]\n",
+ "[['Analysis:', 'Democrats', 'have', 'a', 'big', 'advantage'], 'in', ['new', 'voter', 'registration', 'in', 'a', 'state']]\n",
+ "[['big', 'advantage', 'in', 'new', 'voter', 'registration'], 'in', ['a', 'state', 'with', 'a', 'history', 'of']]\n",
+ "[[\"Dante's\", 'Inferno', 'look', 'like', 'a', 'walk'], 'in', ['the', 'park.', 'And', 'though', 'they', 'could']]\n",
+ "[['whether', 'you', 'got', 'the', 'full', 'treatment,'], 'in', ['which', 'most', 'of', 'the', 'organs', 'were']]\n",
+ "[['organs', 'were', 'removed', 'and', 'everything', 'encased'], 'in', ['resin,', 'or', 'a', 'simple', 'wash-and-wrap', 'job,']]\n",
+ "[['control', 'thought', 'and', 'emotion,', 'was', 'left'], 'in', ['the', 'body.', 'The', 'brain,', 'not', 'believed']]\n",
+ "[['of', 'means;', 'his', 'remains', 'are', 'stored'], 'in', ['gold-washed', 'linen', 'and', 'his', 'portrait,', 'painted']]\n",
+ "[['gold-washed', 'linen', 'and', 'his', 'portrait,', 'painted'], 'in', ['encaustic,', 'is', 'fitted', 'on', 'his', 'head.']]\n",
+ "[['time.', 'The', 'goal', 'was', 'to', 'arrive'], 'in', ['the', 'netherworld', 'beneath', 'the', 'earth,', 'undertake']]\n",
+ "[['of', 'the', 'journey,', 'a', 'cheat', 'sheet'], 'in', ['case', 'they', 'were', 'unprepared.', 'Examples', 'of']]\n",
+ "[['unprepared.', 'Examples', 'of', 'these', 'objects', 'are'], 'in', ['the', 'show', 'along', 'with', 'a', 'papyrus']]\n",
+ "[['and', 'safe', 'haven', 'for', 'the', 'soul'], 'in', ['the', 'netherworld.', 'Its', 'importance', 'was', 'based']]\n",
+ "[['(sometimes', 'spelled', 'Set)', 'by', 'sealing', 'him'], 'in', ['a', 'coffin', '(made', 'to', 'fit', 'his']]\n",
+ "[['his', 'body', 'perfectly)', 'and', 'throwing', 'it'], 'in', ['the', 'Nile.', \"Osiris'\", 'wife', 'Isis', 'found']]\n",
+ "[['the', 'exigencies', 'of', 'life', 'and', 'aspirations'], 'in', ['death.', 'Because', 'so', 'much', 'time', 'is']]\n",
+ "[['to', 'make', 'our', 'eyes', 'glaze', 'over'], 'in', ['many', 'antiquities', 'shows.', 'The', 'wall', 'labels']]\n",
+ "[['done', 'and', 'the', 'catalog,', 'for', 'sale'], 'in', ['the', 'museum', 'store,', 'has', 'a', 'wonderful']]\n",
+ "[['may', 'feel', 'as', 'if', \"you're\", 'drowning'], 'in', ['political', 'media.', 'Believe', 'me,', 'I', 'feel']]\n",
+ "[['Tyndall.', '2.', 'Instant', 'fact-checking', 'emerges.', 'Back'], 'in', ['2004,', 'when', 'the', 'Swift', 'Boat', 'Veterans']]\n",
+ "[['positive', 'coverage.', 'A', 'Project', 'for', 'Excellence'], 'in', ['Journalism', 'study', 'discovered', 'McCain', 'got', 'more']]\n",
+ "[['sites', 'HuffingtonPost.com,', 'Politico.com', 'and', 'DrudgeReport.com', 'saw'], 'in', ['the', 'past', 'year', 'audience', 'increases', 'of']]\n",
+ "[['percent,', 'respectively.', 'Top', 'political', 'Web', 'sites'], 'in', ['September,', 'according', 'to', 'comScore.', 'HuffingtonPost.com,', '4.5-million']]\n",
+ "[['Coast', 'and', 'interior', 'West', 'states', 'Sunday'], 'in', ['the', 'wake', 'of', 'a', 'cold', 'front.']]\n",
+ "[['air', 'will', 'spread', 'over', 'the', 'Northeast'], 'in', ['the', 'wake', 'of', 'a', 'front.', 'In']]\n",
+ "[['as', 'a', 'result', 'of', 'the', 'change'], 'in', ['time.', 'Lew', \"Oliver's\", 'McCain-Palin', 'T-shirt', 'advertised']]\n",
+ "[['advertised', 'his', 'intentions,', 'and', 'the', 'woman'], 'in', ['the', 'SUV', 'gave', 'him', 'an', 'opening.']]\n",
+ "[['estate', 'lawyer', 'who', 'walks', 'and', 'talks'], 'in', ['bursts,', 'is', 'the', 'kind', 'of', 'party']]\n",
+ "[['Bush', 'to', 'victory', 'here', 'and', 'statewide'], 'in', ['2000', 'and', '2004.', 'But', 'this', 'year,']]\n",
+ "[['agrees.', 'And', 'like', 'many', 'Republicans', 'trying'], 'in', ['the', 'final', 'days', 'to', 'push', 'their']]\n",
+ "[['he', 'says', 'he', 'has', 'found', 'inspiration'], 'in', ['McCain,', 'the', 'perseverant', 'prisoner', 'of', 'war']]\n",
+ "[['said', 'for', 'Oliver.', 'Even', 'his', 'counterparts'], 'in', ['the', 'local', 'Democratic', 'Party', 'describe', 'him']]\n",
+ "[['as', 'one', 'of', 'the', 'best', 'organizers'], 'in', ['Florida,', 'a', 'tireless', 'terrier', 'of', 'campaigns']]\n",
+ "[['four', 'of', 'the', 'county', \"party's\", 'meetings'], 'in', ['22', 'years.', 'Oliver', 'claims', 'to', 'dislike']]\n",
+ "[['said', 'that', 'the', 'polls', 'were', 'close'], 'in', ['Florida', 'and', 'that', 'slight', 'movement', 'could']]\n",
+ "[['shooting', 'someone,', \"he'd\", 'still', 'be', 'up'], 'in', ['the', 'polls.\"', 'What', 'really', 'frustrated', 'him,']]\n",
+ "[['McCain', 'supporters.', 'It', 'can', 'be', 'seen'], 'in', ['the', 'anti-Obama', 'book', 'at', 'the', 'McCain']]\n",
+ "[['anti-Obama', 'book', 'at', 'the', 'McCain', 'office'], 'in', ['Altamonte', 'Springs;', 'or', 'in', 'Maitland,', 'where']]\n",
+ "[['McCain', 'office', 'in', 'Altamonte', 'Springs;', 'or'], 'in', ['Maitland,', 'where', 'someone', 'posted', 'a', 'letter']]\n",
+ "[['no', 'such', 'language', 'was', 'visible.', 'But'], 'in', ['an', 'unscientific', 'show', 'of', 'hands', 'among']]\n",
+ "[['office,', 'speeding', 'into', 'the', 'campaign', 'headquarters'], 'in', ['Nike', 'running', 'sneakers', 'and', 'jeans,', 'with']]\n",
+ "[['if', 'they', 'had', 'received', 'and', 'sent'], 'in', ['their', 'absentee', 'ballots', 'to', 'the', 'get-out-the-vote']]\n",
+ "[['polls,', 'has', 'been', 'the', \"party's\", 'focus'], 'in', ['Florida', 'for', 'decades.', 'Oliver', 'said', 'that']]\n",
+ "[['decades.', 'Oliver', 'said', 'that', 'it', 'works'], 'in', ['part', 'because', 'Republicans', 'tend', 'to', 'be']]\n",
+ "[['that', '81', 'percent', 'of', 'registered', 'Republicans'], 'in', ['Orange', 'County', 'voted', 'in', '2004,', 'compared']]\n",
+ "[['registered', 'Republicans', 'in', 'Orange', 'County', 'voted'], 'in', ['2004,', 'compared', 'with', 'about', '75', 'percent']]\n",
+ "[['grabbed', 'a', 'list', 'of', '181', 'addresses'], 'in', ['Baldwin', 'Park,', 'an', 'area', 'of', 'working']]\n",
+ "[['happy', 'to', 'see', 'fellow', 'McCain', 'supporters'], 'in', ['the', 'neighborhood.', 'The', 'second', 'voter', 'he']]\n",
+ "[['Obama,', 'he', 'encountered', 'two', 'of', 'them'], 'in', ['a', 'row.', 'Beth', 'Moriarty', 'said', 'that']]\n",
+ "[['62-year-old', 'husband,', 'for', 'the', 'first', 'time'], 'in', ['his', 'life,', 'was', 'going', 'to', 'vote']]\n",
+ "[['McCain.', 'A', 'blue', 'Obama', 'sign', 'fluttered'], 'in', ['her', 'lawn.', 'She', 'seemed', 'unsure', 'of']]\n",
+ "[['more', 'to', 'the', 'story,', 'at', 'least'], 'in', ['the', 'view', 'of', \"Iceland's\", 'government,', 'its']]\n",
+ "[['foreign', 'minister,', 'Ingibjorg', 'Solrun', 'Gisladottir,', 'said'], 'in', ['an', 'interview,', 'describing', 'her', 'horror', 'at']]\n",
+ "[['others.', 'In', 'a', 'volatile', 'economic', 'climate,'], 'in', ['which', 'appearance', 'matters', 'almost', 'as', 'much']]\n",
+ "[['of', 'proportion.\"', 'In', 'a', 'recent', 'speech'], 'in', ['Beijing,', 'Howard', 'Davies,', 'a', 'former', 'deputy']]\n",
+ "[['freezing', 'the', 'assets', 'of', 'Icelandic', 'companies'], 'in', ['the', 'U.K.', 'where', 'we', 'can.\"', \"Iceland's\"]]\n",
+ "[['to', 'Britain,', 'Sverrir', 'H.', 'Gunnlaugsson,', 'said'], 'in', ['an', 'interview', 'that', 'this', 'statement', 'was']]\n",
+ "[['particularly', 'damaging.', '\"There', 'was', 'a', 'perception'], 'in', ['the', 'U.K.', 'press', 'and', 'among', 'suppliers']]\n",
+ "[['by', 'their', 'foreign', 'customers.', 'Many', 'people'], 'in', ['Iceland', 'are', 'also', 'furious', 'about', 'what']]\n",
+ "[['writer', 'for', 'Icelandic', 'Financial', 'News,', 'said'], 'in', ['an', 'interview.', '\"This', 'really', 'was', 'the']]\n",
+ "[['--', 'and', 'may', 'never.', 'Iceland', 'is'], 'in', ['line', 'to', 'receive', 'a', '$2', 'billion']]\n",
+ "[['--', 'to', 'compensate', 'customers', 'with', 'accounts'], 'in', ['Icesave,', \"Landsbanki's\", 'British', 'branch.', 'Under', 'European']]\n",
+ "[['$25,000)', 'to', 'each', 'individual', 'account', 'holder'], 'in', ['Icesave.', 'But', 'the', 'total,', 'Gisladottir,', 'the']]\n",
+ "[['head', 'as', 'the', 'reparations', 'Germany', 'faced'], 'in', ['the', 'Treaty', 'of', 'Versailles', 'after', 'the']]\n",
+ "[['the', 'krona,', 'has', 'declined', '44', 'percent'], 'in', ['the', 'last', 'year.', 'Danielsson,', 'the', 'economist,']]\n",
+ "[['crisis,\"', 'she', 'said.', '\"We', \"haven't\", 'been'], 'in', ['this', 'situation', 'for,', 'probably,', 'ever.', 'We']]\n",
+ "[['executive', 'at', 'an', 'international', 'relocation', 'service'], 'in', ['Louisville,', 'Ky.', '\"Last', 'time', 'at', 'this']]\n",
+ "[['bright', 'and', 'has', 'been', 'very', 'steady'], 'in', ['this', 'campaign.\"', 'He', 'added', 'that', 'it']]\n",
+ "[['red', 'and', 'blue,', 'Doug', 'Finke', 'resides'], 'in', ['a', 'gray', 'state,', 'along', 'with', 'a']]\n",
+ "[['consumers', 'of', 'democracy.', 'Doug', 'Finke', 'lives'], 'in', ['a', 'red', 'state,', 'Kentucky,', 'with', 'his']]\n",
+ "[['as', 'of', 'Sunday.', 'While', 'many', 'people'], 'in', ['this', 'campaign-saturated', 'country', 'are', 'relieved', 'that']]\n",
+ "[['Barack', 'Obama', 'after', 'he', 'defeated', 'Clinton'], 'in', ['the', 'Democratic', 'primaries.', 'But', 'the', \"Clintons'\"]]\n",
+ "[['just', 'as', 'he', 'did', 'from', 'one'], 'in', ['Greece.', 'Would', 'he', 'really', 'flip', 'a']]\n",
+ "[['Wolpo,', 'a', 'Brooklyn', 'native', 'who', 'lives'], 'in', ['Palm', 'Beach', 'Gardens,', 'Fla.', 'She', 'was']]\n",
+ "[['That', 'was', 'the', 'Democrats', 'Al', 'Gore'], 'in', ['2000', 'and', 'John', 'Kerry', 'in', '2004.']]\n",
+ "[['Gore', 'in', '2000', 'and', 'John', 'Kerry'], 'in', ['2004.', 'Obama?', '\"I', 'have', 'great', 'misgivings,\"']]\n",
+ "[['First,', 'she', 'is', 'a', 'strong', 'believer'], 'in', ['abortion', 'rights', '(which', 'McCain', 'is', 'not.)']]\n",
+ "[['not.)', '\"The', 'government', 'does', 'not', 'belong'], 'in', ['our', 'bedroom,\"', 'she', 'said.', 'And', 'then']]\n",
+ "[['is', 'just', 'like', 'Bush.', '\"McCain', 'knows'], 'in', ['his', 'heart', 'that', 'Bush', 'is', 'a']]\n",
+ "[['that', 'her', 'youngest', 'son,', 'who', 'is'], 'in', ['his', '40s,', 'suffered', 'a', 'stroke', 'last']]\n",
+ "[['said,', 'and', 'that', 'puts', 'everything', 'else'], 'in', ['perspective.', '\"This', 'other', 'thing', 'is', 'just']]\n",
+ "[['said.', 'On', 'a', 'rainy', 'Friday', 'evening'], 'in', ['early', 'August,', 'six', 'Taliban', 'fighters', 'attacked']]\n",
+ "[['Taliban', 'fighters', 'attacked', 'a', 'police', 'post'], 'in', ['a', 'village', 'in', 'Buner,', 'a', 'quiet']]\n",
+ "[['a', 'police', 'post', 'in', 'a', 'village'], 'in', ['Buner,', 'a', 'quiet', 'farming', 'valley', 'just']]\n",
+ "[['phone', 'showed', 'the', 'six', 'militants', 'lying'], 'in', ['the', 'dirt,', 'blood', 'oozing', 'from', 'their']]\n",
+ "[['their', 'tribal', 'strongholds.', 'Since', 'the', 'events'], 'in', ['Buner,', 'the', 'inspector', 'general', 'of', 'the']]\n",
+ "[['the', 'inspector', 'general', 'of', 'the', 'police'], 'in', ['the', 'North-West', 'Frontier', 'province,', 'Malik', 'Naveed']]\n",
+ "[['Malik', 'Naveed', 'Khan,', 'has', 'encouraged', 'citizens'], 'in', ['other', 'towns', 'and', 'villages', 'in', 'his']]\n",
+ "[['citizens', 'in', 'other', 'towns', 'and', 'villages'], 'in', ['his', 'realm', 'to', 'form', 'posses', 'of']]\n",
+ "[['laying', 'down', 'our', 'lives,\"', 'Khan', 'said'], 'in', ['an', 'interview', 'in', 'October.', '\"By', 'the']]\n",
+ "[['lives,\"', 'Khan', 'said', 'in', 'an', 'interview'], 'in', ['October.', '\"By', 'the', 'hundreds', 'the', 'police']]\n",
+ "[['the', 'Taliban.', 'The', 'local', 'police', 'chief'], 'in', ['the', 'Buner', 'district,', 'Zubair', 'Shah,', 'a']]\n",
+ "[['threat', 'that', 'is', 'more', 'deeply', 'ensconced'], 'in', ['communities', 'all', 'over', 'Pakistan', 'than', 'had']]\n",
+ "[['armed', 'militants.', 'Currently,', 'the', 'police', 'officers'], 'in', ['Buner', 'earn', 'about', 'one-quarter', 'the', 'monthly']]\n",
+ "[['Such', 'militias', 'have', 'a', 'long', 'tradition'], 'in', ['tribal', 'society.', 'But', 'even', 'there,', 'they']]\n",
+ "[['they', 'have', 'met', 'with', 'little', 'success'], 'in', ['the', 'current', 'conflict.', 'By', 'contrast,', 'posses']]\n",
+ "[['By', 'contrast,', 'posses', 'like', 'the', 'one'], 'in', ['Buner', 'have', 'not', 'been', 'tried', 'before']]\n",
+ "[['Buner', 'have', 'not', 'been', 'tried', 'before'], 'in', ['the', 'settled', 'parts', 'of', 'Pakistan', 'outside']]\n",
+ "[['tribal', 'areas,', 'Khan', 'said.', 'They', 'have'], 'in', ['any', 'case', 'become', 'a', 'necessary', 'tool']]\n",
+ "[['peace.', 'The', 'citizens', 'of', 'Buner,', 'interviewed'], 'in', ['late', 'October', 'after', 'the', 'police', 'arranged']]\n",
+ "[['army', 'and', 'militants', 'have', 'been', 'locked'], 'in', ['heavy', 'fighting.', 'Civilian', 'casualties', 'are', 'high.']]\n",
+ "[['of', 'the', 'police', 'force', 'has', 'deserted'], 'in', ['Swat,', 'and', 'some', 'of', 'the', 'deserters']]\n",
+ "[['200,000', 'people', 'have', 'fled,', 'becoming', 'refugees'], 'in', ['appalling', 'conditions', 'in', 'makeshift', 'camps.', 'The']]\n",
+ "[['fled,', 'becoming', 'refugees', 'in', 'appalling', 'conditions'], 'in', ['makeshift', 'camps.', 'The', 'villagers', 'in', 'Buner']]\n",
+ "[['conditions', 'in', 'makeshift', 'camps.', 'The', 'villagers'], 'in', ['Buner', 'say', 'they', 'would', 'prefer', 'to']]\n",
+ "[['residents', 'is', 'heartening,', 'Shah,', 'an', 'expert'], 'in', ['counterterrorism,', 'understands', 'better', 'than', 'most', 'Pakistanis']]\n",
+ "[['investigative', 'work', 'with', 'the', 'United', 'Nations'], 'in', ['Bosnia', 'and', 'was', 'selected', 'by', 'the']]\n",
+ "[['was', 'selected', 'by', 'the', 'U.S.', 'Consulate'], 'in', ['Peshawar', 'for', 'a', 'month-long', 'leadership', 'program']]\n",
+ "[['Peshawar', 'for', 'a', 'month-long', 'leadership', 'program'], 'in', ['the', 'United', 'States.', 'He', 'recently', 'spent']]\n",
+ "[['States.', 'He', 'recently', 'spent', 'a', 'year'], 'in', ['Australia', 'studying', 'transnational', 'terrorism.', 'As', 'in']]\n",
+ "[['in', 'Australia', 'studying', 'transnational', 'terrorism.', 'As'], 'in', ['many', 'areas', 'of', 'Pakistan', '--', 'from']]\n",
+ "[['to', 'Islamabad,', 'and', 'from', 'rural', 'districts'], 'in', ['the', 'north', 'to', 'the', 'cultural', 'capital,']]\n",
+ "[['the', 'Taliban', 'have', 'sympathizers', 'and', 'workers'], 'in', ['Buner', 'who', 'lie', 'low', 'in', 'sleeper']]\n",
+ "[['workers', 'in', 'Buner', 'who', 'lie', 'low'], 'in', ['sleeper', 'cells', 'that', 'can', 'be', 'easily']]\n",
+ "[['methodically', 'delivered', 'into', 'Buner', 'over', 'time'], 'in', ['small', 'parcels', 'by', 'motorbike.', 'One', 'of']]\n",
+ "[['motorbike.', 'One', 'of', 'the', 'men', 'arrested'], 'in', ['the', 'case', 'had', 'been', 'friendly', 'with']]\n",
+ "[['the', 'police.', 'Many', 'of', 'the', 'villagers'], 'in', ['Buner', 'had', 'relatives', 'working', 'abroad', '--']]\n",
+ "[['Buner', 'had', 'relatives', 'working', 'abroad', '--'], 'in', ['Malaysia,', 'in', 'Dubai', 'and', 'as', 'taxi']]\n",
+ "[['relatives', 'working', 'abroad', '--', 'in', 'Malaysia,'], 'in', ['Dubai', 'and', 'as', 'taxi', 'drivers', 'in']]\n",
+ "[['in', 'Dubai', 'and', 'as', 'taxi', 'drivers'], 'in', ['Arlington,', 'Va.', '--', 'who', 'sent', 'remittances']]\n",
+ "[['be', 'mobilized.\"', 'Facing', 'labor', 'shortages', 'back'], 'in', ['1990', 'but', 'ever', 'wary', 'of', 'allowing']]\n",
+ "[['1990', 'but', 'ever', 'wary', 'of', 'allowing'], 'in', ['foreigners,', 'Japan', 'made', 'an', 'exception', 'for']]\n",
+ "[['to', 'Brazil', 'would', 'fit', 'more', 'easily'], 'in', ['a', 'society', 'fiercely', 'closed', 'to', 'outsiders,']]\n",
+ "[['one,', 'the', 'number', 'of', 'Japanese-Brazilian', 'workers'], 'in', ['Japan', 'has', 'kept', 'growing.', 'They', 'are']]\n",
+ "[['has', 'kept', 'growing.', 'They', 'are', 'clustered'], 'in', ['industrial', 'regions', 'dotted', 'with', 'factories', 'supplying']]\n",
+ "[['Toyota,', 'whose', 'headquarters', 'gave', 'this', 'city'], 'in', ['central', 'Japan', 'its', 'name.', 'But', 'perhaps']]\n",
+ "[['Japan', 'its', 'name.', 'But', 'perhaps', 'nowhere'], 'in', ['this', 'country', 'do', 'Japanese', 'and', 'Japanese-Brazilians']]\n",
+ "[['rub', 'shoulders', 'with', 'such', 'intensity', 'as'], 'in', ['a', 'public', 'housing', 'complex', 'here', 'called']]\n",
+ "[['complex', 'here', 'called', 'Homi', 'Estate.', 'Built'], 'in', ['the', '1970s', 'for', 'young', 'Japanese', 'families,']]\n",
+ "[['community', 'leader,', 'said,', '\"I', 'never', 'imagined'], 'in', ['my', 'wildest', 'dreams', 'that', 'this', 'would']]\n",
+ "[['temporary', 'workers', 'from', 'China', 'and', 'elsewhere'], 'in', ['Asia.', 'As', 'the', 'demographic', 'squeeze', 'grows']]\n",
+ "[['--', 'whose', 'children', 'are', 'growing', 'up'], 'in', ['Japan', 'and,', 'in', 'many', 'cases,', 'coming']]\n",
+ "[['are', 'growing', 'up', 'in', 'Japan', 'and,'], 'in', ['many', 'cases,', 'coming', 'of', 'age', 'here']]\n",
+ "[['residence,', 'while', 'the', 'others', 'can', 'stay'], 'in', ['Japan', 'indefinitely.', 'Children', 'born', 'in', 'Japan']]\n",
+ "[['stay', 'in', 'Japan', 'indefinitely.', 'Children', 'born'], 'in', ['Japan', 'of', 'foreign', 'parents', 'do', 'not']]\n",
+ "[['on', 'closer', 'inspection,', 'street', 'signs', 'are'], 'in', ['Japanese', 'and', 'Portuguese.', 'In', 'the', \"community's\"]]\n",
+ "[['a', 'kind', 'of', 'vandalism', 'rarely', 'seen'], 'in', ['Japan.', 'And', 'parking', 'lots', 'contain', 'cars']]\n",
+ "[['were', 'surrounded', 'by', 'foreigners,', 'especially', 'those'], 'in', ['rental', 'apartments,', 'some', 'Japanese', 'just', 'got']]\n",
+ "[['are', 'offered,', 'as', 'well', 'as', 'help'], 'in', ['other', 'subjects.', 'Partly', 'as', 'a', 'result,']]\n",
+ "[['not', 'drop', 'out,', 'a', 'common', 'problem'], 'in', ['other', 'public', 'schools,', 'where', 'foreign', 'children']]\n",
+ "[['this', 'house', 'for', 'him,\"', 'Wada', 'said'], 'in', ['the', \"couple's\", 'living', 'room.', '\"Nicholas', 'says']]\n",
+ "[['to', 'go', 'to', 'Brazil.\"', '\"He', 'thinks'], 'in', ['Japanese,\"', 'Wada,', 'a', 'truck', 'driver,', 'added.']]\n",
+ "[['now,', \"we'll\", 'say', \"we're\", 'going', 'back'], 'in', ['two', 'to', 'three', 'years,\"', 'Wada', 'said.']]\n",
+ "[['about', 'how', 'long', 'they', 'will', 'stay'], 'in', ['Japan,', 'many', 'Japanese-Brazilians', 'send', 'their', 'children']]\n",
+ "[['Of', 'the', 'nearly', '33,500', 'Japanese-Brazilian', 'children'], 'in', ['Japan', 'between', '5', 'and', '14', 'years']]\n",
+ "[['of', 'compulsory', 'education,', 'about', '10,000', 'are'], 'in', ['Japanese', 'schools', 'receiving', 'remedial', 'Japanese', 'lessons,']]\n",
+ "[['Most', 'of', 'the', 'rest', 'are', 'likely'], 'in', ['Portuguese-language', 'schools', 'or', 'not', 'attending', 'school.']]\n",
+ "[['that', 'teaches', 'Japanese', 'to', 'Japanese-Brazilian', 'children'], 'in', ['Homi.', 'Even', 'if', 'they', 'intend', 'to']]\n",
+ "[['he', 'was', 'unable', 'to', 'express', 'himself'], 'in', ['Japanese.', 'He', 'said', 'he', 'understood', 'most']]\n",
+ "[['started', 'by', 'hiring', 'eight', 'Japanese-Brazilian', 'workers'], 'in', ['1995', 'and', 'now', 'has', '280,', 'or']]\n",
+ "[['contracts', 'and', 'hiring', 'a', 'Japanese-Brazilian', 'chef'], 'in', ['its', 'cafeteria', '--', 'to', 'retain', 'Japanese-Brazilians']]\n",
+ "[['Japanese-Brazilian', 'supermarket,', 'said', 'her', 'son,', 'now'], 'in', ['junior', 'high', 'school,', 'had', 'had', 'Japanese-Brazilian']]\n",
+ "[[\"won't\", 'want', 'to', 'leave.\"', 'Growing', 'up'], 'in', ['St.', 'Louis', 'in', 'the', '1950s', 'and']]\n",
+ "[['leave.\"', 'Growing', 'up', 'in', 'St.', 'Louis'], 'in', ['the', '1950s', 'and', \"'60s,\", 'Deddrick', 'Battle']]\n",
+ "[['up,', 'I', 'always', 'thought', 'they', 'put'], 'in', ['who', 'they', 'wanted', 'to', 'put', 'in.']]\n",
+ "[['according', 'to', 'dozens', 'of', 'interviews', 'conducted'], 'in', ['the', 'last', 'several', 'days', 'in', 'six']]\n",
+ "[['conducted', 'in', 'the', 'last', 'several', 'days'], 'in', ['six', 'states.', 'They', 'are', 'people', 'like']]\n",
+ "[['Wilcox,', '29,', 'who', 'registered', 'to', 'vote'], 'in', ['Jacksonville,', 'Fla.,', 'when', 'she', 'was', '18,']]\n",
+ "[['to', 'miss', 'out', 'on', 'their', 'part'], 'in', ['writing', 'what', 'could', 'be', 'a', 'new']]\n",
+ "[['Battle,', 'for', 'one,', 'remembers', 'growing', 'up'], 'in', ['the', 'Pruitt-Igoe', 'housing', 'project', 'in', 'St.']]\n",
+ "[['up', 'in', 'the', 'Pruitt-Igoe', 'housing', 'project'], 'in', ['St.', 'Louis', 'and', 'how', 'intimidated', 'the']]\n",
+ "[['registration', 'drives', 'and', 'new', 'early-voting', 'procedures'], 'in', ['many', 'states,', 'which', 'have', 'made', 'the']]\n",
+ "[['Center', 'for', 'Political', 'and', 'Economic', 'Studies'], 'in', ['Washington,', 'said', 'the', 'states', 'with', 'the']]\n",
+ "[['the', 'states', 'with', 'the', 'largest', 'increases'], 'in', ['early', 'voting', 'have', 'been', 'those', 'where']]\n",
+ "[['represented', 'a', 'quarter', 'of', 'all', 'voters'], 'in', ['the', '2004', 'presidential', 'election.', 'So', 'far']]\n",
+ "[['presidential', 'election.', 'So', 'far', 'this', 'year'], 'in', ['early', 'voting', 'alone,', 'they', 'make', 'up']]\n",
+ "[['been', 'the', 'single', 'most', 'anti-Iraq-war', 'group'], 'in', ['the', 'population.\"', 'He', 'added,', '\"Obama', 'is']]\n",
+ "[['question', 'of', 'Obama.\"', 'One', 'early', 'voter'], 'in', ['Georgia', 'was', 'Armento', 'Meredith,', '43,', 'who']]\n",
+ "[['was', 'Armento', 'Meredith,', '43,', 'who', 'waited'], 'in', ['line', 'for', 'two', 'hours', 'at', 'the']]\n",
+ "[['at', 'the', 'Fulton', 'County', 'Government', 'Building'], 'in', ['downtown', 'Atlanta', 'to', 'vote', 'for', 'the']]\n",
+ "[['be', 'a', 'level', 'of', 'black', 'participation'], 'in', ['the', 'electoral', 'process', 'that', 'is', 'higher']]\n",
+ "[['into', 'a', 'reinvigorated', 'spirit', 'of', 'democracy'], 'in', ['some', 'communities', 'where', 'it', 'has', 'been']]\n",
+ "[['said', 'Bob', 'Law,', '63,', 'an', 'activist'], 'in', ['New', 'York', 'City', 'and', 'former', 'radio']]\n",
+ "[['Jesse', \"Jackson's\", 'campaign', 'for', 'the', 'presidency'], 'in', ['1984,', 'the', 'first', 'time', 'a', 'black']]\n",
+ "[['was', 'a', 'serious', 'national', 'contender.', 'But'], 'in', ['the', 'years', 'since,', 'he', 'said,', \"blacks'\"]]\n",
+ "[['is', 'exactly', 'how', 'Battle,', 'the', 'janitor'], 'in', ['St.', 'Louis,', 'feels.', 'In', 'the', 'past,']]\n",
+ "[['the', 'feeling', 'that', 'they', 'are', 'participating'], 'in', ['what', 'could', 'become', 'a', 'touchstone', 'moment,']]\n",
+ "[['do', 'my', 'part', 'to', 'put', 'him'], 'in', ['the', 'office.', 'How', 'would', 'I', 'explain']]\n",
+ "[['him.\"', 'Timothy', 'Hairston,', '47,', 'a', 'bartender'], 'in', ['Brooklyn,', 'N.Y.,', 'who', 'has', 'never', 'voted']]\n",
+ "[['to', 'say', 'that', 'I', 'was', 'involved'], 'in', ['history', 'in', 'the', 'making,', 'that', 'I']]\n",
+ "[['that', 'I', 'was', 'involved', 'in', 'history'], 'in', ['the', 'making,', 'that', 'I', 'was', 'an']]\n",
+ "[['rooting', 'for', 'change', 'but', 'not', 'involved'], 'in', ['the', 'process', 'of', 'making', 'change.\"', 'He']]\n",
+ "[['vote', 'for,', 'I', 'think', 'every', 'once'], 'in', ['a', 'while', 'there', 'are', 'inspirational', 'moments']]\n",
+ "[['said', 'they', 'were', 'struck', 'by', 'something'], 'in', [\"Obama's\", 'life', 'or', 'what', 'he', 'stands']]\n",
+ "[['some', 'of', 'her', 'own', 'biography', 'reflected'], 'in', [\"Obama's.\", 'They', 'were', 'both', 'born', 'to']]\n",
+ "[['and', 'raised', 'mostly', 'by', 'their', 'grandparents'], 'in', ['modest', 'settings.', 'Wilcox', 'said', 'she', 'felt']]\n",
+ "[['had', 'a', 'lot', 'of', 'life', 'features'], 'in', ['common,\"', 'she', 'said.', '\"It', 'gave', 'me']]\n",
+ "[['Bianca', 'Williams,', '20,', 'a', 'hair', 'stylist'], 'in', ['Brooklyn,', 'said', 'the', 'campaign', 'had', 'changed']]\n",
+ "[['changed', 'her', 'life.', 'After', 'seeing', 'Obama'], 'in', ['the', 'first', 'debate,', 'she', 'decided', 'to']]\n",
+ "[['also', 'true', 'for', 'Matthews,', 'who', 'works'], 'in', ['a', 'Chicago', 'coffee', 'shop.', 'Not', 'too']]\n",
+ "[['to', 'his', 'mother', 'about', 'having', 'voted'], 'in', ['an', 'election', 'just', 'so', 'that', 'she']]\n",
+ "[['has', 'followed', 'coverage', 'of', 'the', 'candidates'], 'in', ['the', 'local', 'papers.', 'He', 'voted', 'in']]\n",
+ "[['in', 'the', 'local', 'papers.', 'He', 'voted'], 'in', ['the', 'primary,', 'and', 'he', 'cannot', 'wait']]\n",
+ "[['Darnell', 'Harris', 'of', 'Cleveland,', 'a', 'private'], 'in', ['the', 'Marines,', 'the', 'legal', 'voting', 'age']]\n",
+ "[['Barack', 'Obama.', 'I', 'could', 'be', 'standing'], 'in', ['line', 'at', 'a', 'grocery', 'and', \"somebody's\"]]\n",
+ "[['said.', '\"People', 'come', 'up', 'to', 'me'], 'in', ['the', 'grocery', 'store', 'and', 'say,', \"'How\"]]\n",
+ "[['investment', 'adviser', 'and', 'school', 'board', 'member'], 'in', ['Kenosha,', 'Wis.', 'On', 'a', 'snowy', 'day']]\n",
+ "[['two', 'years', 'ago,', 'the', 'school', 'board'], 'in', ['Whitefish', 'Bay,', 'Wis.,', 'gathered', 'to', 'discuss']]\n",
+ "[['how', 'to', 'plug', 'a', 'gaping', 'hole'], 'in', ['the', \"teachers'\", 'retirement', 'plan.', 'It', 'turned']]\n",
+ "[['school', 'districts', 'ultimately', 'invested', '$200', 'million'], 'in', [\"Noack's\", 'deal,', 'most', 'of', 'it', 'borrowed']]\n",
+ "[['system', 'are', 'among', 'the', 'many', 'players'], 'in', ['a', 'financial', 'fiasco', 'that', 'has', 'ricocheted']]\n",
+ "[['their', 'saga,', 'named', 'Depfa,', 'is', 'now'], 'in', ['trouble.', 'The', 'Wisconsin', 'schools', 'are', 'on']]\n",
+ "[['the', 'stability', 'of', 'its', 'parent', 'company'], 'in', ['Munich,', 'forcing', 'German', 'officials', 'to', 'intervene']]\n",
+ "[['a', 'first-grade', 'teacher', 'at', 'Grewenow', 'Elementary'], 'in', ['Kenosha,', 'Wis.,', 'one', 'of', 'the', 'districts']]\n",
+ "[['one', 'of', 'the', 'districts', 'that', 'invested'], 'in', [\"Noack's\", 'deal.', '\"If', 'millions', 'of', 'dollars']]\n",
+ "[['Yde,', 'the', 'director', 'of', 'business', 'services'], 'in', ['the', 'Whitefish', 'Bay', 'district.', '\"This', 'is']]\n",
+ "[['the', 'Whitefish', 'Bay', 'board', 'that', 'investing'], 'in', ['the', 'global', 'economy', 'carried', 'few', 'risks,']]\n",
+ "[['salesmen', 'and', 'a', 'homemaker', 'who', 'lived'], 'in', ['the', 'affluent', 'Milwaukee', 'suburb.', 'Soon,', 'Whitefish']]\n",
+ "[['return', 'than', 'a', '$35', 'million', 'investment'], 'in', ['ultra-safe', 'Treasury', 'bonds,', 'which', 'would', 'have']]\n",
+ "[['Janet', 'Tavakoli,', 'a', 'finance', 'industry', 'consultant'], 'in', ['Chicago.', '\"They', 'tend', 'to', 'be', 'less']]\n",
+ "[['its', 'relationship', 'with', 'the', 'boards', 'ended'], 'in', ['2007.', 'Noack', 'now', 'works', 'for', 'a']]\n",
+ "[['focused', 'on', 'its', 'home', 'market.', 'But'], 'in', ['2002', 'a', 'new', 'chief', 'executive,', 'Gerhard']]\n",
+ "[['London', 'home', 'and', 'a', 'vast', 'farm'], 'in', ['Spain,', 'where', 'he', 'grew', 'exotic', 'medicinal']]\n",
+ "[['the', 'one-eyed', 'man', 'who', 'becomes', 'king'], 'in', ['the', 'land', 'of', 'the', 'blind,\"', 'he']]\n",
+ "[['concerned', 'about', 'deals', 'like', 'one', 'struck'], 'in', ['2005', 'with', 'the', 'Metropolitan', 'Transportation', 'Authority']]\n",
+ "[['And', 'bureaucrats', 'and', 'politicians,', 'including', 'some'], 'in', ['New', 'York,', 'jumped', 'in.', 'By', '2006']]\n",
+ "[['the', 'largest', 'buyer', 'of', 'last', 'resort'], 'in', ['the', 'world,', 'standing', 'behind', '$2.9', 'billion']]\n",
+ "[['He', 'Googled', '\"CDOs.\"', 'He', 'called', 'bankers'], 'in', ['London', 'and', 'New', 'York.', 'Each', 'person']]\n",
+ "[['all', 'over', 'the', 'world', 'were', 'declining'], 'in', ['value,', 'exposing', 'the', 'company', 'to', 'the']]\n",
+ "[['company,', 'Hypo,', 'totaled', '$81', 'billion.', 'Then,'], 'in', ['mid-September,', 'the', 'American', 'investment', 'bank', 'Lehman']]\n",
+ "[['rates.', 'That', 'set', 'off', 'a', 'crisis'], 'in', ['Germany,', 'where', 'officials', 'worried', 'that', \"Depfa's\"]]\n",
+ "[['and', 'private', 'banks', 'extended', '$64', 'billion'], 'in', ['credit', 'to', 'Hypo', 'to', 'stop', 'it']]\n",
+ "[['of', 'dollars,', 'and', \"we've\", 'been', 'conservative'], 'in', ['issuing', 'it,\"', 'he', 'said.', '\"But', 'there']]\n",
+ "[['say', 'tolls', 'will', 'probably', 'rise', 'again'], 'in', ['2010.', 'The', 'Depfa', 'fallout', \"doesn't\", 'end']]\n",
+ "[['municipal', 'agencies', 'backed', 'by', 'Depfa,', 'including'], 'in', ['California,', 'Connecticut,', 'Illinois', 'and', 'South', 'Dakota.']]\n",
+ "[['Connecticut,', 'Illinois', 'and', 'South', 'Dakota.', 'Officials'], 'in', ['Florida,', 'Massachusetts', 'and', 'Montana', 'have', 'cut']]\n",
+ "[['In', \"Velvikis'\", 'classroom', 'at', 'Grewenow', 'Elementary'], 'in', ['Kenosha,', 'students', 'have', 'recently', 'completed', 'a']]\n",
+ "[['students', 'have', 'recently', 'completed', 'a', 'lesson'], 'in', ['which', 'each', 'first-grader', 'contributed', 'a', 'vegetable']]\n",
+ "[['plans', 'to', 'open', 'an', 'office', 'here'], 'in', ['her', 'hometown,', 'a', 'traditionally', 'Republican', 'suburb']]\n",
+ "[['own', 'pocket', 'for', 'the', 'initial', '$1,350'], 'in', ['rent,', 'hooked', 'up', 'telephones', 'and', 'computers,']]\n",
+ "[['hooked', 'up', 'telephones', 'and', 'computers,', 'hauled'], 'in', ['furniture', 'and', 'printed', 'up', 'fliers', 'for']]\n",
+ "[['lifetime.', 'Skolfield', 'and', 'friends', 'garb', 'him'], 'in', ['Obama', 'paraphernalia,', 'the', 'clean,', 'bright', 'cottons']]\n",
+ "[['a', 'round', 'of', 'leafletting,', 'she', 'whoops'], 'in', ['appreciation.', 'For', \"Tuesday's\", 'election,', 'the', 'Obama']]\n",
+ "[['a', 'vast,', 'technologically', 'sophisticated', 'get-out-the-vote', 'machine'], 'in', ['Florida,', 'with', 'nearly', '500', 'paid', 'staff']]\n",
+ "[['neighbors,', 'and', 'includes', 'a', 'personal', 'note'], 'in', ['every', 'packet,', 'along', 'with', 'an', 'invitation']]\n",
+ "[['Claus', 'brought', 'them,\"', 'Skolfield', 'said.', 'Back'], 'in', ['June,', 'she', 'attended', 'a', 'three-day', 'session']]\n",
+ "[['was', 'trained,', 'the', 'instructor', 'told', 'her,'], 'in', ['the', 'same', 'community', 'organizing', 'techniques', 'Obama']]\n",
+ "[['Democratic', 'convention', 'speech.', 'Skolfield', 'grew', 'up'], 'in', ['Winter', 'Park,', 'which', 'sprouted', 'up', 'a']]\n",
+ "[['Colored', 'Town,', 'features', 'an', 'Obama', 'sign'], 'in', ['nearly', 'every', 'yard.', 'When', 'a', 'gaggle']]\n",
+ "[['spotted', 'her', 'lawn', 'sign', 'and', 'whooped'], 'in', ['approval.', '\"GoBama,', \"that's\", 'how', 'we', 'roll!\"']]\n",
+ "[['one', 'cried.', 'Though', 'strays', 'have', 'floated'], 'in', ['from', 'as', 'far', 'away', 'as', 'Massachusetts,']]\n",
+ "[['town,', 'the', 'Winter', 'Park', 'volunteers', 'bask'], 'in', ['their', 'seeming', 'success.', 'According', 'to', \"Skolfield's\"]]\n",
+ "[['her', 'office', 'regularly', 'leads', 'the', 'state'], 'in', ['the', 'daily', 'tallies', 'of', 'doors', 'knocked']]\n",
+ "[['epithets,', 'they', 'also', 'hear', 'cheers,', 'even'], 'in', ['Latino', 'neighborhoods', 'with', 'uncertain', 'levels', 'of']]\n",
+ "[['for', 'Obama.', 'Things', 'are', 'so', 'upbeat,'], 'in', ['fact,', 'that', 'their', 'two-room', 'office', 'can']]\n",
+ "[['world:', 'It', 'is', 'an', 'integrated', 'setting'], 'in', ['a', 'still-segregated-feeling', 'town,', 'and', 'while', 'the']]\n",
+ "[['Lately', 'some', 'of', 'the', 'motherly', 'types'], 'in', ['the', 'office', 'have', 'been', 'hiring', 'him']]\n",
+ "[['little', 'notes', 'with', 'her', 'leaflets,', 'lives'], 'in', ['a', 'prosperous', 'subdivision,', 'lush', 'with', 'lakes']]\n",
+ "[['others,', 'she', 'has', 'been', 'living', 'full-time'], 'in', ['Obamaland', 'for', 'months', 'now.', '\"We', 'are']]\n",
+ "[['the', 'election,\"', 'she', 'said,', 'heading', 'off'], 'in', ['the', 'sunshine', 'to', 'deposit', 'more', 'packets']]\n",
+ "[['plans', 'to', 'open', 'an', 'office', 'here'], 'in', ['her', 'hometown,', 'a', 'traditionally', 'Republican', 'suburb']]\n",
+ "[['own', 'pocket', 'for', 'the', 'initial', '$1,350'], 'in', ['rent,', 'hooked', 'up', 'telephones', 'and', 'computers,']]\n",
+ "[['hooked', 'up', 'telephones', 'and', 'computers,', 'hauled'], 'in', ['furniture', 'and', 'printed', 'up', 'fliers', 'for']]\n",
+ "[['lifetime.', 'Skolfield', 'and', 'friends', 'garb', 'him'], 'in', ['Obama', 'paraphernalia,', 'the', 'clean,', 'bright', 'cottons']]\n",
+ "[['a', 'round', 'of', 'leafletting,', 'she', 'whoops'], 'in', ['appreciation.', 'For', \"Tuesday's\", 'election,', 'the', 'Obama']]\n",
+ "[['a', 'vast,', 'technologically', 'sophisticated', 'get-out-the-vote', 'machine'], 'in', ['Florida,', 'with', 'nearly', '500', 'paid', 'staff']]\n",
+ "[['for', 'a', 'gigantic', 'crowd', 'this', 'week'], 'in', ['Grant', 'Park,', 'the', \"city's\", 'iconic', 'front']]\n",
+ "[['she', 'said.', '\"Will', 'I', 'be', 'here'], 'in', ['spirit?', 'You', 'bet', 'you.\"', 'Chicago,', 'it']]\n",
+ "[['minds', 'about', 'this', 'party.', 'Many', 'supporters'], 'in', [\"Obama's\", 'hometown', 'speak', 'with', 'pride', 'of']]\n",
+ "[['the', 'first', 'black', 'person', 'claim', 'victory'], 'in', ['a', 'presidential', 'campaign', 'here', 'on', 'the']]\n",
+ "[['on', 'the', 'edge', 'of', 'Lake', 'Michigan,'], 'in', ['view', 'of', 'their', 'beloved', 'skyline.', 'Still,']]\n",
+ "[['view', 'of', 'their', 'beloved', 'skyline.', 'Still,'], 'in', ['hushed', 'tones,', 'some', 'say', 'they', 'are']]\n",
+ "[['they', 'are', 'worried', 'about', 'his', 'safety'], 'in', ['the', 'public', 'park', 'and', 'about', 'how']]\n",
+ "[['and', 'about', 'how', 'a', 'huge', 'crowd'], 'in', ['this', 'city,', 'which', 'has', 'seen', 'violence']]\n",
+ "[['tickets', 'use', '\"common', 'sense\"', 'and', 'stay'], 'in', ['their', 'own', 'neighborhoods.', '\"We', \"can't\", 'have']]\n",
+ "[['was', 'renamed', 'for', 'Ulysses', 'S.', 'Grant'], 'in', ['1901,', 'lies', 'not', 'far', 'from', 'the']]\n",
+ "[['of', 'at', 'least', 'four', 'political', 'conventions'], 'in', ['the', 'late', '1800s,', 'was', 'visited', 'by']]\n",
+ "[['was', 'visited', 'by', 'Queen', 'Elizabeth', 'II'], 'in', ['1959,', 'was', 'the', 'site', 'of', 'a']]\n",
+ "[['anti-war', 'protesters', 'during', 'the', 'Democratic', 'convention'], 'in', ['1968,', 'and', 'was', 'the', 'place', 'where']]\n",
+ "[['Paul', 'II', 'celebrated', 'Mass', 'with', 'thousands'], 'in', ['1979.', 'The', 'park', 'is', 'home', 'to']]\n",
+ "[['searched', 'for', 'tickets', 'on', 'Craigslist', 'and'], 'in', ['other', 'places', '(though', 'it', 'is', 'unclear']]\n",
+ "[['special', 'security', 'chief', 'it', 'had', 'hired'], 'in', ['case', 'the', 'White', 'Sox', 'or', 'the']]\n",
+ "[['officials', 'could', 'be', 'seen', 'touring', 'rooftops'], 'in', ['downtown', 'high-rises', 'as', 'helicopters', 'flew', 'over']]\n",
+ "[['on', 'Tuesday', 'night.', 'She', 'was', 'also'], 'in', ['Grant', 'Park', '40', 'years', 'ago,', 'as']]\n",
+ "[['same', 'thing\"', 'she', 'was', 'fighting', 'for'], 'in', ['the', '1960s.', '\"My', 'reason', 'for', 'being']]\n",
+ "[['became', 'the', 'most', 'volatile', 'international', 'confrontation'], 'in', ['Indochina', 'in', '20', 'years.', 'Cambodian', 'troops']]\n",
+ "[['most', 'volatile', 'international', 'confrontation', 'in', 'Indochina'], 'in', ['20', 'years.', 'Cambodian', 'troops', 'occupy', 'the']]\n",
+ "[['the', 'swooping', 'cliff-top', 'temple,', 'which', 'is'], 'in', ['Cambodia', 'but', 'is', 'most', 'easily', 'reached']]\n",
+ "[['temple,', 'are', 'mostly', 'out', 'of', 'sight'], 'in', ['the', 'hills', 'or', 'in', 'camps', 'nearby']]\n",
+ "[['of', 'sight', 'in', 'the', 'hills', 'or'], 'in', ['camps', 'nearby', 'in', 'Thailand.', 'But', 'the']]\n",
+ "[['the', 'hills', 'or', 'in', 'camps', 'nearby'], 'in', ['Thailand.', 'But', 'the', 'Cambodian', 'government', 'seems']]\n",
+ "[['Cambodian', 'government', 'seems', 'to', 'be', 'digging'], 'in', ['for', 'a', 'long', 'siege.', 'A', 'new']]\n",
+ "[['new', 'budget', 'expected', 'to', 'be', 'approved'], 'in', ['the', 'coming', 'week', 'would', 'double', 'the']]\n",
+ "[['feel', 'of', 'Cambodian', 'deployments', 'throughout', 'conflicts'], 'in', ['recent', 'decades.', 'A', 'small', 'market', 'has']]\n",
+ "[['temple', 'wall;', 'a', 'satellite', 'dish', 'brings'], 'in', ['both', 'Thai', 'and', 'Cambodian', 'soap', 'operas']]\n",
+ "[['a', 'man', 'who', 'looks', 'to', 'be'], 'in', ['his', '50s', 'and', 'wore', 'a', 'white']]\n",
+ "[['fruit', '--', 'claimed', 'a', 'great', 'victory'], 'in', ['the', 'little', 'skirmish', 'that', 'took', 'place']]\n",
+ "[['15.', '\"They', 'left', 'with', 'their', 'hands'], 'in', ['the', 'air!\"', 'he', 'said', 'of', 'a']]\n",
+ "[['to', 'have', 'been', 'gained', 'or', 'lost'], 'in', ['the', 'fighting.', 'The', 'dispute', 'flared', 'in']]\n",
+ "[['in', 'the', 'fighting.', 'The', 'dispute', 'flared'], 'in', ['July,', 'when', 'UNESCO,', 'the', 'cultural', 'agency']]\n",
+ "[['a', 'Cambodian', 'government', 'proposal.', 'Domestic', 'politics'], 'in', ['Thailand', 'fueled', 'a', 'nationalist', 'response,', 'and']]\n",
+ "[['of', 'more', 'recent', 'conflicts,', 'with', 'roots'], 'in', ['the', 'Vietnam', 'War', 'and', 'the', 'brutal']]\n",
+ "[['to', 'Cambodia', 'by', 'invading', 'Vietnamese', 'soldiers'], 'in', ['1980,', 'and', 'it', 'may', 'have', 'been']]\n",
+ "[['with', 'American', 'weaponry,', 'have', 'the', 'advantage'], 'in', ['firepower', 'as', 'well', 'as', 'air', 'cover']]\n",
+ "[['one', '--', 'since', 'they', 'were', 'boys'], 'in', ['the', '1960s.', '\"They', 'wanted', 'to', 'test']]\n",
+ "[['Meas', 'Yoeun,', '48,', 'a', 'ranking', 'commander'], 'in', ['Preah', 'Vihear', 'province.', '\"They', 'curse', 'us']]\n",
+ "[['fight!\"', 'Touch', 'Socheat,', '39,', 'a', 'captain'], 'in', ['the', 'border', 'police,', 'said', 'he', 'had']]\n",
+ "[['killer', 'smog', 'rolled', 'into', 'town', 'here'], 'in', ['October', '1948,', '12-year-old', 'Joann', 'Crow', 'thought']]\n",
+ "[['31', 'cleared', 'the', 'air,', '20', 'people'], 'in', ['Donora', 'had', 'died,', 'and', 'nearly', 'half']]\n",
+ "[['nearly', 'half', 'the', 'town', 'became', 'ill'], 'in', ['one', 'of', 'the', 'worst', 'air', 'pollution']]\n",
+ "[['of', 'the', 'worst', 'air', 'pollution', 'disasters'], 'in', ['the', \"nation's\", 'history.', 'After', 'decades', 'of']]\n",
+ "[['began', 'to', 'open', 'up', 'about', 'it'], 'in', ['recent', 'years,', 'placing', 'a', 'historical', 'marker']]\n",
+ "[['recent', 'years,', 'placing', 'a', 'historical', 'marker'], 'in', ['town', 'on', 'the', '50th', 'anniversary.', 'Over']]\n",
+ "[['that', 'a', 'lot', 'of', 'air', 'pollution'], 'in', ['a', 'short', 'period', 'of', 'time', 'could']]\n",
+ "[['idea', 'for', 'the', 'museum.', '\"The', 'smog'], 'in', ['Donora', 'over', 'the', 'years', 'had', 'been']]\n",
+ "[['it', 'was', 'bad', 'publicity.\"', 'The', 'museum,'], 'in', ['a', 'former', 'Chinese', 'restaurant,', 'brings', 'together']]\n",
+ "[['Paul', 'C.', 'Brown,', '81,', 'who', 'worked'], 'in', ['the', 'steel', 'mills', 'then,', 'remembered', 'going']]\n",
+ "[['we', 'were', 'used', 'to', 'the', 'fog'], 'in', ['the', 'valley,\"', 'he', 'said.', '\"Then', 'I']]\n",
+ "[['getting', 'sick.\"', 'Smog', 'was', 'not', 'unusual'], 'in', ['Donora,', 'a', 'town', 'of', '14,000', 'then']]\n",
+ "[['are', 'situations', 'like', 'Donora', 'going', 'on'], 'in', ['India', 'and', 'Asia', 'right', 'now.\"', 'The']]\n",
+ "[['killer', 'smog', 'rolled', 'into', 'town', 'here'], 'in', ['October', '1948,', '12-year-old', 'Joann', 'Crow', 'thought']]\n",
+ "[['31', 'cleared', 'the', 'air,', '20', 'people'], 'in', ['Donora', 'had', 'died,', 'and', 'nearly', 'half']]\n",
+ "[['nearly', 'half', 'the', 'town', 'became', 'ill'], 'in', ['one', 'of', 'the', 'worst', 'air', 'pollution']]\n",
+ "[['of', 'the', 'worst', 'air', 'pollution', 'disasters'], 'in', ['the', \"nation's\", 'history.', 'After', 'decades', 'of']]\n",
+ "[['began', 'to', 'open', 'up', 'about', 'it'], 'in', ['recent', 'years,', 'placing', 'a', 'historical', 'marker']]\n",
+ "[['recent', 'years,', 'placing', 'a', 'historical', 'marker'], 'in', ['town', 'on', 'the', '50th', 'anniversary.', 'Over']]\n",
+ "[['that', 'a', 'lot', 'of', 'air', 'pollution'], 'in', ['a', 'short', 'period', 'of', 'time', 'could']]\n",
+ "[['on', 'Thursday.', 'Sen.', 'Barack', \"Obama's\", 'surge'], 'in', ['the', 'polls', 'was', 'so', 'strong', 'he']]\n",
+ "[['was', 'so', 'strong', 'he', 'was', 'competitive'], 'in', [\"McCain's\", 'home', 'state,', 'Arizona.', 'The', 'everyman']]\n",
+ "[['expected', 'appearance', 'at', 'a', 'morning', 'rally'], 'in', ['Defiance,', 'Ohio,', 'and', 'the', \"senator's\", 'efforts']]\n",
+ "[['a', 'boost', 'at', 'an', 'afternoon', 'rally'], 'in', ['Sandusky,', 'Ohio,', 'from', 'none', 'other', 'than']]\n",
+ "[['McCain\";', 'he', 'was', 'gaining', 'new', 'ground'], 'in', ['ever-tightening', 'polls,', 'despite', 'the', 'overwhelming', 'bias']]\n",
+ "[['despite', 'the', 'overwhelming', 'bias', 'against', 'him'], 'in', ['the', 'mainstream', 'news', 'media;', 'and', \"Obama's\"]]\n",
+ "[['the', 'MSNBC', 'host,', 'said', 'Wednesday', 'night'], 'in', ['addressing', 'those', 'who', 'might', 'be', 'leaning']]\n",
+ "[['it', 'has', 'never', 'been', 'so', 'apparent'], 'in', ['such', 'a', 'clear-cut', 'way', 'on', 'television,']]\n",
+ "[['by', 'night.', 'But', 'it', 'was', 'only'], 'in', ['the', 'last', 'couple', 'of', 'years', 'that']]\n",
+ "[['liberal', 'alternative', 'to', 'Fox', 'News', 'Channel'], 'in', ['prime', 'time,', 'finding', 'improved', 'ratings', 'in']]\n",
+ "[['in', 'prime', 'time,', 'finding', 'improved', 'ratings'], 'in', ['the', 'mistrust', 'of', 'the', 'mainstream', 'media']]\n",
+ "[['the', 'campaign', 'year.', '(At', 'second', 'place'], 'in', ['the', 'ratings,', 'behind', 'Fox', 'News', 'Channel,']]\n",
+ "[['next', 'morning,', 'on', '\"Fox', '&', 'Friends\"'], 'in', ['a', 'segment', 'in', 'which', 'the', 'report']]\n",
+ "[['\"Fox', '&', 'Friends\"', 'in', 'a', 'segment'], 'in', ['which', 'the', 'report', 'was', 'described', 'as']]\n",
+ "[['singling', 'out', 'The', 'New', 'York', 'Times'], 'in', ['particular', 'for', 'covering', 'the', 'purchase.', 'That']]\n",
+ "[['Olbermann', 'named', 'Hannity', 'the', '\"Worst', 'Person'], 'in', ['the', 'World,\"', 'a', 'running', 'feature', 'on']]\n",
+ "[['director', 'of', 'the', 'Project', 'for', 'Excellence'], 'in', ['Journalism', 'at', 'the', 'Pew', 'Research', 'Center,']]\n",
+ "[['the', 'subject', 'of', 'more', 'negative', 'reports'], 'in', ['general', 'than', 'has', 'Obama', 'on', 'issues']]\n",
+ "[['that', 'include', 'assessments', 'of', 'their', 'performances'], 'in', ['polls,', 'the', 'debates', 'and', 'running', 'their']]\n",
+ "[['about', 'Obama.', 'CNN', 'was', 'more', 'generally'], 'in', ['line', 'with', 'the', 'average.', 'Rosenstiel', 'said']]\n",
+ "[['the', 'Obama', 'and', 'McCain', 'campaigns', 'said'], 'in', ['interviews', 'last', 'week', 'that', 'they', 'believed']]\n",
+ "[['instances', 'when', 'they', 'have', 'perceived', 'bias'], 'in', ['regular', 'news', 'coverage.', 'On', 'Fox', 'News']]\n",
+ "[['a', 'guest,', '\"Do', 'economists', 'say', 'that'], 'in', ['fact', 'his', 'policies', 'could', 'drive', 'a']]\n",
+ "[[\"McCain's\", 'campaign', 'wrote', 'to', 'NBC', 'News'], 'in', ['August,', '\"We', 'are', 'concerned', 'that', 'your']]\n",
+ "[['news', 'division', 'is', 'following', \"MSNBC's\", 'lead'], 'in', ['abandoning', 'nonpartisan', 'coverage', 'of', 'the', 'presidential']]\n",
+ "[['Fox', 'News', 'Channel', 'did', 'one', 'segment,'], 'in', ['which', 'it', 'interviewed', 'Eagleburger,', 'who', 'apologized']]\n",
+ "[['view,', 'some', 'you', 'see', 'as', 'factual'], 'in', ['a', 'different', 'way,', 'and', 'it', 'all']]\n",
+ "[['and', 'geometric', 'concrete', 'blocks,', 'splays', 'out'], 'in', ['one', 'of', 'the', \"city's\", 'most', 'expensive']]\n",
+ "[['to', 'political', 'functions', 'since', 'it', 'opened'], 'in', ['1929', 'during', 'the', 'Hoover', 'administration,', 'and']]\n",
+ "[['his', 'Super', 'Tuesday', 'victory', 'party', 'there'], 'in', ['February,', 'swelling', 'a', 'ballroom', 'to', 'the']]\n",
+ "[['reporters,', 'he', 'said.', 'About', '3,000', 'people'], 'in', ['total', 'are', 'expected,', 'he', 'said.', 'He']]\n",
+ "[['election', 'night', 'plans', '--', 'a', 'gathering'], 'in', ['Grant', 'Park', 'in', 'Chicago', 'that', 'is']]\n",
+ "[['--', 'a', 'gathering', 'in', 'Grant', 'Park'], 'in', ['Chicago', 'that', 'is', 'expected', 'to', 'draw']]\n",
+ "[['the', 'multitude', 'that', 'saw', 'Obama', 'speak'], 'in', ['Berlin', 'in', 'July,', 'an', 'event', 'that']]\n",
+ "[['that', 'saw', 'Obama', 'speak', 'in', 'Berlin'], 'in', ['July,', 'an', 'event', 'that', 'the', 'McCain']]\n",
+ "[['a', 'couple', 'of', 'days,\"', 'he', 'said'], 'in', ['a', 'telephone', 'interview.', 'Sen.', 'John', 'McCain']]\n",
+ "[['and', 'geometric', 'concrete', 'blocks,', 'splays', 'out'], 'in', ['one', 'of', 'the', \"city's\", 'most', 'expensive']]\n",
+ "[['to', 'political', 'functions', 'since', 'it', 'opened'], 'in', ['1929', 'during', 'the', 'Hoover', 'administration,', 'and']]\n",
+ "[['his', 'Super', 'Tuesday', 'victory', 'party', 'there'], 'in', ['February,', 'swelling', 'a', 'ballroom', 'to', 'the']]\n",
+ "[['reporters,', 'he', 'said.', 'About', '3,000', 'people'], 'in', ['total', 'are', 'expected,', 'he', 'said.', 'Mayor']]\n",
+ "[['a', 'couple', 'of', 'days,\"', 'he', 'said'], 'in', ['a', 'telephone', 'interview.', 'After', 'weeks', 'of']]\n",
+ "[['charged', 'with', 'conspiracy', 'and', 'with', 'operating'], 'in', ['the', 'United', 'States', 'as', 'an', 'unauthorized']]\n",
+ "[['say', 'Duran,', 'who', 'owns', 'a', 'house'], 'in', ['the', 'Miami', 'area,', 'came', 'to', 'the']]\n",
+ "[['Hugo', 'Chavez,', 'have', 'denied', 'any', 'role'], 'in', ['the', 'matter,', 'which', 'has', 'made', 'headlines']]\n",
+ "[['the', 'matter,', 'which', 'has', 'made', 'headlines'], 'in', ['Latin', 'America.', 'The', \"jury's\", 'impasse', 'has']]\n",
+ "[['has', 'prompted', 'some', 'Venezuelans', 'to', 'speculate'], 'in', ['news', 'blogs', 'and', 'Internet', 'chat', 'rooms']]\n",
+ "[['the', 'Duran', 'trial', 'from', 'its', 'inception'], 'in', ['September.', '\"But', 'if', 'there', 'is', 'a']]\n",
+ "[['officer', 'who', 'discovered', 'the', 'money-laden', 'suitcase'], 'in', ['the', 'airport', 'in', 'Buenos', 'Aires', 'and']]\n",
+ "[['the', 'money-laden', 'suitcase', 'in', 'the', 'airport'], 'in', ['Buenos', 'Aires', 'and', 'later', 'capitalized', 'on']]\n",
+ "[['carrying', 'the', 'suitcase,', 'filled', 'with', '$800,000'], 'in', ['$50', 'bills,', 'when', 'he', 'was', 'stopped']]\n",
+ "[['lawyers', 'contend', 'that', 'he', 'became', 'involved'], 'in', ['the', 'case', 'to', 'help', 'Wilson,', 'and']]\n",
+ "[['himself,', 'and', 'for', 'his', 'best', 'friend'], 'in', ['the', 'world,', 'Alejandro', 'Antonini,\"', 'Ed', 'Shohat,']]\n",
+ "[['Antonini,\"', 'Ed', 'Shohat,', \"Duran's\", 'lawyer,', 'said'], 'in', ['his', 'closing', 'remarks', 'last', 'week.', '\"Just']]\n",
+ "[['have', 'pleaded', 'guilty', 'to', 'their', 'roles'], 'in', ['trying', 'to', 'cover', 'up', 'the', 'affair.']]\n",
+ "[['shots', 'of', 'drug', 'traffickers', 'that', 'appear'], 'in', ['the', 'Mexican', 'press', 'show', 'surly', 'looking']]\n",
+ "[['An', 'anti-corruption', 'investigation', 'unveiled', 'last', 'week'], 'in', ['the', 'Mexican', 'capital,', 'however,', 'made', 'it']]\n",
+ "[['it', 'clear', 'that', 'not', 'everybody', 'enmeshed'], 'in', ['the', 'narcotics', 'trade', 'looked', 'the', 'part.']]\n",
+ "[['bad', 'guys.', 'Among', 'the', 'greatest', 'challenges'], 'in', [\"Mexico's\", 'drug', 'war', 'is', 'the', 'fact']]\n",
+ "[['old.', 'And', 'they', 'can', 'work', 'anywhere:'], 'in', ['remote', 'drug', 'labs,', 'as', 'part', 'of']]\n",
+ "[['reality', 'is', 'that', 'many', 'public', 'servants'], 'in', ['Mexico', 'are', 'serving', 'both', 'the', 'taxpayers']]\n",
+ "[['taxpayers', 'and', 'the', 'traffickers.', 'The', 'men'], 'in', ['suits,', 'it', 'turns', 'out,', 'were', 'both']]\n",
+ "[['bad', 'guys,', 'corrupt', 'officials', 'high', 'up'], 'in', ['an', 'elite', 'unit', 'of', 'the', 'federal']]\n",
+ "[['to', 'the', 'feared', 'Beltran', 'Leyva', 'cartel'], 'in', ['exchange', 'for', 'suitcases', 'full', 'of', 'cash.']]\n",
+ "[['crucial', 'part', 'of', 'his', 'presidency,', 'said'], 'in', ['a', 'speech', 'Tuesday,', 'after', 'the', 'arrests']]\n",
+ "[['willing', 'to', 'join', 'the', 'drug', 'gangs'], 'in', ['exchange', 'for', 'cash,', 'including', 'the', 'farmers']]\n",
+ "[[\"narco-traffickers'\", 'profits.', 'There', 'was', 'sporadic', 'evidence'], 'in', ['the', 'past', 'that', 'such', 'corruption', 'extended']]\n",
+ "[['anti-drug', 'unit', 'was', 'arrested', 'and', 'convicted'], 'in', ['1997', 'after', 'the', 'discovery', 'that', 'he']]\n",
+ "[['a', 'drug', 'cartel', 'was', 'discovered', 'working'], 'in', ['the', \"president's\", 'office', 'and', 'accused', 'of']]\n",
+ "[['Alfredo', 'Beltran', 'Leyva,', 'a', 'cartel', 'leader,'], 'in', ['January', 'even', 'though', 'the', 'group', 'was']]\n",
+ "[['Sinaloa', 'state', 'and', 'have', 'been', 'implicated'], 'in', ['the', 'killing', 'of', 'a', 'top', 'police']]\n",
+ "[['killing', 'of', 'a', 'top', 'police', 'commander'], 'in', ['Mexico', 'City,', 'were', 'described', 'in', 'local']]\n",
+ "[['commander', 'in', 'Mexico', 'City,', 'were', 'described'], 'in', ['local', 'press', 'accounts', 'as', 'being', 'furious']]\n",
+ "[['escape.', 'The', 'most', 'notorious', 'case', 'was'], 'in', ['2001,', 'when', 'Joaquin', 'Guzman', 'Loera,', 'the']]\n",
+ "[['out', 'of', 'a', 'maximum', 'security', 'prison'], 'in', ['a', 'laundry', 'cart.', 'The', 'porous', 'nature']]\n",
+ "[['Gonzalez,', '68,', 'was', 'a', 'top', 'manager'], 'in', ['the', 'government', 'organized-crime', 'office', 'known', 'by']]\n",
+ "[['and', 'civilians', '--', 'have', 'been', 'killed'], 'in', ['an', 'extraordinary', 'wave', 'of', 'violence', 'linked']]\n",
+ "[['ordered', 'more', 'lie-detector', 'tests', 'for', 'officials'], 'in', ['delicate', 'posts,', 'beefed-up', 'background', 'checks', 'and']]\n",
+ "[['to', 'have', 'bought', 'four', 'luxury', 'vehicles'], 'in', ['one', 'year.', 'Expensive', 'jewelry', 'was', 'found']]\n",
+ "[['one', 'year.', 'Expensive', 'jewelry', 'was', 'found'], 'in', ['his', 'home.', 'His', 'bank', 'account', 'was']]\n",
+ "[['government', 'official', 'receiving', 'millions', 'of', 'dollars'], 'in', ['drug', 'profits.', '\"We', 'need', 'a', 'stronger']]\n",
+ "[['out', 'when', 'I', 'was', 'a', 'teenager'], 'in', ['1967.', 'Back', 'then,', '\"Guess', \"Who's\", 'Coming']]\n",
+ "[['A', 'young', 'white', 'woman', 'falls', 'madly'], 'in', ['love', 'with', 'a', 'black', 'man', 'while']]\n",
+ "[['a', 'Nobel-worthy', 'career', 'fighting', 'tropical', 'diseases'], 'in', ['Africa', 'for', 'the', 'World', 'Health', 'Organization.']]\n",
+ "[['fiancee.', '\"He', \"doesn't\", 'have', 'any', 'tensions'], 'in', ['him.\"', 'She', 'is', 'confident', 'that', 'every']]\n",
+ "[['What', 'a', 'strange', 'movie', 'to', 'confront'], 'in', ['2008.', 'As', 'the', 'world', 'knows,', 'Barack']]\n",
+ "[['her', 'liberal-ish', 'parents', 'to', 'her', 'intended'], 'in', ['1959.', 'But', \"what's\", 'most', 'startling', 'about']]\n",
+ "[['archaic', 'film', 'is', 'the', 'sole', 'element'], 'in', ['it', 'that', 'proves', 'inadvertently', 'contemporary.', 'Faced']]\n",
+ "[['contemporary.', 'Faced', 'with', 'a', 'black', 'man'], 'in', ['the', 'mold', 'of', 'the', 'Poitier', 'character']]\n",
+ "[['particularly', 'naked,', 'prefigured', 'a', 'larger', 'pattern'], 'in', ['the', 'extraordinary', 'election', 'campaign', 'that', 'has']]\n",
+ "[['on', 'tracking', 'down', 'every', 'unreconstructed', 'bigot'], 'in', ['blue-collar', 'America', '--', 'have', 'their', 'own']]\n",
+ "[['two-dimensional', 'character', 'Poitier', 'had', 'to', 'shoulder'], 'in', ['\"Guess', \"Who's\", 'Coming', 'to', 'Dinner.\"', \"It's\"]]\n",
+ "[['so', 'often.', 'There', 'were', 'countless', 'ruminations,'], 'in', ['print', 'and', 'on', 'television,', 'asking', 'the']]\n",
+ "[['a', 'wuss', 'to', 'land', 'a', 'punch'], 'in', ['a', 'debate,', 'too', 'ethereal', 'to', 'connect']]\n",
+ "[['Stevenson,', 'Michael', 'Dukakis', 'or', 'Bill', 'Bradley'], 'in', ['dark', 'face', '--', 'no', 'populist', 'pugilist']]\n",
+ "[['who', 'failed', 'to', 'elect', 'Howard', 'Dean'], 'in', ['2004.', 'When', 'Clinton', 'lost', 'in', 'Iowa,']]\n",
+ "[['Dean', 'in', '2004.', 'When', 'Clinton', 'lost'], 'in', ['Iowa,', 'no', 'matter;', 'Obama', 'could', 'never']]\n",
+ "[['nomination', 'from', 'Clinton', 'by', 'surpassing', 'her'], 'in', ['organization,', 'cash', 'and', 'black', 'votes,', 'he']]\n",
+ "[['predicted', 'that', 'his', 'fundraising', 'had', 'peaked'], 'in', ['February', 'and', 'that', \"he'd\", 'have', 'a']]\n",
+ "[['political', 'establishment,', 'not', 'Obama', '--', 'arrived'], 'in', ['June', 'when', 'he', 'reversed', 'his', 'position']]\n",
+ "[['or', 'more', 'white', 'remains', 'unresolved.', 'Early'], 'in', ['the', 'campaign,', 'the', 'black', 'commentator', 'Tavis']]\n",
+ "[['that', 'there', 'is', '\"no', 'such', 'thing'], 'in', ['America', 'as', 'race', 'transcendence.\"', 'He', 'is']]\n",
+ "[['our', 'DNA.', 'Obama', 'acknowledged', 'as', 'much'], 'in', ['his', 'landmark', 'speech', 'on', 'race', 'in']]\n",
+ "[['in', 'his', 'landmark', 'speech', 'on', 'race'], 'in', ['Philadelphia', 'in', 'March.', 'Yet', 'much', 'has']]\n",
+ "[['landmark', 'speech', 'on', 'race', 'in', 'Philadelphia'], 'in', ['March.', 'Yet', 'much', 'has', 'changed', 'for']]\n",
+ "[['possible.', 'As', 'Mark', 'Harris', 'reminds', 'us'], 'in', ['his', 'recent', 'book', 'about', 'late-1960s', 'Hollywood,']]\n",
+ "[['overturning', 'laws', 'that', 'forbade', 'interracial', 'marriage'], 'in', ['16', 'states;', 'in', 'the', \"film's\", 'final']]\n",
+ "[['forbade', 'interracial', 'marriage', 'in', '16', 'states;'], 'in', ['the', \"film's\", 'final', 'cut', \"there's\", 'still']]\n",
+ "[['genealogy', 'alike', 'embody', 'what', 'has', 'changed'], 'in', ['the', 'decades', 'since.', 'When', 'he', 'speaks']]\n",
+ "[['Demographically,', \"that's\", 'where', 'America', 'is', 'heading'], 'in', ['the', 'new', 'century,', 'and', 'that', 'will']]\n",
+ "[['outlast', 'some', 'of', 'the', 'smartest', 'people'], 'in', ['the', 'country,', 'starting', 'with', 'the', 'Clintons.']]\n",
+ "[['post-race.', 'He', 'is', 'the', 'latest', 'chapter'], 'in', ['the', 'ever-unfurling', 'American', 'racial', 'saga.', 'It']]\n",
+ "[['soon', 'remember', 'that', 'the', 'country', 'is'], 'in', ['a', 'deep', 'ditch,', 'and', 'that', 'we']]\n",
+ "[['has', 'a', 'five', 'percentage', 'point', 'lead'], 'in', ['Colorado', 'over', 'Republican', 'John', 'McCain,', 'according']]\n",
+ "[['month', 'ago,', 'when', 'the', 'candidates', 'were'], 'in', ['a', 'dead', 'heat,', 'but', 'also', 'projects']]\n",
+ "[['polling', 'results', 'from', 'several', 'battleground', 'states'], 'in', ['the', 'final', 'weekend:', 'Ohio,', 'Missouri,', 'Florida,']]\n",
+ "[['Barack', 'Obama', 'at', 'a', 'campaign', 'rally'], 'in', ['Colorado', 'Springs.', 'By', 'Joey', 'Bunch.', 'Photos.']]\n",
+ "[['the', 'corrosive', 'gas', 'have', 'been', 'recored'], 'in', ['Wyoming,', 'New', 'Mexico', 'and', 'Colorado.', 'Four']]\n",
+ "[['New', 'Mexico', 'and', 'Colorado.', 'Four', 'counties'], 'in', ['Arizona', 'are', 'also', 'likely', 'to', 'exceed']]\n",
+ "[['--', 'Dr.', 'Horace', 'Thompson,', 'a', 'pioneer'], 'in', ['the', 'use', 'of', 'ultrasound', 'in', 'obstetrics']]\n",
+ "[['pioneer', 'in', 'the', 'use', 'of', 'ultrasound'], 'in', ['obstetrics', 'and', 'gynecology,', 'died', 'Oct.', '9.']]\n",
+ "[['possible', 'for', 'a', 'woman', 'to', 'know'], 'in', ['advance', 'the', 'sex', 'of', 'her', 'child.']]\n",
+ "[['meatpacking', 'company', 'that', 'bought', 'out', 'Swift'], 'in', ['Greeley,', 'Colo.', 'After', 'a', 'series', 'of']]\n",
+ "[['now', 'one', 'of', 'the', 'largest', 'meatpackers'], 'in', ['the', 'nation.', 'The', 'Department', 'of', 'Justice']]\n",
+ "[['Department', 'of', 'Justice', 'and', 'Attorneys', 'General'], 'in', ['13', 'states', 'recently', 'sued', 'to', 'stop']]\n",
+ "[['(Denver)', '--', 'A', 'look', 'at', 'politics'], 'in', ['the', 'locker', 'room', 'and', 'the', 'friendly']]\n",
+ "[['had', 'a', 'heavier', 'hand', 'than', 'usual'], 'in', ['conducting', 'the', \"nation's\", 'political', 'business.', 'Regular']]\n",
+ "[['dozens', 'of', 'major', 'awards', 'and', 'citations'], 'in', ['his', '17-year', 'career', 'as', 'an', 'author']]\n",
+ "[['advertised', 'his', 'intentions,', 'and', 'the', 'woman'], 'in', ['the', 'SUV', 'gave', 'him', 'an', 'opening.']]\n",
+ "[['estate', 'lawyer', 'who', 'walks', 'and', 'talks'], 'in', ['bursts,', 'is', 'the', 'kind', 'of', 'party']]\n",
+ "[['Bush', 'to', 'victory', 'here', 'and', 'statewide'], 'in', ['2000', 'and', '2004.', 'But', 'this', 'year,']]\n",
+ "[['agrees.', 'And', 'like', 'many', 'Republicans', 'trying'], 'in', ['the', 'final', 'days', 'to', 'push', 'their']]\n",
+ "[['he', 'says', 'he', 'has', 'found', 'inspiration'], 'in', ['McCain,', 'the', 'perseverant', 'prisoner', 'of', 'war']]\n",
+ "[['partner', '--', 'made', 'it', 'immeasurably', 'worse,'], 'in', ['the', 'view', 'of', \"Iceland's\", 'government,', 'its']]\n",
+ "[['foreign', 'minister,', 'Ingibjorg', 'Solrun', 'Gisladottir,', 'said'], 'in', ['an', 'interview,', 'describing', 'her', 'horror', 'at']]\n",
+ "[['freezing', 'the', 'assets', 'of', 'Icelandic', 'companies'], 'in', ['the', 'U.K.', 'where', 'we', 'can.\"', \"Iceland's\"]]\n",
+ "[['to', 'Britain,', 'Sverrir', 'H.', 'Gunnlaugsson,', 'said'], 'in', ['an', 'interview', 'that', 'this', 'statement', 'was']]\n",
+ "[['damaging.', 'On', 'a', 'rainy', 'Friday', 'evening'], 'in', ['early', 'August,', 'six', 'Taliban', 'fighters', 'attacked']]\n",
+ "[['Taliban', 'fighters', 'attacked', 'a', 'police', 'post'], 'in', ['a', 'village', 'in', 'Buner,', 'a', 'quiet']]\n",
+ "[['a', 'police', 'post', 'in', 'a', 'village'], 'in', ['Buner,', 'a', 'quiet', 'farming', 'valley', 'just']]\n",
+ "[['phone', 'showed', 'the', 'six', 'militants', 'lying'], 'in', ['the', 'dirt,', 'blood', 'oozing', 'from', 'their']]\n",
+ "[['their', 'tribal', 'strongholds.', 'Since', 'the', 'events'], 'in', ['Buner,', 'the', 'inspector', 'general', 'of', 'the']]\n",
+ "[['the', 'inspector', 'general', 'of', 'the', 'police'], 'in', ['the', 'North-West', 'Frontier', 'province,', 'Malik', 'Naveed']]\n",
+ "[['Malik', 'Naveed', 'Khan,', 'has', 'encouraged', 'citizens'], 'in', ['other', 'towns', 'and', 'villages', 'in', 'his']]\n",
+ "[['citizens', 'in', 'other', 'towns', 'and', 'villages'], 'in', ['his', 'realm', 'to', 'form', 'posses', 'of']]\n",
+ "[['He', 'is', 'spending', 'his', 'time', 'campaigning'], 'in', ['states', 'that', 'went', 'Republicans', 'four', 'years']]\n",
+ "[['to', 'defend', 'states', 'that', 'Republicans', 'won'], 'in', ['2004', 'and', 'two', '--', 'New', 'Hampshire']]\n",
+ "[['the', 'last-minute', 'spending', 'by', 'McCain', 'was'], 'in', ['states', 'that', 'just', 'two', 'months', 'ago']]\n",
+ "[['ago', 'Republicans', 'believed', 'to', 'be', 'safely'], 'in', ['their', 'column.', 'They', 'include', 'Indiana,', 'North']]\n",
+ "[['McCain,', 'at', 'a', 'modest', 'outdoor', 'rally'], 'in', ['Newport', 'News,', 'Va.,', 'on', 'Saturday,', 'left']]\n",
+ "[['how', 'important', 'he', 'viewed', 'the', 'battle'], 'in', ['the', 'state.', '\"Let', 'me', 'state', 'the']]\n",
+ "[['\"My', 'friends,', 'I', 'need', 'your', 'help'], 'in', ['the', 'next', 'three', 'days.', 'Volunteer!', 'Knock']]\n",
+ "[[\"Palin's\", 'weekend', 'stops', 'have', 'been', 'mainly'], 'in', ['states', 'that', 'President', 'Bush', 'won', 'four']]\n",
+ "[['Dowd,', 'who', 'was', \"Bush's\", 'chief', 'strategist'], 'in', ['2004.', '\"He\\'s', 'campaigning', 'as', 'if', 'he']]\n",
+ "[['to', 'Sen.', 'John', 'Kerry,', \"Bush's\", 'opponent'], 'in', ['2004,', 'said', 'Obama', 'was', 'in', 'a']]\n",
+ "[['opponent', 'in', '2004,', 'said', 'Obama', 'was'], 'in', ['a', 'substantially', 'stronger', 'position', 'than', 'Kerry']]\n",
+ "[['than', 'Kerry', 'was', 'at', 'this', 'point'], 'in', ['his', 'race.', '\"The', 'difference', 'is', 'night']]\n",
+ "[['of', 'states', 'that', \"weren't\", 'even', 'remotely'], 'in', ['play', '--', 'Virginia,', 'Colorado,', 'North', 'Dakota,']]\n",
+ "[['said', 'he', 'was', 'confident', 'of', 'victory'], 'in', ['every', 'state', 'the', 'Democrats', 'won', 'in']]\n",
+ "[['in', 'every', 'state', 'the', 'Democrats', 'won'], 'in', ['2004,', 'allowing', 'Obama', 'to', 'put', 'all']]\n",
+ "[['the', 'Kerry', 'states', 'right', 'now', 'are'], 'in', ['good', 'shape', 'for', 'us,\"', 'he', 'said.']]\n",
+ "[['Times', 'electoral', 'map', 'puts', 'five', 'states'], 'in', ['the', 'toss-up', 'category,', 'based', 'on', 'polls,']]\n",
+ "[['Ohio.', 'Bush', 'won', 'all', 'those', 'states'], 'in', ['2004.', 'According', 'to', 'the', 'Times', 'count,']]\n",
+ "[['five', 'states', 'that', 'went', 'with', 'Bush'], 'in', ['2004', '--', 'Colorado,', 'Iowa,', 'Nevada,', 'New']]\n",
+ "[['targets', 'four', 'states', 'that', 'Kerry', 'won'], 'in', ['2004:', 'Minnesota,', 'New', 'Hampshire,', 'Pennsylvania', 'and']]\n",
+ "[['this', 'time', 'of', 'year,', 'the', 'leaves'], 'in', ['Virginia', 'are', 'still', 'turning', 'in', 'warmer']]\n",
+ "[['leaves', 'in', 'Virginia', 'are', 'still', 'turning'], 'in', ['warmer', 'parts', 'of', 'the', 'state,', 'a']]\n",
+ "[['changing', 'electorate', 'more', 'apparent', 'than', 'here'], 'in', ['Loudon', 'County,', 'where', 'the', 'influx', 'of']]\n",
+ "[['where', 'the', 'influx', 'of', 'young', 'families'], 'in', ['exurban', 'sprawling', 'developments', 'has', 'contributed', 'to']]\n",
+ "[['to', 'swinging', 'a', 'solidly', 'Republican', 'state'], 'in', ['presidential', 'elections', 'into', 'a', 'battleground.', 'While']]\n",
+ "[['population', 'surge', 'of', 'almost', '50', 'percent'], 'in', ['the', 'last', 'decade.', 'And', 'that', 'changing']]\n",
+ "[['Barack', 'Obama', 'holds', 'a', 'narrow', 'lead'], 'in', ['polls', 'here', 'as', 'both', 'campaigns', 'battle']]\n",
+ "[['Republican', 'vice-presidential', 'nominee,', 'held', 'rallies', 'here'], 'in', ['recent', 'weeks;', 'reminders', 'of', 'the', \"race's\"]]\n",
+ "[['side', 'from', 'street', 'to', 'street,', 'and'], 'in', ['one', 'storefront', 'after', 'another.', 'A', 'Democratic']]\n",
+ "[['won', 'Virginia', 'since', 'Lyndon', 'B.', 'Johnson'], 'in', ['1964.', 'But', 'the', 'population', 'trends', 'and']]\n",
+ "[['trends', 'and', 'bluish', 'political', 'winds,', 'especially'], 'in', ['the', 'northern', 'region,', 'have', 'transformed', 'Virginia']]\n",
+ "[['seem', 'fairly', 'divided.', 'With', 'a', 'brother'], 'in', ['the', 'military', 'who', 'served', 'two', 'tours']]\n",
+ "[['the', 'military', 'who', 'served', 'two', 'tours'], 'in', ['Iraq,', 'Enright,', '37,', 'said', 'the', \"Republican's\"]]\n",
+ "[['things', 'that', 'really', 'make', 'a', 'difference'], 'in', ['these', 'rural', 'areas.\"', 'In', 'Loudon', 'County,']]\n",
+ "[['brimming', 'with', 'enthusiasm.', 'Like', 'others', 'involved'], 'in', ['the', \"Republicans'\", '72-hour', 'get-out-the-vote', 'efforts', 'across']]\n",
+ "[['Obama', 'are', 'making', 'final', 'stops', 'here'], 'in', ['the', 'last', 'days', 'of', 'the', 'campaign.']]\n",
+ "[['The', 'McCain', 'campaign', 'may', 'be', 'down'], 'in', ['some', 'polls', 'by', 'double-digit', 'margins', 'in']]\n",
+ "[['in', 'some', 'polls', 'by', 'double-digit', 'margins'], 'in', ['Pennsylvania,', 'which', 'has', 'not', 'voted', 'Republican']]\n",
+ "[['Pennsylvania,', 'which', 'has', 'not', 'voted', 'Republican'], 'in', ['a', 'presidential', 'race', 'since', '1988.', 'Yet']]\n",
+ "[['John', 'McCain', 'has', 'poured', '$20', 'million'], 'in', ['advertisement', 'purchases', 'here,', 'more', 'than', 'any']]\n",
+ "[['Sarah', 'Palin,', 'continues', 'to', 'stump', 'here'], 'in', ['the', \"campaign's\", 'waning', 'days.', 'Even', '\"Joe']]\n",
+ "[['go', 'to', 'Sen.', 'Barack', \"Obama's\", 'headquarters'], 'in', ['Center', 'City', 'is', 'to', 'see', 'what']]\n",
+ "[['McCain', 'is', 'concentrating', 'on', 'drawing', 'votes'], 'in', ['more', 'rural', 'areas', 'of', 'Pennsylvania.', 'Still,']]\n",
+ "[['won', 'by', 'a', 'comfortable', 'margin', 'here'], 'in', ['the', 'Democratic', 'primary,', 'and', 'took', 'more']]\n",
+ "[['than', '70', 'percent', 'of', 'the', 'votes'], 'in', ['some', 'of', 'the', 'conservative', 'western', 'counties.']]\n",
+ "[['that', 'it', 'might', 'have', 'a', 'chance'], 'in', ['this', 'reliably', 'Democratic', 'state,', 'as', 'other']]\n",
+ "[['maverick', 'image', 'among', 'moderate', 'swing', 'voters'], 'in', ['the', 'Philadelphia', 'suburbs;', 'to', 'hold', 'onto']]\n",
+ "[['suburbs;', 'to', 'hold', 'onto', 'Republican', 'strongholds'], 'in', ['the', 'south-central', 'part', 'of', 'the', 'state,']]\n",
+ "[['conservative', 'Protestant,', 'and', 'to', 'win', 'big'], 'in', ['the', 'western', 'coal', 'region,', 'where', 'Clinton']]\n",
+ "[['their', 'hands,', 'walk', 'down', 'the', 'sidewalk'], 'in', ['this', 'city', 'in', 'the', 'rolling', 'Appalachian']]\n",
+ "[['down', 'the', 'sidewalk', 'in', 'this', 'city'], 'in', ['the', 'rolling', 'Appalachian', 'hills.', 'They', 'incarnate']]\n",
+ "[['hills.', 'They', 'incarnate', 'the', 'presidential', 'election'], 'in', ['this', 'city', 'and', 'this', 'state:', 'Dan']]\n",
+ "[['know', 'what', \"it's\", 'like', 'to', 'be'], 'in', ['debt', 'and', 'hurting.\"', 'Polls', 'show', 'Obama']]\n",
+ "[['but', 'even', 'partisans', 'put', 'little', 'stock'], 'in', ['those.', 'Hard', 'experience', 'has', 'shown', 'that']]\n",
+ "[['of', 'the', 'state,', 'and', 'Democrats', 'dominate'], 'in', ['Columbus,', 'Dayton', 'and', 'Cleveland.', 'But', 'the']]\n",
+ "[['the', 'electoral', 'war', 'is', 'fought', 'out'], 'in', ['more', 'divided', 'precincts', 'like', 'Chillicothe,', 'a']]\n",
+ "[['21,000', 'that', 'mirrored', 'the', 'statewide', 'results'], 'in', ['the', 'last', 'two', 'elections', 'by', 'going']]\n",
+ "[['chairwoman', 'and', 'a', 'real', 'estate', 'agent'], 'in', ['Chillicothe.', '\"I\\'ve', 'got', 'Democrats', 'walking', 'in']]\n",
+ "[['in', 'Chillicothe.', '\"I\\'ve', 'got', 'Democrats', 'walking'], 'in', ['and', 'asking', 'to', 'volunteer', 'for', 'McCain.\"']]\n",
+ "[['Sen.', 'Hillary', 'Rodham', 'Clinton', 'win', 'there'], 'in', ['the', 'Democratic', 'primary.', '\"Any', 'Democrat', 'who']]\n",
+ "[['tucked', 'into', 'the', 'windshields', 'of', 'cars'], 'in', ['the', 'parking', 'lot.', 'They', 'announced', 'a']]\n",
+ "[['something', 'big', '--', 'the', 'Obama', 'organization'], 'in', ['this', 'state.', 'North', 'Carolina', 'has', 'not']]\n",
+ "[['presidential', 'race', 'for', 'a', 'generation.', 'But'], 'in', ['one', 'of', 'the', 'biggest', 'surprises', 'of']]\n",
+ "[['campaign', 'season,', 'Obama', 'has', 'pulled', 'even'], 'in', ['the', 'polls', 'with', 'Sen.', 'John', 'McCain.']]\n",
+ "[['although', 'McCain', 'has', 'increased', 'his', 'spending'], 'in', ['recent', 'weeks.', 'Both', 'campaigns', 'have', 'stepped']]\n",
+ "[['said', 'Joseph', 'Scott,', '40,', 'who', 'works'], 'in', ['banking,', 'as', 'he', 'stood', 'in', 'line']]\n",
+ "[['works', 'in', 'banking,', 'as', 'he', 'stood'], 'in', ['line', 'in', 'Greensboro', 'for', 'more', 'than']]\n",
+ "[['banking,', 'as', 'he', 'stood', 'in', 'line'], 'in', ['Greensboro', 'for', 'more', 'than', 'an', 'hour']]\n",
+ "[['had', 'the', 'country', 'stars', 'Gretchen', 'Wilson'], 'in', ['Asheville', 'belting', 'out', '\"I\\'m', 'a', 'Redneck']]\n",
+ "[['Redneck', 'Woman\"', 'and', 'Hank', 'Williams', 'Jr.'], 'in', ['Elon', 'singing', 'his', 'own', '\"McCain-Palin', 'Tradition.\"']]\n",
+ "[['socialist,\"', 'Bob', 'Hartsock,', '78,', 'who', 'works'], 'in', ['real', 'estate', 'in', 'Concord,', 'said', 'after']]\n",
+ "[['78,', 'who', 'works', 'in', 'real', 'estate'], 'in', ['Concord,', 'said', 'after', 'a', 'McCain', 'rally']]\n",
+ "[['was', 'one', 'of', 'hundreds', 'of', 'people'], 'in', ['an', 'overflow', 'room', 'here', 'shrieking', 'for']]\n",
+ "[['nominee,', 'has', 'taken', 'a', 'commanding', 'lead'], 'in', ['polls', 'here.', 'Still,', 'New', 'Hampshire', 'voters']]\n",
+ "[['Rodham', \"Clinton's\", 'surprise', 'victory', 'over', 'Obama'], 'in', ['the', 'Democratic', 'primary', 'proved.', 'Obama', 'had']]\n",
+ "[['proved.', 'Obama', 'had', 'a', 'double-digit', 'lead'], 'in', ['some', 'polls', 'going', 'into', 'the', 'primary,']]\n",
+ "[['some', 'polls', 'going', 'into', 'the', 'primary,'], 'in', ['January,', 'and', 'his', 'startling', 'defeat', 'is']]\n",
+ "[['Hampshire', 'voters', 'make', 'their', 'final', 'decision'], 'in', ['the', 'last', 'three', 'days.', 'McCain', 'knows']]\n",
+ "[['is', 'to', 'campaign', 'here', 'Sunday.', 'And'], 'in', ['a', 'separate', 'visit', 'last', 'week,', 'Hillary']]\n",
+ "[['was', 'undertaking', 'the', 'largest', 'get-out-the-vote', 'effort'], 'in', ['state', 'history,', 'with', 'more', 'than', '3,000']]\n",
+ "[['on', 'blue-collar', 'cities', 'won', 'by', 'Clinton'], 'in', ['January,', 'including', 'Nashua,', 'Manchester', 'and', 'Rochester.']]\n",
+ "[['Rochester.', 'The', 'Republicans', 'were', 'also', 'homing'], 'in', ['on', 'areas', 'that', 'embraced', 'Clinton,', 'with']]\n",
+ "[['registered', 'as', 'a', 'Democrat', 'but', 'not'], 'in', ['touch', 'with', 'that', 'party', 'culturally.\"', '--']]\n",
+ "[['including', 'spending', 'the', 'Fourth', 'of', 'July'], 'in', ['Butte.', 'That', 'kind', 'of', 'attention', 'is']]\n",
+ "[['of', 'it', 'is', 'his', 'incessant', 'traveling'], 'in', ['Montana', 'and', 'the', 'lack', 'of', 'a']]\n",
+ "[['is', 'particularly', 'popular', 'among', 'conservative', 'voters'], 'in', ['this', 'independent-minded', 'state,', 'just', 'the', 'kind']]\n",
+ "[['planning', 'to', 'spend', '$300,000', 'to', '$400,000'], 'in', ['these', 'final', 'days', 'of', 'the', 'race,']]\n",
+ "[['a', 'Democrat', 'won', 'a', 'presidential', 'election'], 'in', ['Montana', 'was', 'Bill', 'Clinton', 'in', '1992,']]\n",
+ "[['election', 'in', 'Montana', 'was', 'Bill', 'Clinton'], 'in', ['1992,', 'and', 'that', 'victory', 'was', 'chalked']]\n",
+ "[['chalked', 'up', 'to', 'Ross', \"Perot's\", 'presence'], 'in', ['the', 'race,', 'and', 'his', 'siphoning', 'of']]\n",
+ "[['carried', 'the', 'state', 'by', '20', 'percent'], 'in', ['2000', 'and', '2004.', 'Obama', 'has', 'worked']]\n",
+ "[['On', 'Saturday,', 'Obama', 'ended', 'his', 'campaigning'], 'in', ['this', 'battleground', 'state', 'with', 'a', 'rally']]\n",
+ "[['this', 'battleground', 'state', 'with', 'a', 'rally'], 'in', ['Springfield,', 'the', 'hometown', 'of', 'former', 'Attorney']]\n",
+ "[['Missouri', 'has', 'voted', 'for', 'the', 'winner'], 'in', ['every', 'presidential', 'election', 'save', 'one', 'over']]\n",
+ "[['to', 'be', 'fighting', 'for', 'every', 'ballot'], 'in', ['every', 'county,', 'including', 'those', 'areas', 'normally']]\n",
+ "[['Palin,', 'and', 'polls', 'show', 'the', 'race'], 'in', ['Missouri', 'tighter', 'than', 'anywhere', 'in', 'the']]\n",
+ "[['race', 'in', 'Missouri', 'tighter', 'than', 'anywhere'], 'in', ['the', 'nation.', 'The', 'tradition', 'here', 'is']]\n",
+ "[['for', 'Democrats', 'to', 'run', 'up', 'majorities'], 'in', ['St.', 'Louis', 'and', 'Kansas', 'City', 'and']]\n",
+ "[['Kansas', 'City', 'and', 'Republicans', 'to', 'dominate'], 'in', ['the', 'dozens', 'of', 'rural', 'counties', 'in']]\n",
+ "[['in', 'the', 'dozens', 'of', 'rural', 'counties'], 'in', ['between,', 'leaving', 'both', 'parties', 'to', 'fight']]\n",
+ "[['Mike', 'Delia,', '27,', 'a', 'machine', 'operator'], 'in', ['Warren', 'County,', 'outside', 'St.', 'Louis,', 'where']]\n",
+ "[['States.\"', 'But', 'Obama', 'faces', 'a', 'challenge'], 'in', ['that', 'three', 'of', 'every', 'eight', 'Missourians']]\n",
+ "[['Arkansas.', 'So', 'a', 'basic', 'question,', 'especially'], 'in', ['the', 'southern', 'part', 'of', 'the', 'state,']]\n",
+ "[['way,\"', 'she', 'said', 'at', 'a', 'mall'], 'in', ['neighboring', 'St.', 'Charles', 'County.', '\"He', \"doesn't\"]]\n",
+ "[['campaign', 'began', 'broadcasting', 'two', 'commercials', 'here,'], 'in', ['a', 'sign', 'of', 'its', 'renewed', 'hopes']]\n",
+ "[['that', 'Georgia', 'could', 'be', 'truly', 'competitive'], 'in', ['this', 'election.', 'It', 'was', 'a', 'swift']]\n",
+ "[['were', 'waiting', 'more', 'than', 'four', 'hours'], 'in', ['some', 'places', 'to', 'cast', 'their', 'ballots,']]\n",
+ "[['ballots,', 'and', 'many', 'of', 'them', 'were'], 'in', ['left-leaning', 'urban', 'counties', 'in', 'and', 'around']]\n",
+ "[['them', 'were', 'in', 'left-leaning', 'urban', 'counties'], 'in', ['and', 'around', 'Atlanta,', 'where', 'support', 'for']]\n",
+ "[['year', 'out', 'of', 'every', 'other', 'year'], 'in', ['history', 'that', 'Georgia', 'could', 'go', 'for']]\n",
+ "[['an', 'Obama', 'supporter,', 'who', 'was', 'waiting'], 'in', ['a', 'four-hour', 'line', 'to', 'vote', 'on']]\n",
+ "[[\"it's\", 'anything', 'close', 'to', '30', 'percent'], 'in', ['the', 'end,', 'that', 'would', 'give', 'Obama']]\n",
+ "[['surprised', 'if', 'the', 'margin', 'of', 'victory'], 'in', ['Georgia', 'came', 'down', 'to', '10,000', 'or']]\n",
+ "[['\"You', 'cannot', 'be', 'the', 'fastest-growing', 'state'], 'in', ['the', 'nation', 'for', 'African-American', 'population', 'and']]\n",
+ "[['canvassers', 'appeared', 'at', 'Beth', \"Moriarty's\", 'door'], 'in', ['Orlando', 'looking', 'for', 'her', \"husband's\", 'vote.']]\n",
+ "[['has', 'never', 'voted', 'for', 'a', 'Democrat'], 'in', ['his', 'entire', 'life.', 'Until', 'Tuesday.\"', 'Perhaps']]\n",
+ "[['life.', 'Until', 'Tuesday.\"', 'Perhaps', 'no', 'state'], 'in', ['recent', 'presidential', 'politics', 'is', 'more', 'resonant']]\n",
+ "[['nominee,', 'now', 'finds', 'himself', 'falling', 'behind'], 'in', ['many', 'recent', 'polls.', 'Sen.', 'Barack', 'Obama,']]\n",
+ "[['money', '(outspending', 'the', 'McCain', 'campaign', '4-to1'], 'in', ['some', 'weeks);', 'and', 'voter', 'registrations', '(a']]\n",
+ "[['edge', 'over', 'Republicans,', 'up', 'from', '280,000'], 'in', ['2006).', 'None', 'of', 'this', 'is', 'destiny,']]\n",
+ "[['of', 'this', 'is', 'destiny,', 'of', 'course,'], 'in', ['such', 'an', 'unpredictable', 'state.', 'Every', 'poll']]\n",
+ "[['McCain,', 'who', 'spent', 'time', 'stationed', 'here'], 'in', ['the', 'Navy,', 'has', 'recently', 'revived', 'what']]\n",
+ "[['people', 'out', 'of', 'work.\"', 'With', 'unemployment'], 'in', ['Florida', 'at', 'its', 'highest', 'rate', 'in']]\n",
+ "[['in', 'Florida', 'at', 'its', 'highest', 'rate'], 'in', ['14', 'years,', 'the', 'message', 'will', 'no']]\n",
+ "[[\"Democrats'\", 'turf,', 'putting', 'Florida', 'once', 'again'], 'in', ['the', 'crosshairs', 'of', 'both', 'campaigns.', '\"We']]\n",
+ "[['CHANGES', 'TACTICS', 'DENVER', '--', 'The', 'reality'], 'in', ['Colorado', 'is', 'that', 'a', 'big', 'piece']]\n",
+ "[['of', 'the', 'registered', 'total,', 'are', 'already'], 'in', ['the', 'can,', 'cast', 'and', 'waiting', 'to']]\n",
+ "[['so', 'much,', 'since', 'voter', 'decisions', 'were'], 'in', ['many', 'cases', 'made', 'on', 'conclusions', 'reached']]\n",
+ "[['many', 'cases', 'made', 'on', 'conclusions', 'reached'], 'in', ['mid-to-late', 'October.', 'Second,', 'it', 'mandates,', 'in']]\n",
+ "[['in', 'mid-to-late', 'October.', 'Second,', 'it', 'mandates,'], 'in', ['a', 'still-tight', 'race,', 'a', 'pinpoint,', 'surgical']]\n",
+ "[['Diane', 'Tapia-Gonzales,', 'who', 'knocked', 'on', 'doors'], 'in', ['the', 'Denver', 'suburb', 'of', 'Arvada', 'on']]\n",
+ "[['had', 'already', 'voted', '--', 'updates', 'come'], 'in', ['daily', 'from', 'local', 'county', 'clerks', '--']]\n",
+ "[['and', 'who', 'had', 'a', 'mail-in', 'ballot'], 'in', ['hand', 'not', 'yet', 'submitted.', \"McCain's\", 'campaign']]\n",
+ "[['\"Everyone', 'knows', 'which', 'votes', 'are', 'turned'], 'in', ['and', 'where', 'the', 'votes', 'are', 'that']]\n",
+ "[['by', 'mail', 'or', 'by', 'early', 'voting'], 'in', ['regular', 'polling', 'places.', 'Registered', 'Republicans', 'outnumber']]\n",
+ "[['polling', 'places.', 'Registered', 'Republicans', 'outnumber', 'Democrats'], 'in', ['Colorado', 'by', 'about', '10,000,', 'out', 'of']]\n",
+ "[['by', 'far.', \"McCain's\", 'television', 'advertising', 'presence'], 'in', ['the', 'state', 'also', 'dropped', 'beginning', 'two']]\n",
+ "[['purely', 'tactical.', 'At', 'the', 'CBS', 'affiliate'], 'in', ['Denver,', 'KCNC,', 'for', 'example,', 'Obama', 'has']]\n",
+ "[['by', 'almost', '3-to-1', 'since', 'a', 'decision'], 'in', ['mid-October', 'to', 'spread', 'McCain', 'advertisements', 'out']]\n",
+ "[['He', 'plans', 'a', 'rally', 'on', 'Saturday'], 'in', ['Pueblo,', 'a', 'heavily', 'Hispanic,', 'mostly', 'blue-collar']]\n",
+ "[['financing', 'arms', 'eligible', 'to', 'take', 'part'], 'in', ['the', \"Treasury's\", '$700', 'billion', 'bailout', 'program,']]\n",
+ "[['Department', 'showed', 'that', 'the', 'economy', 'contracted'], 'in', ['the', 'third', 'quarter', 'at', 'a', '0.3']]\n",
+ "[['percent', 'annual', 'pace,', 'the', 'first', 'decline'], 'in', ['17', 'years,', 'the', 'report', 'said.', 'Business']]\n",
+ "[['report', 'said.', 'Business', 'investment', 'also', 'retreated'], 'in', ['the', 'quarter,', 'and', 'the', 'only', 'economic']]\n",
+ "[['only', 'economic', 'bright', 'spot', '(of', 'sorts)'], 'in', ['the', 'report', 'was', 'growth', 'in', 'government']]\n",
+ "[['sorts)', 'in', 'the', 'report', 'was', 'growth'], 'in', ['government', 'spending,', 'especially', 'on', 'the', 'military.']]\n",
+ "[['interest', 'rate', 'for', 'the', 'first', 'time'], 'in', ['seven', 'years', 'to', 'try', 'to', 'rekindle']]\n",
+ "[['years', 'to', 'try', 'to', 'rekindle', 'growth'], 'in', [\"Asia's\", 'largest', 'economy.', 'Behind', 'the', 'News:']]\n",
+ "[['and', 'ease', 'a', 'growing', 'credit', 'crunch'], 'in', ['Japan.', 'With', 'interest', 'rates', 'already', 'so']]\n",
+ "[['Eliot', 'Spitzer.', 'Conan', \"O'Brien\", '--', 'Yesterday,'], 'in', ['Washington,', 'the', 'Secret', 'Service', 'arrested', 'a']]\n",
+ "[['He', 'is', 'spending', 'his', 'time', 'campaigning'], 'in', ['states', 'that', 'went', 'Republicans', 'four', 'years']]\n",
+ "[['to', 'defend', 'states', 'that', 'Republicans', 'won'], 'in', ['2004', 'and', 'two', '--', 'New', 'Hampshire']]\n",
+ "[['the', 'last-minute', 'spending', 'by', 'McCain', 'was'], 'in', ['states', 'that', 'just', 'two', 'months', 'ago']]\n",
+ "[['ago', 'Republicans', 'believed', 'to', 'be', 'safely'], 'in', ['their', 'column.', 'They', 'include', 'Indiana,', 'North']]\n",
+ "[['McCain,', 'at', 'a', 'modest', 'outdoor', 'rally'], 'in', ['Newport', 'News,', 'Va.,', 'on', 'Saturday,', 'left']]\n",
+ "[['how', 'important', 'he', 'viewed', 'the', 'battle'], 'in', ['the', 'state.', '\"Let', 'me', 'state', 'the']]\n",
+ "[['\"My', 'friends,', 'I', 'need', 'your', 'help'], 'in', ['the', 'next', 'three', 'days.', 'Volunteer!', 'Knock']]\n",
+ "[[\"Palin's\", 'weekend', 'stops', 'have', 'been', 'mainly'], 'in', ['states', 'that', 'President', 'Bush', 'won', 'four']]\n",
+ "[['said', 'he', 'was', 'confident', 'of', 'victory'], 'in', ['every', 'state', 'the', 'Democrats', 'won', 'in']]\n",
+ "[['in', 'every', 'state', 'the', 'Democrats', 'won'], 'in', ['2004,', 'allowing', 'Obama', 'to', 'put', 'all']]\n",
+ "[['the', 'Kerry', 'states', 'right', 'now', 'are'], 'in', ['good', 'shape', 'for', 'us,\"', 'he', 'said.']]\n",
+ "[['Times', 'electoral', 'map', 'puts', 'five', 'states'], 'in', ['the', 'tossup', 'category,', 'based', 'on', 'polls,']]\n",
+ "[['Ohio.', 'Bush', 'won', 'all', 'those', 'states'], 'in', ['2004.', 'According', 'to', 'the', 'Times', 'count,']]\n",
+ "[['five', 'states', 'that', 'went', 'with', 'Bush'], 'in', ['2004', '--', 'Colorado,', 'Iowa,', 'Nevada,', 'New']]\n",
+ "[['two', 'years', 'ago,', 'the', 'school', 'board'], 'in', ['Whitefish', 'Bay,', 'Wis.,', 'gathered', 'to', 'discuss']]\n",
+ "[['how', 'to', 'plug', 'a', 'gaping', 'hole'], 'in', ['the', \"teachers'\", 'retirement', 'plan.', 'It', 'turned']]\n",
+ "[['school', 'districts', 'ultimately', 'invested', '$200', 'million'], 'in', [\"Noack's\", 'deal,', 'most', 'of', 'it', 'borrowed']]\n",
+ "[['system', 'are', 'among', 'the', 'many', 'players'], 'in', ['a', 'financial', 'fiasco', 'that', 'has', 'ricocheted']]\n",
+ "[['their', 'saga,', 'named', 'DEPFA,', 'is', 'now'], 'in', ['trouble.', 'The', 'Wisconsin', 'schools', 'are', 'on']]\n",
+ "[['the', 'stability', 'of', 'its', 'parent', 'company'], 'in', ['Munich,', 'forcing', 'German', 'officials', 'to', 'intervene']]\n",
+ "[['a', 'first-grade', 'teacher', 'at', 'Grewenow', 'Elementary'], 'in', ['Kenosha,', 'Wis.,', 'one', 'of', 'the', 'districts']]\n",
+ "[['one', 'of', 'the', 'districts', 'that', 'invested'], 'in', [\"Noack's\", 'deal.', '\"If', 'millions', 'of', 'dollars']]\n",
+ "[['11,', '2008', '(These', 'corrections', 'will', 'appear'], 'in', ['The', 'New', 'York', 'Times', 'on', 'Sunday.']]\n",
+ "[['News', 'Service', 'article', 'about', 'surging', 'unemployment'], 'in', ['Rhode', 'Island', 'misspelled', 'the', 'surname', 'of']]\n",
+ "[['News', 'Service', 'article', 'about', \"Hollywood's\", 'caution'], 'in', ['making', 'films', 'that', 'focus', 'on', 'African-American']]\n",
+ "[['misspelled', 'the', 'name', 'of', 'a', 'character'], 'in', ['a', 'series', 'of', 'films', 'by', 'the']]\n",
+ "[['misstated', 'the', 'role', 'of', 'Henry', 'McCullough'], 'in', ['a', 'folk', 'band', 'called', \"Sweeney's\", 'Men.']]\n",
+ "[[\"Sweeney's\", 'Men.', 'He', 'joined', 'the', 'band'], 'in', ['1968,', 'two', 'years', 'after', 'it', 'was']]\n",
+ "[['people', 'discussed', 'ways', 'to', 'stimulate', 'investment'], 'in', ['business', 'ventures', 'in', 'Iraq.', 'Almost', '95']]\n",
+ "[['to', 'stimulate', 'investment', 'in', 'business', 'ventures'], 'in', ['Iraq.', 'Almost', '95', 'percent', 'of', \"Iraq's\"]]\n",
+ "[['16', 'percent,', 'leading', 'to', 'a', 'drop'], 'in', ['the', 'money', 'available', 'for', 'rebuilding', 'infrastructure.']]\n",
+ "[['\"We', 'must', 'seriously', 'activate', 'foreign', 'investment'], 'in', ['Iraq,\"', 'he', 'said.', 'Iraqi', 'officials', 'emphasized']]\n",
+ "[['officials', 'emphasized', 'that', 'the', 'recent', 'decline'], 'in', ['violence', 'should', 'make', 'investing', 'in', 'the']]\n",
+ "[['decline', 'in', 'violence', 'should', 'make', 'investing'], 'in', ['the', 'country', 'safer,', 'and', 'Rafie', 'al-Issawi,']]\n",
+ "[['opportunity', 'to', 'again', 'warn', 'that', 'delays'], 'in', ['signing', 'a', 'security', 'pact', 'with', 'the']]\n",
+ "[['send', 'an', 'important', 'signal', 'not', 'just'], 'in', ['the', 'political', 'and', 'security', 'field,', 'but']]\n",
+ "[['political', 'and', 'security', 'field,', 'but', 'also'], 'in', ['the', 'economic', 'and', 'financial', 'fields', 'and']]\n",
+ "[['of', 'several', '\"significant', 'challenges\"', 'that', 'remained'], 'in', ['luring', 'foreign', 'investors,', 'including', 'complex', 'laws']]\n",
+ "[['G.', 'Perkins,', 'spokesman', 'for', 'U.S.-led', 'forces'], 'in', ['Iraq,', 'warned', 'that', 'the', '\"partnership\"', 'between']]\n",
+ "[['slides', 'to', 'the', 'Iraqi', 'government', 'outlining'], 'in', ['great', 'detail', 'what', 'America', 'currently', 'provides']]\n",
+ "[['what', 'America', 'currently', 'provides', 'to', 'Iraq'], 'in', ['security,', 'economic', 'and', 'technical', 'assistance', 'and']]\n",
+ "[['have', 'to', 'come', 'to', 'an', 'end'], 'in', ['the', 'absence', 'of', 'an', 'agreement,', 'according']]\n",
+ "[['people', 'discussed', 'ways', 'to', 'stimulate', 'investment'], 'in', ['business', 'ventures', 'in', 'Iraq.', 'Almost', '95']]\n",
+ "[['to', 'stimulate', 'investment', 'in', 'business', 'ventures'], 'in', ['Iraq.', 'Almost', '95', 'percent', 'of', \"Iraq's\"]]\n",
+ "[['16', 'percent,', 'leading', 'to', 'a', 'drop'], 'in', ['the', 'money', 'available', 'for', 'rebuilding', 'infrastructure.']]\n",
+ "[['\"We', 'must', 'seriously', 'activate', 'foreign', 'investment'], 'in', ['Iraq,\"', 'he', 'said.', 'Iraqi', 'officials', 'emphasized']]\n",
+ "[['officials', 'emphasized', 'that', 'the', 'recent', 'decline'], 'in', ['violence', 'should', 'make', 'investing', 'in', 'the']]\n",
+ "[['decline', 'in', 'violence', 'should', 'make', 'investing'], 'in', ['the', 'country', 'safer,', 'and', 'Rafie', 'al-Issawi,']]\n",
+ "[['opportunity', 'to', 'again', 'warn', 'that', 'delays'], 'in', ['signing', 'a', 'security', 'pact', 'with', 'the']]\n",
+ "[['send', 'an', 'important', 'signal', 'not', 'just'], 'in', ['the', 'political', 'and', 'security', 'field,', 'but']]\n",
+ "[['political', 'and', 'security', 'field,', 'but', 'also'], 'in', ['the', 'economic', 'and', 'financial', 'fields', 'and']]\n",
+ "[['of', 'several', '\"significant', 'challenges\"', 'that', 'remained'], 'in', ['luring', 'foreign', 'investors,', 'including', 'complex', 'laws']]\n",
+ "[['became', 'the', 'most', 'volatile', 'international', 'confrontation'], 'in', ['Indochina', 'in', '20', 'years.', 'Cambodian', 'troops']]\n",
+ "[['most', 'volatile', 'international', 'confrontation', 'in', 'Indochina'], 'in', ['20', 'years.', 'Cambodian', 'troops', 'occupy', 'the']]\n",
+ "[['the', 'swooping', 'cliff-top', 'temple,', 'which', 'is'], 'in', ['Cambodia', 'but', 'is', 'most', 'easily', 'reached']]\n",
+ "[['temple,', 'are', 'mostly', 'out', 'of', 'sight'], 'in', ['the', 'hills', 'or', 'in', 'camps', 'nearby']]\n",
+ "[['of', 'sight', 'in', 'the', 'hills', 'or'], 'in', ['camps', 'nearby', 'in', 'Thailand.', 'But', 'the']]\n",
+ "[['the', 'hills', 'or', 'in', 'camps', 'nearby'], 'in', ['Thailand.', 'But', 'the', 'Cambodian', 'government', 'seems']]\n",
+ "[['Cambodian', 'government', 'seems', 'to', 'be', 'digging'], 'in', ['for', 'a', 'long', 'siege.', 'A', 'new']]\n",
+ "[['new', 'budget', 'expected', 'to', 'be', 'approved'], 'in', ['the', 'coming', 'week', 'would', 'double', 'the']]\n",
+ "[['feel', 'of', 'Cambodian', 'deployments', 'throughout', 'conflicts'], 'in', ['recent', 'decades.', 'At', 'the', 'bottom', 'of']]\n",
+ "[['to', 'have', 'been', 'gained', 'or', 'lost'], 'in', ['the', 'fighting.', 'The', 'dispute', 'flared', 'in']]\n",
+ "[['in', 'the', 'fighting.', 'The', 'dispute', 'flared'], 'in', ['July,', 'when', 'UNESCO,', 'the', 'cultural', 'agency']]\n",
+ "[['a', 'Cambodian', 'government', 'proposal.', 'Domestic', 'politics'], 'in', ['Thailand', 'fueled', 'a', 'nationalist', 'response,', 'and']]\n",
+ "[['moments', 'of', 'the', 'most', 'gripping', 'campaign'], 'in', ['modern', 'history,', 'John', 'McCain', 'is', 'still']]\n",
+ "[['Obama', 'as', 'a', 'dangerous', 'enigma.', 'But,'], 'in', ['an', 'odd', 'and', 'remarkable', 'reversal,', 'it']]\n",
+ "[['with', 'one', 'of', 'the', 'best', 'brands'], 'in', ['American', 'politics.', 'And', 'it', 'is', 'Obama,']]\n",
+ "[['steadier', 'brand.', 'The', 'McCain', 'campaign', 'specializes'], 'in', ['erratica,', 'while', 'the', 'Obama', 'campaign', 'continues']]\n",
+ "[['the', 'most', 'known', 'and', 'knowable', 'quantities'], 'in', ['American', 'politics.', 'For', 'most', 'of', 'his']]\n",
+ "[['results', 'of', \"January's\", 'New', 'Hampshire', 'primary'], 'in', ['his', 'hotel', 'suite', 'in', 'Nashua.', 'He']]\n",
+ "[['Hampshire', 'primary', 'in', 'his', 'hotel', 'suite'], 'in', ['Nashua.', 'He', 'relished', 'spending', 'all', 'day']]\n",
+ "[['a', 'version', 'of', 'British', 'question', 'time'], 'in', ['Congress.', 'While', 'acknowledging', 'he', 'was', 'a']]\n",
+ "[['a', 'dream', 'of', 'a', 'West', 'Wing'], 'in', ['which', 'he', 'would', 'cut', 'back', 'on']]\n",
+ "[['the', 'process', 'even', 'as', 'he', 'participated'], 'in', ['it.', 'Whether', 'it', 'was', 'the', 'five']]\n",
+ "[['was', 'the', 'five', 'years', 'he', 'spent'], 'in', ['a', 'hole', 'in', 'Hanoi', 'or', 'just']]\n",
+ "[['years', 'he', 'spent', 'in', 'a', 'hole'], 'in', ['Hanoi', 'or', 'just', 'his', 'gregarious', 'makeup,']]\n",
+ "[['it', 'reporters,', 'voters', 'or', 'the', 'pols'], 'in', ['his', 'posse,', 'like', 'Joe', 'Lieberman', 'and']]\n",
+ "[['Alone,', 'McCain', 'always', 'rejected', 'the', 'solitary'], 'in', ['favor', 'of', 'the', 'social.', 'But', 'ever']]\n",
+ "[['economy', 'being', 'strong,', 'saying', 'it', 'once'], 'in', ['August', 'and', 'again', 'in', 'September?', 'Why']]\n",
+ "[['it', 'once', 'in', 'August', 'and', 'again'], 'in', ['September?', 'Why', 'would', 'he', 'threaten', 'to']]\n",
+ "[['Bushies,', 'surrounding', 'himself', 'with', 'mercenaries', 'trained'], 'in', ['the', 'same', 'Rovian', 'tactics', 'that', 'tore']]\n",
+ "[['and', 'tore', 'apart', 'his', 'campaign', '--'], 'in', ['2000.', 'Why', 'did', 'a', 'politician', 'who']]\n",
+ "[['Friday,', 'when', 'she', 'entered', 'a', 'rally'], 'in', ['York,', 'Pa.,', 'to', 'the', 'tune', 'of']]\n",
+ "[['conservative', 'radio', 'station', 'broadcast', 'an', 'interview'], 'in', ['which', 'she', 'accused', 'reporters', 'of', 'threatening']]\n",
+ "[['put', 'Palin', 'on', 'a', 'couture', 'catwalk'], 'in', ['a', 'tin-cup', 'economy', 'and', 'then,', 'when']]\n",
+ "[['charged', 'with', 'conspiracy', 'and', 'with', 'operating'], 'in', ['the', 'United', 'States', 'as', 'an', 'unauthorized']]\n",
+ "[['say', 'Duran,', 'who', 'owns', 'a', 'house'], 'in', ['the', 'Miami', 'area,', 'came', 'to', 'the']]\n",
+ "[['Hugo', 'Chavez,', 'have', 'denied', 'any', 'role'], 'in', ['the', 'matter,', 'which', 'has', 'made', 'headlines']]\n",
+ "[['the', 'matter,', 'which', 'has', 'made', 'headlines'], 'in', ['Latin', 'America.', 'The', \"jury's\", 'impasse', 'has']]\n",
+ "[['has', 'prompted', 'some', 'Venezuelans', 'to', 'speculate'], 'in', ['news', 'blogs', 'and', 'Internet', 'chat', 'rooms']]\n",
+ "[['the', 'Duran', 'trial', 'from', 'its', 'inception'], 'in', ['September.', '\"But', 'if', 'there', 'is', 'a']]\n",
+ "[['for', 'how', 'long', 'we', 'continue', 'nation-building'], 'in', ['Iraq.', 'As', 'the', 'campaign', 'comes', 'to']]\n",
+ "[['at', 'what', 'sacrifice', 'we', 'do', 'nation-building'], 'in', ['America.', 'Unfortunately,', \"you'd\", 'barely', 'know', 'that']]\n",
+ "[['from', 'the', 'presidential', 'debates.', 'Watching', 'them'], 'in', ['the', 'context', 'of', 'the', 'meltdown', 'of']]\n",
+ "[['the', 'two', 'contestants', 'were', 'kept', 'offstage'], 'in', ['a', 'soundproof', 'booth', 'and', 'brought', 'out']]\n",
+ "[['to', 'pay,', 'because', 'this', 'meltdown', 'comes'], 'in', ['the', 'context', 'of', 'what', 'has', 'been']]\n",
+ "[['wealth', 'transfer', 'since', 'the', 'Bolshevik', 'Revolution'], 'in', ['Russia', 'in', '1917,\"', 'says', 'Michael', 'Mandelbaum,']]\n",
+ "[['since', 'the', 'Bolshevik', 'Revolution', 'in', 'Russia'], 'in', ['1917,\"', 'says', 'Michael', 'Mandelbaum,', 'author', 'of']]\n",
+ "[['so', 'much', 'of', 'its', \"children's\", 'wealth'], 'in', ['such', 'a', 'short', 'period', 'of', 'time']]\n",
+ "[['little', 'to', 'show', 'for', 'it', 'as'], 'in', ['the', 'Bush', 'years.', 'Under', 'George', 'W.']]\n",
+ "[['of', 'wealth', 'that', 'has', 'taken', 'place'], 'in', ['the', 'last', 'two', 'months', 'in', 'the']]\n",
+ "[['place', 'in', 'the', 'last', 'two', 'months'], 'in', ['the', 'markets,', 'and', 'the', 'need', 'for']]\n",
+ "[['a', 'result,', 'slowing', 'down', 'climate', 'change'], 'in', ['the', 'next', 'eight', 'years', 'is', 'going']]\n",
+ "[['require', 'even', 'bigger', 'changes', 'and', 'investments'], 'in', ['how', 'we', 'use', 'energy.', 'Given', 'that']]\n",
+ "[['without', 'punishing', 'Main', 'Street', '--', 'when,'], 'in', ['fact,', 'they', 'are', 'intricately', 'intertwined.', 'A']]\n",
+ "[['fund', '--', 'Reserve', 'Primary', '--', 'failed'], 'in', ['September', 'because', 'the', 'extra', 'interest', 'it']]\n",
+ "[['extra', 'interest', 'it', 'offered', 'customers', 'derived,'], 'in', ['part,', 'from', 'the', '$785', 'million', 'in']]\n",
+ "[['in', 'part,', 'from', 'the', '$785', 'million'], 'in', ['high-yielding', 'Lehman', 'Brothers', 'commercial', 'paper', 'and']]\n",
+ "[['can', 'explain', 'that', 'we', 'are', 'all'], 'in', ['the', 'same', 'boat,', 'that', 'a', 'leak']]\n",
+ "[['thank', 'you.', 'The', 'Supreme', 'Court', 'specializes'], 'in', ['law,', 'not', 'lexicography.', 'But', 'it', 'will']]\n",
+ "[['not', 'have', 'the', 'slightest', 'clue;', 'and,'], 'in', ['a', 'recent', 'addition,', 'that', 'someone', 'has']]\n",
+ "[['word', 'I', 'mean.', 'A', 'central', 'question'], 'in', ['the', 'case', 'of', 'Federal', 'Communications', 'Commission']]\n",
+ "[['at', 'receiving', 'a', 'Golden', 'Globe', 'award'], 'in', ['2003', 'by', 'saying', 'his', 'victory', 'was']]\n",
+ "[['her', 'critics.', 'And', 'there', 'was', 'sex'], 'in', ['the', 'air,', 'the', 'commission', 'said,', 'when']]\n",
+ "[['hardly', 'seems', 'debatable,\"', 'the', 'commission', 'wrote'], 'in', ['2006,', '\"that', 'the', \"word's\", 'power', 'to']]\n",
+ "[['and', 'explicit', 'words', 'for', 'sexual', 'activity'], 'in', ['the', 'English', 'language.\"', 'The', 'federal', 'appeals']]\n",
+ "[['English', 'language.\"', 'The', 'federal', 'appeals', 'court'], 'in', ['New', 'York', 'disagreed.', '\"As', 'the', 'general']]\n",
+ "[['year,', 'four-letter', 'words', '\"are', 'often', 'used'], 'in', ['everyday', 'conversation', 'without', 'any', \"'sexual\", 'or']]\n",
+ "[['has', 'not', 'been', 'entirely', 'consistent.', 'Swearing'], 'in', ['\"Saving', 'Private', 'Ryan,\"', 'the', 'Steven', 'Spielberg']]\n",
+ "[['Swearing', 'by', 'blues', 'masters', 'and', 'others'], 'in', ['a', 'music', 'documentary', 'produced', 'by', 'Martin']]\n",
+ "[['much', 'had', 'changed', 'since', 'the', 'decision'], 'in', ['the', 'Carlin', 'case,', 'FCC', 'v.', 'Pacifica']]\n",
+ "[['at', '\"an', 'inexplicable', 'competitive', 'disadvantage.\"', 'Even'], 'in', ['the', 'Pacifica', 'case,', 'the', 'court', 'moved']]\n",
+ "[['her', 'critics.', '\"Such', 'expression', 'must', 'be,'], 'in', ['some', 'significant', 'way,', 'erotic\"', 'before', 'it']]\n",
+ "[['Marshall', 'Harlan', 'wrote', 'for', 'the', 'majority'], 'in', ['Cohen', 'v.', 'California.', '\"It', 'cannot', 'plausibly']]\n",
+ "[['it,\"', 'Sheidlower', 'said', 'of', 'the', 'word'], 'in', ['an', 'interview', 'the', 'other', 'day.', 'Sheidlower']]\n",
+ "[['according', 'to', 'the', 'dictionary,', 'first', 'appeared'], 'in', ['1973,', 'in', 'this', 'newspaper.)', 'The', 'power']]\n",
+ "[['the', 'dictionary,', 'first', 'appeared', 'in', '1973,'], 'in', ['this', 'newspaper.)', 'The', 'power', 'of', 'the']]\n",
+ "[['of', 'the', 'word', 'to', 'shock', 'is'], 'in', ['decline,', 'Sheidlower', 'said,', 'largely', 'because', 'its']]\n",
+ "[['later.\"', 'The', 'word', 'has', 'seldom', 'been,'], 'in', ['any', 'event,', 'the', 'most', 'offensive', 'one']]\n",
+ "[['said.', '\"I\\'m', 'highly', 'opposed', 'to', 'censorship'], 'in', ['any', 'form,\"', 'he', 'added.', '\"This', 'is']]\n",
+ "[['for', 'a', 'gigantic', 'crowd', 'this', 'week'], 'in', ['Grant', 'Park,', 'the', \"city's\", 'iconic', 'front']]\n",
+ "[['she', 'said.', '\"Will', 'I', 'be', 'here'], 'in', ['spirit?', 'You', 'bet', 'you.\"', 'Chicago,', 'it']]\n",
+ "[['minds', 'about', 'this', 'party.', 'Many', 'supporters'], 'in', [\"Obama's\", 'hometown', 'speak', 'with', 'pride', 'of']]\n",
+ "[['the', 'first', 'black', 'person', 'claim', 'victory'], 'in', ['a', 'presidential', 'campaign', 'here', 'on', 'the']]\n",
+ "[['on', 'the', 'edge', 'of', 'Lake', 'Michigan,'], 'in', ['view', 'of', 'their', 'beloved', 'skyline.', 'Still,']]\n",
+ "[['view', 'of', 'their', 'beloved', 'skyline.', 'Still,'], 'in', ['hushed', 'tones,', 'some', 'say', 'they', 'are']]\n",
+ "[['they', 'are', 'worried', 'about', 'his', 'safety'], 'in', ['the', 'public', 'park', 'and', 'about', 'how']]\n",
+ "[['and', 'about', 'how', 'a', 'huge', 'crowd'], 'in', ['this', 'city,', 'which', 'has', 'seen', 'violence']]\n",
+ "[['tickets', 'use', '\"common', 'sense\"', 'and', 'stay'], 'in', ['their', 'own', 'neighborhoods.', '\"We', \"can't\", 'have']]\n",
+ "[['have', 'mischief.\"', 'Facing', 'labor', 'shortages', 'back'], 'in', ['1990', 'but', 'ever', 'wary', 'of', 'allowing']]\n",
+ "[['1990', 'but', 'ever', 'wary', 'of', 'allowing'], 'in', ['foreigners,', 'Japan', 'made', 'an', 'exception', 'for']]\n",
+ "[['to', 'Brazil', 'would', 'fit', 'more', 'easily'], 'in', ['a', 'society', 'fiercely', 'closed', 'to', 'outsiders,']]\n",
+ "[['one,', 'the', 'number', 'of', 'Japanese-Brazilian', 'workers'], 'in', ['Japan', 'has', 'kept', 'growing.', 'They', 'are']]\n",
+ "[['has', 'kept', 'growing.', 'They', 'are', 'clustered'], 'in', ['industrial', 'regions', 'dotted', 'with', 'factories', 'supplying']]\n",
+ "[['Toyota,', 'whose', 'headquarters', 'gave', 'this', 'city'], 'in', ['central', 'Japan', 'its', 'name.', 'But', 'perhaps']]\n",
+ "[['Japan', 'its', 'name.', 'But', 'perhaps', 'nowhere'], 'in', ['this', 'country', 'do', 'Japanese', 'and', 'Japanese-Brazilians']]\n",
+ "[['rub', 'shoulders', 'with', 'such', 'intensity', 'as'], 'in', ['a', 'public', 'housing', 'complex', 'here', 'called']]\n",
+ "[['complex', 'here', 'called', 'Homi', 'Estate.', 'Built'], 'in', ['the', '1970s', 'for', 'young', 'Japanese', 'families,']]\n",
+ "[['community', 'leader,', 'said,', '\"I', 'never', 'imagined'], 'in', ['my', 'wildest', 'dreams', 'that', 'this', 'would']]\n",
+ "[['temporary', 'workers', 'from', 'China', 'and', 'elsewhere'], 'in', ['Asia.', 'As', 'the', 'demographic', 'squeeze', 'grows']]\n",
+ "[['--', 'whose', 'children', 'are', 'growing', 'up'], 'in', ['Japan', 'and,', 'in', 'many', 'cases,', 'coming']]\n",
+ "[['are', 'growing', 'up', 'in', 'Japan', 'and,'], 'in', ['many', 'cases,', 'coming', 'of', 'age', 'here']]\n",
+ "[['no', 'doubt,', 'be', 'less', 'impressed.', 'But,'], 'in', ['California,', 'both', 'types', 'of', 'moviegoers', 'will']]\n",
+ "[['eerie', 'familiarity.', 'The', 'state', 'is', 'embroiled'], 'in', ['a', 'fight', 'over', 'another', 'numbered', 'ballot']]\n",
+ "[['by', 'a', 'curly', 'headed', 'Emilie', 'Hirsch'], 'in', ['the', 'film.', '\"It\\'s', 'like', \"there's\", 'a']]\n",
+ "[['the', 'parallels', 'between', 'the', 'campaign', 'chronicled'], 'in', ['the', 'movie', 'and', 'the', 'real-life', 'battle']]\n",
+ "[['the', 'role', 'that', 'children', 'have', 'played'], 'in', ['both', 'campaigns', 'as', 'political', 'symbols.', 'In']]\n",
+ "[['that', 'gay', 'marriage', 'will', 'be', 'taught'], 'in', ['schools', 'to', 'young', 'children.', '\"I\\'m', 'all']]\n",
+ "[['social', 'experiment.\"', 'Proposition', '6', 'was', 'hatched'], 'in', ['California', 'just', 'days', 'after', 'the', 'singer']]\n",
+ "[['effort', 'to', 'overturn', 'an', 'antidiscrimination', 'law'], 'in', ['Miami', 'in', '1977.', '(At', 'the', \"film's\"]]\n",
+ "[['overturn', 'an', 'antidiscrimination', 'law', 'in', 'Miami'], 'in', ['1977.', '(At', 'the', \"film's\", 'premiere', 'in']]\n",
+ "[['in', '1977.', '(At', 'the', \"film's\", 'premiere'], 'in', ['San', 'Francisco', 'last', 'Tuesday,', 'the', 'crowd']]\n",
+ "[['Many', 'analysts', 'say', 'the', 'critical', 'factor'], 'in', ['defeating', 'Proposition', '6', 'was', 'Ronald', 'Reagan,']]\n",
+ "[['out', 'against', 'Proposition', '8.', 'And', 'as'], 'in', ['1978,', 'the', 'election', 'on', 'Tuesday', 'is']]\n",
+ "[['about', 'the', 'rights', 'of', 'gay', 'people'], 'in', ['California,', 'which', 'are', 'and', 'should', 'be']]\n",
+ "[['for', 'gay', 'Americans.', 'The', '2008', 'vote'], 'in', ['California', 'comes', 'after', 'a', 'decision', 'by']]\n",
+ "[['decision', 'by', 'the', 'state', 'Supreme', 'Court'], 'in', ['May', 'to', 'permit', 'same-sex', 'marriages', 'made']]\n",
+ "[['the', 'third.)', 'Such', 'notions', 'were', 'fanciful'], 'in', [\"Milk's\", 'time,', 'said', 'Art', 'Agnos,', 'a']]\n",
+ "[['partner', 'with', 'Milk.', '\"Had', 'someone', 'said'], 'in', ['1978', 'that', 'you', 'would', 'have', 'the']]\n",
+ "[['Such', 'figures', 'are', 'harder', 'to', 'find'], 'in', ['this', 'generation', 'of', 'gay', 'leaders,', 'said']]\n",
+ "[['Republican.', '\"There', 'are', 'no', 'Harvey', 'Milks'], 'in', ['this', 'campaign.\"', 'he', 'said.', 'Sens.', 'Barack']]\n",
+ "[['executive', 'at', 'an', 'international', 'relocation', 'service'], 'in', ['Louisville,', 'Ky.', 'Finke,', 'a', 'Republican,', 'voted']]\n",
+ "[['bright', 'and', 'has', 'been', 'very', 'steady'], 'in', ['this', 'campaign.\"', 'He', 'added', 'that', 'it']]\n",
+ "[['weekend,\"', 'he', 'said.', 'While', 'many', 'people'], 'in', ['this', 'campaign-saturated', 'country', 'are', 'relieved', 'that']]\n",
+ "[['a', 'Brooklyn,', 'N.Y.,', 'native', 'who', 'lives'], 'in', ['Palm', 'Beach', 'Gardens,', 'Fla.', 'Wolpo', 'vows']]\n",
+ "[['said,', 'and', 'that', 'puts', 'everything', 'else'], 'in', ['perspective.', '\"This', 'other', 'thing', 'is', 'just']]\n",
+ "[['President', 'Bush', 'as', 'the', 'worst', 'president'], 'in', ['American', 'history.', 'A', 'couple', 'of', 'others']]\n",
+ "[['than', '98', 'percent', 'of', 'the', 'historians'], 'in', ['the', 'poll,', 'conducted', 'through', 'the', 'History']]\n",
+ "[['world.', 'There', 'are', 'three', 'general', 'ways'], 'in', ['which', 'we', 'can', 'signal', 'a', 'new']]\n",
+ "[['be', 'respected', 'as', 'fair', 'and', 'authoritative'], 'in', ['a', 'way', 'that', 'one', 'composed', 'of']]\n",
+ "[['and', 'Pakistan', 'policy', 'is', 'a', 'mess'], 'in', ['part', 'because', 'Osama', 'bin', \"Laden's\", 'approval']]\n",
+ "[['because', 'Osama', 'bin', \"Laden's\", 'approval', 'rating'], 'in', ['Pakistan', '(34', 'percent)', 'is', 'almost', 'double']]\n",
+ "[['means', 'a', 'vigorous', 'effort', 'for', 'peace'], 'in', ['the', 'Middle', 'East.', 'We', 'also', 'need']]\n",
+ "[['a', 'single', 'weapon', 'during', \"Clinton's\", 'years'], 'in', ['office;', 'under', 'Bush,', 'it', 'has', 'produced']]\n",
+ "[['and', 'they', 'served', 'our', 'interests.', 'Now,'], 'in', ['the', 'aftermath', 'of', 'the', 'Cold', 'War,']]\n",
+ "[['years,', 'the', 'United', 'States', 'has', 'been'], 'in', ['self-imposed', 'exile,', 'and', 'that', 'is', 'one']]\n",
+ "[[\"let's\", 'rejoin', 'the', 'world.', 'Growing', 'up'], 'in', ['St.', 'Louis', 'in', 'the', '1950s', 'and']]\n",
+ "[['world.', 'Growing', 'up', 'in', 'St.', 'Louis'], 'in', ['the', '1950s', 'and', \"'60s,\", 'Deddrick', 'Battle']]\n",
+ "[['up,', 'I', 'always', 'thought', 'they', 'put'], 'in', ['who', 'they', 'wanted', 'to', 'put', 'in.']]\n",
+ "[['according', 'to', 'dozens', 'of', 'interviews', 'conducted'], 'in', ['the', 'last', 'several', 'days', 'in', 'six']]\n",
+ "[['conducted', 'in', 'the', 'last', 'several', 'days'], 'in', ['six', 'states.', 'Over', 'and', 'again,', 'first-time']]\n",
+ "[['to', 'miss', 'out', 'on', 'their', 'part'], 'in', ['writing', 'what', 'could', 'be', 'a', 'new']]\n",
+ "[['registration', 'drives', 'and', 'new', 'early-voting', 'procedures'], 'in', ['many', 'states,', 'which', 'have', 'made', 'the']]\n",
+ "[['the', 'feeling', 'that', 'they', 'are', 'participating'], 'in', ['what', 'could', 'become', 'a', 'touchstone', 'moment,']]\n",
+ "[['do', 'my', 'part', 'to', 'put', 'him'], 'in', ['the', 'office.', 'How', 'would', 'I', 'explain']]\n",
+ "[['On', 'MSNBC,', 'Sen.', 'Barack', \"Obama's\", 'surge'], 'in', ['the', 'polls', 'was', 'so', 'strong', 'he']]\n",
+ "[['was', 'so', 'strong', 'he', 'was', 'competitive'], 'in', [\"McCain's\", 'home', 'state,', 'Arizona.', 'The', 'everyman']]\n",
+ "[['expected', 'appearance', 'at', 'a', 'morning', 'rally'], 'in', ['Defiance,', 'Ohio,', 'and', 'the', \"senator's\", 'efforts']]\n",
+ "[['a', 'boost', 'at', 'an', 'afternoon', 'rally'], 'in', ['Sandusky,', 'Ohio,', 'from', 'none', 'other', 'than']]\n",
+ "[['McCain\";', 'he', 'was', 'gaining', 'new', 'ground'], 'in', ['ever-tightening', 'polls,', 'despite', 'the', 'overwhelming', 'bias']]\n",
+ "[['despite', 'the', 'overwhelming', 'bias', 'against', 'him'], 'in', ['the', 'mainstream', 'news', 'media;', 'and', \"Obama's\"]]\n",
+ "[['the', 'MSNBC', 'host,', 'said', 'Wednesday', 'night'], 'in', ['addressing', 'those', 'who', 'might', 'be', 'leaning']]\n",
+ "[['shots', 'of', 'drug', 'traffickers', 'that', 'appear'], 'in', ['the', 'Mexican', 'press', 'show', 'surly-looking', 'roughnecks']]\n",
+ "[['An', 'anti-corruption', 'investigation', 'unveiled', 'last', 'week'], 'in', ['the', 'Mexican', 'capital,', 'however,', 'made', 'it']]\n",
+ "[['it', 'clear', 'that', 'not', 'everybody', 'enmeshed'], 'in', ['the', 'narcotics', 'trade', 'looked', 'the', 'part.']]\n",
+ "[['bad', 'guys.', 'Among', 'the', 'greatest', 'challenges'], 'in', [\"Mexico's\", 'drug', 'war', 'is', 'the', 'fact']]\n",
+ "[['old.', 'And', 'they', 'can', 'work', 'anywhere:'], 'in', ['remote', 'drug', 'labs,', 'as', 'part', 'of']]\n",
+ "[['reality', 'is', 'that', 'many', 'public', 'servants'], 'in', ['Mexico', 'are', 'serving', 'both', 'the', 'taxpayers']]\n",
+ "[['taxpayers', 'and', 'the', 'traffickers.', 'The', 'men'], 'in', ['suits,', 'it', 'turns', 'out,', 'were', 'both']]\n",
+ "[['bad', 'guys,', 'corrupt', 'officials', 'high', 'up'], 'in', ['an', 'elite', 'unit', 'of', 'the', 'federal']]\n",
+ "[['to', 'the', 'feared', 'Beltran', 'Leyva', 'cartel'], 'in', ['exchange', 'for', 'suitcases', 'full', 'of', 'cash.']]\n",
+ "[['crucial', 'part', 'of', 'his', 'presidency,', 'said'], 'in', ['a', 'speech', 'Tuesday,', 'after', 'the', 'arrests']]\n",
+ "[['willing', 'to', 'join', 'the', 'drug', 'gangs'], 'in', ['exchange', 'for', 'cash,', 'including', 'the', 'farmers']]\n",
+ "[['of', 'Sen.', 'Barack', 'Obama', 'was', 'living'], 'in', ['the', 'United', 'States', 'illegally,', 'his', 'campaign']]\n",
+ "[['Onyango,', 'referred', 'to', 'as', '\"Auntie', 'Zeituni\"'], 'in', ['a', 'passage', 'in', \"Obama's\", 'memoir,', 'applied']]\n",
+ "[['as', '\"Auntie', 'Zeituni\"', 'in', 'a', 'passage'], 'in', [\"Obama's\", 'memoir,', 'applied', 'for', 'political', 'asylum']]\n",
+ "[[\"Obama's\", 'memoir,', 'applied', 'for', 'political', 'asylum'], 'in', ['the', 'United', 'States', 'in', '2004,', 'but']]\n",
+ "[['political', 'asylum', 'in', 'the', 'United', 'States'], 'in', ['2004,', 'but', 'a', 'federal', 'immigration', 'judge']]\n",
+ "[['largely', 'raised', 'by', 'his', 'maternal', 'grandparents'], 'in', ['a', 'modest', 'apartment', 'in', 'Honolulu,', 'first']]\n",
+ "[['maternal', 'grandparents', 'in', 'a', 'modest', 'apartment'], 'in', ['Honolulu,', 'first', 'met', 'Onyango', 'when', 'he']]\n",
+ "[['the', 'ceremony', 'when', 'Obama', 'was', 'sworn'], 'in', ['to', 'the', 'U.S.', 'Senate', 'in', '2004,']]\n",
+ "[['sworn', 'in', 'to', 'the', 'U.S.', 'Senate'], 'in', ['2004,', 'but', 'campaign', 'officials', 'said', 'he']]\n",
+ "[['said', 'he', 'had', 'provided', 'no', 'assistance'], 'in', ['getting', 'her', 'a', 'tourist', 'visa', 'and']]\n",
+ "[['ceremony,', 'Onyango', 'and', 'another', 'relative', 'said'], 'in', ['interviews', 'that', 'they', 'had', 'flown', 'to']]\n",
+ "[['she', 'called', 'to', 'say', 'she', 'was'], 'in', ['Boston,', 'but', 'he', 'did', 'not', 'see']]\n",
+ "[['Zeituni', 'Onyango', 'on', 'Orton', 'Marotta', 'Way'], 'in', ['South', 'Boston', 'as', 'making', 'a', 'series']]\n",
+ "[['reported', 'on', 'Thursday', 'that', 'Onyango', 'lived'], 'in', ['\"modest', 'circumstances\"', 'in', 'public', 'housing', 'in']]\n",
+ "[['that', 'Onyango', 'lived', 'in', '\"modest', 'circumstances\"'], 'in', ['public', 'housing', 'in', 'Boston.', 'On', 'Friday,']]\n",
+ "[['in', '\"modest', 'circumstances\"', 'in', 'public', 'housing'], 'in', ['Boston.', 'On', 'Friday,', 'The', 'AP', 'reported']]\n",
+ "[['The', 'AP', 'reported', 'that', 'she', 'was'], 'in', ['the', 'country', 'illegally', 'and', 'that', 'her']]\n",
+ "[['it', 'was', '\"law-enforcement', 'sensitive.\"', 'Onyango', 'lives'], 'in', ['a', 'disabled-access', 'apartment', 'in', 'South', 'Boston,']]\n",
+ "[['Onyango', 'lives', 'in', 'a', 'disabled-access', 'apartment'], 'in', ['South', 'Boston,', 'and', 'worked', 'as', 'a']]\n",
+ "[['modest', 'complex', 'on', 'a', 'narrow', 'street'], 'in', ['a', 'mostly', 'working-class', 'neighborhood.', 'Responding', 'to']]\n",
+ "[['of', 'Sen.', 'Barack', 'Obama', 'was', 'living'], 'in', ['the', 'United', 'States', 'illegally,', 'his', 'campaign']]\n",
+ "[['Onyango,', 'referred', 'to', 'as', '\"Auntie', 'Zeituni\"'], 'in', ['a', 'passage', 'in', \"Obama's\", 'memoir,', 'applied']]\n",
+ "[['as', '\"Auntie', 'Zeituni\"', 'in', 'a', 'passage'], 'in', [\"Obama's\", 'memoir,', 'applied', 'for', 'political', 'asylum']]\n",
+ "[[\"Obama's\", 'memoir,', 'applied', 'for', 'political', 'asylum'], 'in', ['the', 'United', 'States', 'in', '2004,', 'but']]\n",
+ "[['political', 'asylum', 'in', 'the', 'United', 'States'], 'in', ['2004,', 'but', 'a', 'federal', 'immigration', 'judge']]\n",
+ "[['largely', 'raised', 'by', 'his', 'maternal', 'grandparents'], 'in', ['a', 'modest', 'apartment', 'in', 'Honolulu,', 'first']]\n",
+ "[['maternal', 'grandparents', 'in', 'a', 'modest', 'apartment'], 'in', ['Honolulu,', 'first', 'met', 'Onyango', 'when', 'he']]\n",
+ "[['the', 'ceremony', 'when', 'Obama', 'was', 'sworn'], 'in', ['to', 'the', 'U.S.', 'Senate', 'in', '2004,']]\n",
+ "[['sworn', 'in', 'to', 'the', 'U.S.', 'Senate'], 'in', ['2004,', 'but', 'campaign', 'officials', 'said', 'he']]\n",
+ "[['said', 'he', 'had', 'provided', 'no', 'assistance'], 'in', ['getting', 'her', 'a', 'tourist', 'visa', 'and']]\n",
+ "[['ceremony,', 'Onyango', 'and', 'another', 'relative', 'said'], 'in', ['interviews', 'that', 'they', 'had', 'flown', 'to']]\n",
+ "[['she', 'called', 'to', 'say', 'she', 'was'], 'in', ['Boston,', 'but', 'he', 'did', 'not', 'see']]\n",
+ "[['Louis', 'Rams,', 'a', 'team', 'winless', 'and'], 'in', ['disarray,', 'that', 'it', 'seemed', 'almost', 'pointless']]\n",
+ "[['got', 'burned', 'once', 'before', 'this', 'year,'], 'in', ['the', 'New', 'Hampshire', 'primary.', 'The', 'coverage,']]\n",
+ "[['suggested', 'that', 'Obama,', 'fresh', 'from', 'victory'], 'in', ['the', 'Iowa', 'caucuses,', 'was', 'going', 'to']]\n",
+ "[['that', 'reported', 'on', 'a', 'possible', 'shake-up'], 'in', ['the', 'Clinton', 'campaign', 'staff', 'and', 'quoted']]\n",
+ "[['the', 'danger', 'of', 'getting', 'too', 'far'], 'in', ['front', 'of', 'events.', 'Still,', 'I', 'think']]\n",
+ "[['Obama', 'victory', 'and', 'a', 'Democratic', 'sweep'], 'in', ['Congress.', 'If', 'it', 'does', 'not', 'happen,']]\n",
+ "[['has', 'been', 'built', 'bit', 'by', 'bit'], 'in', ['The', 'Times:', 'an', 'online', 'video', 'about']]\n",
+ "[['or', 'premise.\"', 'Richard', 'Stevenson,', 'the', 'editor'], 'in', ['charge', 'of', 'campaign', 'coverage,', 'said:', '\"There']]\n",
+ "[['conclusion', 'right', 'now,', 'as', 'a', 'snapshot'], 'in', ['time,', 'that', 'Obama', 'is', 'in', 'a']]\n",
+ "[['snapshot', 'in', 'time,', 'that', 'Obama', 'is'], 'in', ['a', 'better', 'position', 'than', 'McCain', 'is']]\n",
+ "[['on', 'is', 'that', 'Obama', 'is', 'ahead'], 'in', ['every', 'national', 'poll;', 'he', 'is', 'drawing']]\n",
+ "[['money;', 'he', 'is', 'leading', 'or', 'tied'], 'in', ['critical', 'states', 'that', 'McCain', 'must', 'win']]\n",
+ "[['won', 'state', 'by', 'state,', 'and', 'polls'], 'in', ['critical', 'states', 'have', 'varied', 'widely.', 'At']]\n",
+ "[['Mason-Dixon', 'has', 'found', 'similarly', 'close', 'margins'], 'in', ['Florida,', 'Virginia', 'and', 'other', 'crucial', 'states.']]\n",
+ "[['them', 'with', 'great', 'and', 'appropriate', 'caution'], 'in', ['a', 'year', 'when', 'an', 'African-American', 'is']]\n",
+ "[['that', 'traditionally', 'do', 'not', 'turn', 'out'], 'in', ['proportion', 'to', 'their', 'numbers.', '\"I', 'have']]\n",
+ "[['win,\"', 'said', 'Janet', 'Elder,', 'the', 'editor'], 'in', ['charge', 'of', 'polling.', 'What', 'the', 'Times/CBS']]\n",
+ "[['think', 'The', 'Times', 'would', 'be', 'wise,'], 'in', ['the', 'words', 'of', 'my', 'former', 'colleague']]\n",
+ "[['the', 'easiest', 'way', 'to', 'invoke', 'dovishness'], 'in', ['Israel', 'has', 'been', 'to', 'utter', 'the']]\n",
+ "[['Israel', 'and', 'the', 'Palestine', 'Liberation', 'Organization'], 'in', ['the', 'early', '1990s', 'and', 'has', 'never']]\n",
+ "[['believing,', 'Beilin', 'has', 'a', 'unique', 'place'], 'in', ['the', 'Israeli', 'political', 'galaxy,', 'admired', 'and']]\n",
+ "[['last', 'week', 'that', 'he', 'was', 'leaving'], 'in', ['triumph,', 'since', 'his', 'support', 'for', 'an']]\n",
+ "[['There', 'is', 'no', 'denying', 'that', 'shift'], 'in', ['public', 'opinion', 'and', 'official', 'policy.', 'But']]\n",
+ "[['defeat', '--', 'of', \"Beilin's\", 'understated', 'style'], 'in', ['an', 'overheated', 'environment,', 'and', 'of', 'his']]\n",
+ "[['who', 'persuaded', 'Prime', 'Minister', 'Yitzhak', 'Rabin'], 'in', ['1993', 'that', 'Yasser', 'Arafat', 'wanted', 'peace.']]\n",
+ "[['more', 'remarkable', 'because,', 'as', 'Beilin', 'noted'], 'in', ['a', 'two-hour', 'conversation', 'in', 'his', 'office']]\n",
+ "[['Beilin', 'noted', 'in', 'a', 'two-hour', 'conversation'], 'in', ['his', 'office', 'last', 'week,', 'he', 'and']]\n",
+ "[['credentials,', 'his', 'political', 'fortunes', 'rose', 'remarkably'], 'in', ['the', '1990s', 'as', 'the', 'Oslo', 'peace']]\n",
+ "[['Oslo', 'peace', 'process', 'that', 'he', 'set'], 'in', ['motion', 'took', 'over', 'Israeli', 'politics.', 'In']]\n",
+ "[['and', 'the', 'second', 'intifada', 'broke', 'out'], 'in', ['late', '2000,', 'sending', 'Israel', 'into', 'a']]\n",
+ "[['possible.', 'He', 'found', 'a', 'new', 'home'], 'in', ['Meretz', 'and', 'continued', 'his', 'work.', 'But']]\n",
+ "[['But', 'he', 'never', 'recovered', 'his', 'place'], 'in', ['public', 'life,', 'even', 'after', 'negotiations', 'with']]\n",
+ "[['Olmert', 'gave', 'a', 'departing', 'newspaper', 'interview'], 'in', ['September,', 'he', 'sounded', 'exactly', 'like', 'Beilin']]\n",
+ "[['to', 'give', 'up', 'some', 'Palestinian', 'neighborhoods'], 'in', ['Jerusalem', 'that', 'no', 'Jew', 'has', 'ever']]\n",
+ "[['is', 'demographic,', 'with', 'the', 'Jewish-Palestinian', 'ratio'], 'in', ['Israel', 'and', 'the', 'Palestinian', 'areas', 'nearing']]\n",
+ "[['growing', 'threats', 'and', 'hatred', 'toward', 'Israel'], 'in', ['the', 'region.', '\"Our', 'behavior,\"', 'he', 'said,']]\n",
+ "[['stay', 'involved', 'as', 'a', 'private', 'citizen'], 'in', ['peace', 'efforts,', 'even', 'as', 'he', 'promotes']]\n",
+ "[['notes,', 'with', 'approval,', 'that', 'security', 'cooperation'], 'in', ['the', 'West', 'Bank', 'between', 'Israel', 'and']]\n",
+ "[['followed', 'by', 'a', 'cease-fire', 'with', 'Hamas'], 'in', ['Gaza,', 'despite', 'what', 'he', 'considers', 'its']]\n",
+ "[['wrote', 'Gideon', 'Levy,', 'a', 'leftist', 'columnist'], 'in', ['Haaretz,', '\"but', 'he', 'did', 'not', 'reach']]\n",
+ "[['TO', 'THE', 'FIRE-IN-THE-BELLY', 'CROWD', '(The', 'Week'], 'in', ['Review)', '(NOTE', 'TO', 'INTERNATIONAL', 'CLIENTS:', 'For']]\n",
+ "[['and', 'European', 'points:', 'contact', 'Philippe', 'Hertzberg'], 'in', ['Paris', 'for', 'details', 'and', 'prices,', 'phone:']]\n",
+ "[['American', 'points:', 'contact', 'Isabel', 'Amorim', 'Sicherle'], 'in', ['Sao', 'Paulo,', 'phone/fax:', '55-11-3023-3331;', 'e-mail:', 'sicheia@nytimes.com.)']]\n",
+ "[['Tolls,\"', 'an', 'American', 'fighting', \"Franco's\", 'Fascists'], 'in', ['the', 'Spanish', 'Civil', 'War.', 'And', 'despite']]\n",
+ "[['Rolling', 'Stone', 'that', \"Hemingway's\", 'novel,', 'published'], 'in', ['1940,', 'is', 'one', 'of', 'the', 'three']]\n",
+ "[['have', 'been', 'together', 'ever', 'since,', 'even'], 'in', ['Hanoi.', '\"I', 'knew', 'that', 'if', 'he']]\n",
+ "[['\"I', 'knew', 'that', 'if', 'he', 'were'], 'in', ['the', 'next', 'cell', 'to', 'mine,', 'he']]\n",
+ "[['he', \"wouldn't\", 'give', 'up,\"', 'McCain', 'said'], 'in', ['a', 'radio', 'interview', 'in', '2002.', '\"And']]\n",
+ "[['McCain', 'said', 'in', 'a', 'radio', 'interview'], 'in', ['2002.', '\"And', 'Robert', 'would', 'expect', 'me']]\n",
+ "[['whom', 'were', 'killed', '--', 'who', 'fought'], 'in', ['Spain', 'between', '1936', 'and', '1938.', 'Rather,']]\n",
+ "[['Spanish', 'Civil', 'War', 'who', 'now', 'lives'], 'in', ['El', 'Cerrito,', 'Calif.', '(He', 'says', 'he']]\n",
+ "[['commercially', 'savvy', 'and', 'damned', 'good.', 'Throw'], 'in', ['a', 'movie', 'starring', 'Gary', 'Cooper', 'and']]\n",
+ "[['of', 'Forestville,', 'Calif.,', 'who', 'drove', 'ambulances'], 'in', ['Spain,', 'agreed:', '\"If', 'Robert', 'Jordan', 'were']]\n",
+ "[['a', 'teacher', '(he', 'had', 'studied', 'economics'], 'in', ['Moscow).', 'But', 'Merriman,', 'who', 'was', 'killed']]\n",
+ "[['Moscow).', 'But', 'Merriman,', 'who', 'was', 'killed'], 'in', ['1938,', 'was', 'never', 'a', 'guerrilla', 'behind']]\n",
+ "[['Aalto,', 'and', 'Irving', 'Goff', '--', 'were,'], 'in', ['fact,', 'guerrillas;', 'Goff,', 'a', 'New', 'Yorker']]\n",
+ "[['Goff,', 'a', 'New', 'Yorker', 'who', 'died'], 'in', ['1989,', 'actually', 'blew', 'up', 'bridges,', 'but']]\n",
+ "[['from', 'Hemingway', 'himself.', 'Among', 'the', 'Americans'], 'in', ['what', 'later', 'became', 'known', 'as', 'the']]\n",
+ "[[\"Jordan's\", 'prototype.', 'Most', 'hated', 'the', 'book,'], 'in', ['which', 'Hemingway', 'trashed', 'the', 'people', 'leading']]\n",
+ "[['of', 'the', 'Abraham', 'Lincoln', 'Brigade', 'declared'], 'in', ['an', 'open', 'letter', 'to', 'Hemingway.', 'And']]\n",
+ "[['see', '\"A', 'Night', 'at', 'the', 'Opera\"'], 'in', ['Madrid', 'once', 'the', 'fighting', 'stops.', 'Allen']]\n",
+ "[['many', 'of', 'the', 'Americans', 'Hemingway', 'encountered'], 'in', ['Spain', 'were.)', \"Jordan's\", 'willingness', 'to', 'give']]\n",
+ "[['Watson', 'added,', 'would', 'only', 'have', 'grown'], 'in', ['Hanoi,', 'where', \"Jordan's\", 'long', 'interior', 'monologues']]\n",
+ "[[\"year's\", 'Comeback', 'Kid.', 'Place', 'an', 'opponent'], 'in', ['his', 'path,', 'and', 'Stephon', 'Marbury', 'will']]\n",
+ "[['past', 'him.', 'Place', 'an', 'entire', 'defense'], 'in', ['front', 'of', 'him,', 'and', 'Marbury', 'will']]\n",
+ "[['earliest', 'days', 'as', 'a', 'basketball', 'prodigy'], 'in', ['Coney', 'Island,', 'Marbury', 'has', 'been', 'able']]\n",
+ "[['is', 'missing', 'the', 'most', 'vital', 'tool'], 'in', ['a', 'troubled', \"athlete's\", 'arsenal:', 'an', 'agent.']]\n",
+ "[['agent.', 'Marbury', 'has', 'not', 'employed', 'one'], 'in', ['eight', 'years,', 'and', 'it', 'is', 'probably']]\n",
+ "[['business.', 'But', 'he', 'is', 'well', 'versed'], 'in', ['the', 'sort', 'of', 'player-team', 'standoff', 'that']]\n",
+ "[['most', 'likely', 'played', 'his', 'last', 'game'], 'in', ['a', 'Knicks', 'uniform.', 'Yet', 'he', 'remains']]\n",
+ "[['deal.', 'Such', 'stalemates', 'are', 'not', 'uncommon'], 'in', ['the', 'NBA.', 'The', 'typical', 'solution', 'has']]\n",
+ "[['suitors', 'lined', 'up,', 'and', 'concrete', 'offers'], 'in', ['hand.', 'But', 'Marbury', 'has', 'not', 'had']]\n",
+ "[['fired', 'his', 'first', 'agent,', 'Eric', 'Fleisher,'], 'in', ['1998.', 'Marbury', 'represented', 'himself', 'when', 'he']]\n",
+ "[['Phoenix', 'Suns.', 'That', 'deal', 'was', 'consummated'], 'in', ['October', '2003,', 'three', 'months', 'before', 'the']]\n",
+ "[['that', 'accepting', 'less', 'money', 'now', 'is'], 'in', ['his', 'best', 'interest', 'because', 'he', 'can']]\n",
+ "[['the', 'agents', 'said.', 'Marbury', 'turns', '32'], 'in', ['February.', 'He', 'has', 'not', 'played', 'a']]\n",
+ "[['\"You', 'tell', 'him', \"there's\", 'no', 'future'], 'in', ['New', 'York', 'for', 'you,\"', 'an', 'East']]\n",
+ "[['tell', 'people', 'how', 'great', 'you', 'were'], 'in', ['the', '\\'90s.\"', 'The', 'absence', 'of', 'a']]\n",
+ "[['a', 'paid', 'advocate', 'certainly', 'hurt', 'Marbury'], 'in', ['past', 'skirmishes', 'with', 'Knicks', 'management.', 'Last']]\n",
+ "[['of', 'the', 'most', 'extraordinary', 'presidential', 'elections'], 'in', ['this', \"nation's\", '232-year', 'history,', 'and', '\"the']]\n",
+ "[['these', 'final', 'hours', \"there's\", 'some', 'sense'], 'in', ['pausing,', 'pulling', 'back', 'and', 'taking', 'the']]\n",
+ "[['back.', 'When', 'Obama', 'took', 'the', 'stage'], 'in', ['Iowa', 'after', 'his', 'victory', 'in', 'the']]\n",
+ "[['stage', 'in', 'Iowa', 'after', 'his', 'victory'], 'in', ['the', \"state's\", 'caucuses', 'last', 'January,', 'he']]\n",
+ "[['sense', 'an', 'astonishment', 'and', 'exhilaration', '--'], 'in', ['him,', 'around', 'him', '--', 'that', 'seem']]\n",
+ "[['troops,', \"it's\", 'impossible', 'not', 'to', 'hear'], 'in', ['his', 'words', 'a', 'statement', 'about', 'all']]\n",
+ "[['words', 'a', 'statement', 'about', 'all', 'minorities'], 'in', ['America,', 'for', 'whom', 'the', 'week-by-week,', 'month-by-month']]\n",
+ "[['\"I', 'knew,', 'for', 'the', 'first', 'time'], 'in', ['my', 'life,', 'that', 'it', 'would', 'be']]\n",
+ "[['fact:', 'the', 'most', 'famous', 'black', 'man'], 'in', ['America', \"isn't\", 'dribbling', 'a', 'ball', 'or']]\n",
+ "[['or', 'clutching', 'a', 'microphone,\"', 'Coates', 'continued,'], 'in', ['a', 'recent', 'essay', 'for', 'Time', 'magazine.']]\n",
+ "[['might', 'seem', 'like', 'naive', 'campaign', 'sloganeering'], 'in', ['a', 'dark', 'age,\"', 'Coates', 'further', 'wrote.']]\n",
+ "[['discussion', 'of', 'difficult', 'issues.', 'In', 'Philadelphia'], 'in', ['March,', 'Obama', 'delivered', 'a', 'set-piece', 'speech']]\n",
+ "[['Americans', 'past', 'it.', 'In', 'New', 'Hampshire'], 'in', ['January,', 'Clinton', 'welled', 'with', 'tears', 'that']]\n",
+ "[['examination', 'of', 'the', 'treatment', 'of', 'women'], 'in', ['American', 'life.', 'Was', 'sexism', 'more', 'potent']]\n",
+ "[['question', 'raised', 'on', 'television', 'shows', 'and'], 'in', ['newspapers,', 'at', 'restaurant', 'counters', 'and', 'kitchen']]\n",
+ "[['and', 'kitchen', 'tables,', 'revolving', 'around', 'Clinton'], 'in', ['winter', 'and', 'spring,', 'Palin', 'in', 'summer']]\n",
+ "[['Clinton', 'in', 'winter', 'and', 'spring,', 'Palin'], 'in', ['summer', 'and', 'fall.', 'For', 'many', 'of']]\n",
+ "[['without', 'wholly', 'abandoning', 'her', 'softness,', 'asked'], 'in', ['the', 'end', 'to', 'yield', 'once', 'more']]\n",
+ "[['McCain-Palin', 'ticket', 'have', 'suggested', 'a', 'division'], 'in', ['this', 'election', 'that', 'goes', 'well', 'beyond']]\n",
+ "[['72', 'and', '47,', 'than', 'between', 'rivals'], 'in', ['most', 'presidential', 'contests', 'over', 'the', 'last']]\n",
+ "[['President', 'Bush', 'were', 'three', 'years', 'closer'], 'in', ['age,', 'and', 'while', \"Clinton's\", 'victory', 'marked']]\n",
+ "[['multicultural,', 'postracial', 'society', 'so', 'often', 'discussed'], 'in', ['the', 'news', 'media', 'but', 'so', 'seldom']]\n",
+ "[['news', 'media', 'but', 'so', 'seldom', 'affirmed'], 'in', ['public', 'life', 'was', 'now,', 'literally,', 'the']]\n",
+ "[['Fleetwood', 'Mac.', 'Obama', 'is', 'India.Arie.', 'Candidates'], 'in', ['many', 'past', 'presidential', 'contests', 'lacked', 'life']]\n",
+ "[['endured', 'years', 'of', 'imprisonment', 'and', 'torture'], 'in', ['Vietnam.', 'But', 'these', 'two', \"weren't\", 'the']]\n",
+ "[['two', \"weren't\", 'the', 'only', 'vivid', 'characters'], 'in', ['a', 'campaign', 'that,', 'purely', 'as', 'narrative,']]\n",
+ "[['running', 'mate', 'who', 'once', 'described', 'him,'], 'in', ['terms', 'of', 'plausible', 'aspirants', 'to', 'the']]\n",
+ "[['with', 'a', 'pregnant,', 'unwed', 'teenage', 'daughter'], 'in', ['tow?', 'Perhaps', \"that's\", 'one', 'reason', 'voters']]\n",
+ "[['got', 'some', 'of', 'their', 'best', 'ratings'], 'in', ['years.', '\"Saturday', 'Night', 'Live\"', 'sailed', 'temporarily']]\n",
+ "[['the', 'Republican', 'convention,', 'versus', '22.6', 'million'], 'in', ['2004.', 'For', 'the', 'Democratic', 'convention,', 'viewership']]\n",
+ "[['\"We\\'re', 'seeing', 'record', 'levels', 'of', 'interest'], 'in', ['the', 'campaign,\"', 'said', 'Michael', 'P.', 'McDonald,']]\n",
+ "[['like', 'new', 'voter', 'registration', 'and', 'responses'], 'in', ['polls', 'that', 'asked', 'how', 'interested', 'in']]\n",
+ "[['in', 'polls', 'that', 'asked', 'how', 'interested'], 'in', ['the', 'election', 'voters', 'were.', 'And', 'he']]\n",
+ "[['that', 'just', 'under', '64', 'percent', 'voted'], 'in', ['the', 'Kennedy-Nixon', 'election', 'of', '1960,', 'adding']]\n",
+ "[['engagement', 'has', 'been', \"Obama's\", 'fundraising,', 'built'], 'in', ['large', 'measure', 'on', 'small', 'donations', 'made']]\n",
+ "[['television', 'advertising', 'alone', 'during', 'one', 'week'], 'in', ['October.', 'If', 'Obama', 'wins', 'by', 'a']]\n",
+ "[['victory', 'will', 'reflect', 'more', 'than', 'strides'], 'in', ['race', 'relations,', 'thirst', 'for', 'change', 'and']]\n",
+ "[['of', 'money,', 'and', 'it', 'could', 'usher'], 'in', ['the', 'end', 'of', 'general-election', 'candidates', 'participating']]\n",
+ "[['the', 'end', 'of', 'general-election', 'candidates', 'participating'], 'in', ['the', 'public', 'financing', 'system.', 'An', 'Obama']]\n",
+ "[['exotic-sounding', 'name', \"wasn't\", 'supposed', 'to', 'flourish'], 'in', ['an', 'overwhelmingly', 'white', 'state', 'like', 'Iowa,']]\n",
+ "[['who', 'failed', 'to', 'win', 'Democratic', 'primaries'], 'in', ['New', 'Hampshire,', 'Ohio,', 'Pennsylvania,', 'California,', 'New']]\n",
+ "[['paradigms,', 'and', 'that', 'could', 'manifest', 'itself'], 'in', ['some', 'way', 'in', \"Tuesday's\", 'voting', '--']]\n",
+ "[['could', 'manifest', 'itself', 'in', 'some', 'way'], 'in', [\"Tuesday's\", 'voting', '--', 'if', 'this', 'election,']]\n",
+ "[['into', 'question,', 'just', 'as', \"McCain's\", 'triumph'], 'in', ['the', 'Republican', 'primaries', 'raises', 'doubts', 'about']]\n",
+ "[['election-season', 'hyperbole.', 'America', 'is', 'fighting', 'wars'], 'in', ['both', 'Iraq', 'and', 'Afghanistan.', 'And', 'its']]\n",
+ "[['defied', 'the', 'will', 'of', 'the', 'West'], 'in', ['invading', 'Georgia', 'last', 'summer,', 'and', 'China,']]\n",
+ "[['through', 'the', 'worst', 'of', 'times.', \"We're\"], 'in', ['trouble', 'if', 'we', 'get', 'it', 'wrong.']]\n",
+ "[['to', 'have', 'a', 'lot', 'of', 'fatigue'], 'in', ['my', 'muscles', '--', 'never,\"', 'Ndereba,', '36,']]\n",
+ "[['--', 'never,\"', 'Ndereba,', '36,', 'said', 'recently'], 'in', ['Norristown,', 'Pa.,', 'her', 'training', 'base', 'in']]\n",
+ "[['in', 'Norristown,', 'Pa.,', 'her', 'training', 'base'], 'in', ['the', 'United', 'States.', '\"But', 'now,', 'if']]\n",
+ "[['old;', 'I', 'still', 'feel', 'like', \"I'm\"], 'in', ['my', '20s.', 'But,', 'yes,', 'sometimes,', 'there']]\n",
+ "[['is', 'among', 'the', '41', 'elite', 'women'], 'in', ['the', 'field', 'for', \"Sunday's\", 'New', 'York']]\n",
+ "[['elite', 'women,', 'if', 'not', 'the', 'oldest,'], 'in', ['the', 'history', 'of', 'the', 'race,', 'organizers']]\n",
+ "[['superstar', 'generation.\"', '\"Gete,', 'Paula,', 'Catherine', 'are'], 'in', ['a', 'class', 'by', 'themselves,', 'but', 'time']]\n",
+ "[['returns.\"', 'Those', 'runners', 'are', 'not', 'pioneers'], 'in', ['racing', 'marathons', '--', 'and', 'often', 'winning']]\n",
+ "[['that', 'age,', 'many', 'distance', 'runners', 'are'], 'in', ['their', 'prime,', 'some', 'experts', 'say,', 'because']]\n",
+ "[['after', 'they', 'had', 'built', 'a', 'foundation'], 'in', ['shorter', 'races,', 'to', 'prevent', 'burnout', 'and']]\n",
+ "[['have', 'a', 'limited', 'number', 'of', 'marathons'], 'in', ['them,', 'so', 'they', 'also', 'tend', 'to']]\n",
+ "[['also', 'tend', 'to', 'use', 'their', 'time'], 'in', ['competition', 'wisely.', 'Grete', 'Waitz', 'was', '35']]\n",
+ "[['competition', 'wisely.', 'Grete', 'Waitz', 'was', '35'], 'in', ['1988', 'when', 'she', 'won', 'her', 'ninth']]\n",
+ "[['the', 'finish', 'line', 'first.', 'This', 'year'], 'in', ['Beijing,', 'Constantina', 'Tomescu', 'of', 'Romania', 'won']]\n",
+ "[['current', 'wave', 'of', 'older', 'women', 'succeeding'], 'in', ['marathons', 'makes', 'sense.', 'More', 'women', 'are']]\n",
+ "[['a', 'nonprofit', 'organization', 'that', 'tracks', 'trends'], 'in', ['distance', 'running.', 'Top', 'runners', 'like', 'Radcliffe']]\n",
+ "[['and', 'finishing.', 'Five', 'of', 'the', 'women'], 'in', [\"Sunday's\", 'field', 'have', 'made', 'at', 'least']]\n",
+ "[['have', 'made', 'at', 'least', '$1', 'million'], 'in', ['prize', 'money', 'in', 'their', 'careers,', 'according']]\n",
+ "[['least', '$1', 'million', 'in', 'prize', 'money'], 'in', ['their', 'careers,', 'according', 'to', 'the', 'Association']]\n",
+ "[['ago,', 'though,', 'the', 'total', \"women's\", 'purse'], 'in', ['the', 'New', 'York', 'City', 'Marathon', 'was']]\n",
+ "[['$165,000.', '\"If', 'the', 'sport', 'was', 'back'], 'in', ['its', 'amateur', 'days,', 'you', 'definitely', \"wouldn't\"]]\n",
+ "[['said.', '\"I', \"don't\", 'think', \"they're\", 'staying'], 'in', ['the', 'sport', 'purely', 'for', 'the', 'love']]\n",
+ "[['a', 'decent', 'living', 'at', 'marathon', 'running'], 'in', ['your', '30s', 'and', '40s,', 'Lamppa', 'added,']]\n",
+ "[['must', 'remain', 'fast', 'enough', 'to', 'finish'], 'in', ['the', 'top', '10.', 'That', 'could', 'be']]\n",
+ "[['of', 'Pittsburgh.', 'In', 'a', 'study', 'published'], 'in', ['March', 'that', 'looked', 'at', 'male', 'and']]\n",
+ "[['male', 'and', 'female', 'American', 'masters', 'record-holders'], 'in', ['distances', 'from', '100', 'to', '10,000', 'meters']]\n",
+ "[['a', '1', 'percent', 'decline', 'per', 'year'], 'in', ['performance', 'as', 'they', 'aged', 'from', '30']]\n",
+ "[['to', '50.', 'The', 'slow-twitch', 'muscles', 'needed'], 'in', ['endurance', 'sports', 'do', 'not', 'decline', 'significantly']]\n",
+ "[['that', 'sprinters', 'rely', 'on', 'begin', 'deteriorating'], 'in', ['their', 'late', '20s', 'and', 'early', '30s.']]\n",
+ "[['30s.', '\"If', 'you', 'are', 'a', 'runner'], 'in', ['your', '30s', 'or', '40s,', \"it's\", 'really']]\n",
+ "[['easily.', 'But', 'she', 'said', 'the', 'change'], 'in', ['the', 'mental', 'aspect', 'of', 'the', 'marathon,']]\n",
+ "[['quit', 'if', 'I', 'can', 'still', 'finish'], 'in', ['the', 'top', 'five?\"', 'Ndereba', 'said.', '\"Why']]\n",
+ "[['when', 'she', 'made', 'her', 'marathon', 'debut'], 'in', ['Boston.', 'Ndereba', 'said', 'she', 'was', 'in']]\n",
+ "[['in', 'Boston.', 'Ndereba', 'said', 'she', 'was'], 'in', ['so', 'much', 'pain', 'after', 'finishing', 'sixth']]\n",
+ "[['so', 'much', 'pain', 'after', 'finishing', 'sixth'], 'in', ['that', 'race', 'that', 'she', 'needed', 'to']]\n",
+ "[['she', 'needed', 'to', 'be', 'carted', 'off'], 'in', ['a', 'wheelchair.', '\"So', 'now,', 'I', \"don't\"]]\n",
+ "[['was', 'continually', 'reminded', 'that', \"Philly's\", 'teams'], 'in', ['Major', 'League', 'Baseball,', 'the', 'NFL,', 'the']]\n",
+ "[['Moses', 'Malone,', 'took', 'the', 'NBA', 'title'], 'in', ['1983.', 'Poor', 'Philly,', 'no', 'championships', 'over']]\n",
+ "[['championships', 'over', 'that', 'quarter-century,', 'but', 'nobody'], 'in', ['Cleveland', 'and', 'Atlanta', 'was', 'feeling', 'sorry']]\n",
+ "[['Bob', 'Feller', 'and', 'Bob', 'Lemon', 'were'], 'in', ['their', 'rotation.', 'The', 'Browns', 'have', 'never']]\n",
+ "[[\"haven't\", 'won', 'the', 'NBA', 'title,', 'and'], 'in', ['their', 'only', 'two', 'NHL', 'seasons', 'three']]\n",
+ "[['decades', 'ago,', 'the', 'Barons', 'finished', 'last'], 'in', ['their', 'division.', 'For', 'all', 'of', 'the']]\n",
+ "[['of', 'the', \"Braves'\", '15', 'division', 'titles'], 'in', ['Atlanta,', 'they', 'won', 'only', 'one', 'World']]\n",
+ "[['they', 'won', 'only', 'one', 'World', 'Series,'], 'in', ['1995', '(against', 'the', 'Indians).', 'The', 'Falcons']]\n",
+ "[['1964', 'NFL', 'championship', 'and', 'three', 'titles'], 'in', ['the', '1950s,', 'when', 'Paul', 'Brown', 'was']]\n",
+ "[['The', 'Indians', 'won', 'another', 'World', 'Series,'], 'in', ['1920.', 'In', 'Atlanta,', 'the', 'Falcons', 'at']]\n",
+ "[['five', 'cities/regions', 'have', 'had', 'title', 'teams'], 'in', ['each', 'of', 'the', 'four', 'major', 'sports:']]\n",
+ "[['playing', 'both', 'ways,', 'ruled', 'the', 'NFL'], 'in', ['1960', 'and', 'also', 'in', '1948', 'and']]\n",
+ "[['the', 'NFL', 'in', '1960', 'and', 'also'], 'in', ['1948', 'and', '1949.', 'The', 'Flyers,', 'alias']]\n",
+ "[['Street', 'Bullies,', 'hoisted', 'the', 'Stanley', 'Cup'], 'in', ['1974', 'and', '1975.', 'In', 'the', 'long']]\n",
+ "[['the', 'World', 'Series.', 'Across', 'the', 'bay'], 'in', ['Oakland,', 'the', 'Athletics', 'won', 'four', 'World']]\n",
+ "[['has', 'had', 'the', 'most', 'success,', 'especially'], 'in', ['baseball:', '26', 'World', 'Series', 'titles', 'for']]\n",
+ "[['the', \"Rangers'\", 'four', 'Stanley', 'Cups,', 'notably'], 'in', ['1994', 'after', 'a', '54-year', 'drought.', 'If']]\n",
+ "[['Bill', 'Belichick', 'and', 'the', \"Celtics'\", 'triumph'], 'in', ['June,', 'Boston', 'bragged', 'about', 'its', 'record']]\n",
+ "[[\"Bruins'\", 'five', 'Stanley', 'Cups,', 'the', 'latest'], 'in', ['1970', 'and', '1972', 'when', 'Bobby', 'Orr']]\n",
+ "[['the', 'Bulls', 'dunked', 'six', 'NBA', 'titles'], 'in', ['eight', 'seasons', 'during', 'the', \"'90s,\", 'the']]\n",
+ "[['the', 'White', 'Sox', 'won', 'the', 'Series'], 'in', ['2005,', 'and', \"Chicago's\", 'pro', 'football', 'teams']]\n",
+ "[['but', 'they', 'won', 'three', 'NFL', 'titles'], 'in', ['the', \"'50s\", 'and', 'another', 'in', '1935.']]\n",
+ "[['titles', 'in', 'the', \"'50s\", 'and', 'another'], 'in', ['1935.', 'The', 'Tigers', 'won', 'four', 'World']]\n",
+ "[['titles,', 'two', 'with', 'the', 'Bad', 'Boys'], 'in', ['and', '1989', 'and', '1990.', 'In', 'Los']]\n",
+ "[['Kings,', 'even', 'with', 'Wayne', 'Gretzky,', 'lost'], 'in', ['their', 'only', 'Stanley', 'Cup', 'finals.', 'So']]\n",
+ "[['may', 'want', 'to', 'empty', 'the', 'Cuyahoga'], 'in', ['Cleveland', 'or', 'the', 'Chattahoochee', 'in', 'Atlanta.']]\n",
+ "[['Cuyahoga', 'in', 'Cleveland', 'or', 'the', 'Chattahoochee'], 'in', ['Atlanta.', 'Leave', 'it', 'to', 'Jon', 'Stewart']]\n",
+ "[['presidents', 'that', 'makes', 'them', 'wake', 'up'], 'in', ['the', 'morning', 'and', 'think', 'it', 'would']]\n",
+ "[['are', 'so', 'precarious?', 'And', 'particularly', 'now,'], 'in', ['this', 'moment', 'of', 'maximum', 'crisis.', 'Millions']]\n",
+ "[['moment', 'of', 'maximum', 'crisis.', 'Millions', 'are'], 'in', ['danger', 'of', 'losing', 'their', 'homes.', 'Hundreds']]\n",
+ "[['The', 'country', 'is', 'still', 'at', 'war'], 'in', ['Iraq', 'and', 'trying', 'to', 'avoid', 'it']]\n",
+ "[['quite', 'such', 'a', 'sack', 'of', 'trouble'], 'in', ['decades.', 'Yet', 'neither', 'Obama', 'nor', 'Sen.']]\n",
+ "[['mortals.', 'It', 'may', 'have', 'been', 'fairer'], 'in', ['the', 'Middle', 'Ages', 'to', 'have', 'them']]\n",
+ "[['when', 'you', 'become', 'president.\"', 'Yet', 'even'], 'in', ['the', 'best', 'of', 'times,', 'the', 'presidency']]\n",
+ "[['that.', 'A', 'CNN/Opinion', 'Research', 'Corp.', 'poll'], 'in', ['2006', 'found', 'that', 'only', '41', 'percent']]\n",
+ "[['back', 'at', 'how', 'the', 'vast', 'majority'], 'in', ['the', 'modern', 'era', 'have', 'left', 'the']]\n",
+ "[['leaving', 'as', 'the', 'most', 'unpopular', 'commander'], 'in', ['chief', 'in', 'the', 'history', 'of', 'polling.']]\n",
+ "[['the', 'most', 'unpopular', 'commander', 'in', 'chief'], 'in', ['the', 'history', 'of', 'polling.', 'Perhaps', 'the']]\n",
+ "[['presidents', 'want', 'to', 'be', 'president', 'even'], 'in', ['dark', 'moments.', 'He', 'told', 'aides', 'and']]\n",
+ "[['they', 'were', 'still', 'living', 'now,', 'and'], 'in', ['a', 'way', 'they', 'are.', 'Every', 'time']]\n",
+ "[['set', 'last', 'week', 'at', 'an', 'auction'], 'in', ['New', 'York', 'City.', 'A', 'pink', '3-cent']]\n",
+ "[['City.', 'A', 'pink', '3-cent', 'stamp', 'issued'], 'in', ['1868', 'and', 'depicting', 'George', 'Washington', 'was']]\n",
+ "[['to', 'exist.', 'The', 'four', 'were', 'rediscovered'], 'in', ['1969,', 'on', 'a', 'single', 'envelope', 'from']]\n",
+ "[['particular', 'example', 'last', 'sold', 'at', 'auction'], 'in', ['1993', 'for', '$85,000;', 'another', 'of', 'the']]\n",
+ "[['$85,000;', 'another', 'of', 'the', 'four', 'sold'], 'in', ['1998', 'for', '$155,000.', \"Wednesday's\", 'buyer,', 'who']]\n",
+ "[['as', 'it', 'has', 'at', 'the', 'university'], 'in', ['Denton.', 'North', 'Texas,', '0-8', 'entering', \"Saturday's\"]]\n",
+ "[['about', 'consistency', 'and', 'inconsistency,\"', 'Dodge', 'said'], 'in', ['a', 'telephone', 'interview.', '\"I', 'suspected', 'that']]\n",
+ "[['that', 'are', 'just', 'starting', 'to', 'dibble-dabble'], 'in', ['the', 'stuff.\"', 'Dodge', 'said', 'he', 'also']]\n",
+ "[['be', 'addressed.\"', 'Fitzgerald', 'led', 'the', 'nation'], 'in', ['receptions', 'per', 'game', 'with', '10.4', 'entering']]\n",
+ "[['reassured', 'each', 'other', 'that', \"we're\", 'all'], 'in', ['it', 'together.', \"We're\", 'going', 'to', 'put']]\n",
+ "[['thing,', 'and', 'so', 'did', 'the', 'university'], 'in', ['supporting', 'him.', 'Even', 'if', 'there', 'is']]\n",
+ "[['if', 'there', 'is', 'a', 'double', 'standard'], 'in', ['that', 'most', 'students', 'can', 'use', 'street']]\n",
+ "[['his', 'players', 'accountable', 'may', 'turn', 'out'], 'in', ['the', 'long', 'run', 'to', 'be', 'his']]\n",
+ "[['tryouts', 'I', \"couldn't\", 'wait', 'to', 'play'], 'in', ['a', 'real', 'game.', 'That', 'sense', 'of']]\n",
+ "[['\"Look,', \"it's\", 'Sherwood', 'Forest.\"', 'The', 'Americans'], 'in', ['the', 'car', 'went', 'crazy.', 'In', 'the']]\n",
+ "[['the', 'hype.', 'There', 'was', 'no', 'royalty'], 'in', ['the', 'crowd', '--', 'or', 'even', 'any']]\n",
+ "[['crowd', 'at', 'all.', 'And', 'no', 'men'], 'in', ['tights', 'tried', 'to', 'redistribute', 'points', 'from']]\n",
+ "[['Princeton', 'basketball', 'player', 'over', 'four', 'years'], 'in', ['the', 'Ivy', 'League.', 'Jeff', 'is', 'a']]\n",
+ "[['to', 'explain', 'the', 'proper', 'angle.', 'Toss'], 'in', ['a', 'couple', 'of', 'Princeton', 'oddities,', 'like']]\n",
+ "[['of', 'becoming', 'a', 'member', 'is', 'shrouded'], 'in', ['mystery.', 'You', 'have', 'to', 'be', 'invited']]\n",
+ "[['basketball', 'continued', 'until', 'close', 'to', '4'], 'in', ['the', 'morning.', 'I', 'may', 'be', 'only']]\n",
+ "[['up', 'a', 'majority', 'of', 'unaffiliated', 'voters'], 'in', ['Colorado,', 'giving', 'him', 'a', 'five', 'percentage']]\n",
+ "[['poll.', 'With', 'only', '72', 'hours', 'remaining'], 'in', ['the', 'presidential', 'campaign,', 'the', 'results', '--']]\n",
+ "[['the', 'presidential', 'campaign,', 'the', 'results', '--'], 'in', ['addition', 'to', 'other', 'statewide', 'polls', 'showing']]\n",
+ "[['the', 'Arizona', 'senator', 'faces', 'substantial', 'challenges'], 'in', ['winning', 'Colorado.', 'Overall,', 'Obama', 'leads', 'McCain']]\n",
+ "[['Post,', 'said', 'the', 'number', 'of', 'undecideds'], 'in', ['Colorado', 'is', 'smaller', 'than', 'in', 'other']]\n",
+ "[['undecideds', 'in', 'Colorado', 'is', 'smaller', 'than'], 'in', ['other', 'battleground', 'states.', 'While', 'those', 'voters']]\n",
+ "[['has', 'momentum.', '\"Obama', 'looks', 'like', \"he's\"], 'in', ['good', 'shape.', 'Even', 'if', 'all', 'the']]\n",
+ "[['said.', 'McCain', 'spokesman', 'Tom', 'Kise', 'said'], 'in', ['the', 'final', 'few', 'days', 'of', 'a']]\n",
+ "[['presidential', 'candidate', 'only', 'once:', 'Bill', 'Clinton'], 'in', ['1992.', 'So', 'even', 'with', 'a', 'lead,']]\n",
+ "[['Illinois', 'senator', 'attended', 'a', 'campaign', 'rally'], 'in', ['Pueblo', 'on', 'Saturday.', 'Obama', 'campaign', 'manager']]\n",
+ "[['Plouffe', 'said', 'he', 'thinks', 'independent', 'voters'], 'in', ['Colorado', 'will', 'continue', 'to', '\"break', 'decisively\"']]\n",
+ "[['will', 'go', 'for', 'McCain,\"', 'Plouffe', 'said'], 'in', ['a', 'conference', 'call', 'Friday.', '\"Some', 'states']]\n",
+ "[['to', 'us.\"', 'Colorado', 'voters,', 'as', 'those'], 'in', ['the', 'rest', 'of', 'the', 'nation,', 'overwhelmingly']]\n",
+ "[['cutting', 'taxes', 'and', 'managing', 'the', 'war'], 'in', ['Iraq.', 'Independent', 'voters', 'have', 'also', 'sided']]\n",
+ "[['him', 'a', 'small', 'but', 'stable', 'lead'], 'in', ['the', 'race', 'for', \"Colorado's\", 'open', 'Senate']]\n",
+ "[['from', 'the', 'five-point', 'lead', 'he', 'enjoyed'], 'in', ['a', 'Denver', 'Post', 'poll', 'a', 'month']]\n",
+ "[['recent', 'polls.', 'Fourteen', 'percent', 'remain', 'undecided'], 'in', ['the', 'Senate', 'contest.', 'The', 'poll', 'of']]\n",
+ "[['were', 'also', 'interviewed', 'and', 'are', 'reflected'], 'in', ['the', 'poll,', 'which', 'has', 'a', 'margin']]\n",
+ "[['equity', 'lines', 'of', 'credit', 'have', 'learned'], 'in', ['recent', 'months', 'that', 'these', 'loans', 'are']]\n",
+ "[['need', 'it,', 'then', 'place', 'the', 'cash'], 'in', ['a', 'liquid,', 'and', 'safe,', 'investment', 'vehicle.']]\n",
+ "[['the', 'Sterling', 'National', 'Mortgage', 'Company,', 'based'], 'in', ['Great', 'Neck,', 'N.Y.', 'Ben-Ami', 'said', 'he']]\n",
+ "[['short', 'notice', 'and', 'pay', 'no', 'penalties'], 'in', ['the', 'case', 'of', 'savings', 'or', 'money']]\n",
+ "[['could', 'be', 'added', 'to', 'the', 'mix'], 'in', ['the', 'American', 'League', 'East,', 'where', 'the']]\n",
+ "[['Manny', 'Ramirez', 'may', 'keep', 'hanging', 'out'], 'in', ['Mannywood', 'by', 'staying', 'with', 'the', 'Dodgers.']]\n",
+ "[['Monday', 'with', 'the', 'general', 'managers', 'meetings'], 'in', ['Dana', 'Point,', 'Calif.', 'Although', 'free', 'agents']]\n",
+ "[['Glove', 'winner', 'and', 'a', 'strong', 'influence'], 'in', ['the', 'clubhouse.', 'Hudson', 'has', 'been', 'injury-prone,']]\n",
+ "[['averaged', '15', 'victories', 'and', '208', 'innings'], 'in', ['the', 'last', 'seven', 'seasons', 'and', 'has']]\n",
+ "[['has', 'a', '3.33', 'earned', 'run', 'average'], 'in', ['the', 'postseason.', 'If', 'the', 'huge', 'offer']]\n",
+ "[['22', 'homers', 'and', '77', 'runs', 'batted'], 'in', ['this', 'year.', 'The', 'bad', 'news', 'is']]\n",
+ "[['68', 'points', 'higher', 'at', 'Rangers', 'Ballpark'], 'in', ['Arlington', 'than', 'on', 'the', 'road,', 'he']]\n",
+ "[['right-hander,', 'when', 'they', 'were', 'playing', 'dial-a-reliever'], 'in', ['September?', 'Cruz', 'has', 'a', '94-mile-per-hour', 'fastball']]\n",
+ "[['94-mile-per-hour', 'fastball', 'and', 'struck', 'out', '71'], 'in', ['51', '2/3', 'innings.', 'He', 'is', 'not']]\n",
+ "[['RAUL', 'IBANEZ,', 'OF', 'He', 'has', 'knocked'], 'in', ['338', 'runs', 'over', 'the', 'last', 'three']]\n",
+ "[['last', 'three', 'seasons', 'while', 'being', 'hidden'], 'in', ['Seattle.', 'A', 'low-maintenance,', 'high-production', 'player,', 'Ibanez']]\n",
+ "[['Martinez', 'would', 'be', 'smart', 'to', 'stay'], 'in', ['the', 'National', 'League,', 'where', 'his', '87-mph']]\n",
+ "[['BOBBY', 'ABREU,', 'OF', 'He', 'has', 'driven'], 'in', ['100', 'runs', 'or', 'more', 'for', 'six']]\n",
+ "[['him,', 'but', 'he', 'will', 'be', '35'], 'in', ['March', 'and', 'his', 'statistics', 'are', 'slowly']]\n",
+ "[['specialist,', 'he', 'has', 'allowed', 'one', 'homer'], 'in', ['his', 'last', '128', 'innings.', 'Barry', 'Bonds']]\n",
+ "[['wrap', 'up', 'his', 'third', 'straight', 'title'], 'in', ['two', 'more', 'races,', 'or', 'as', 'early']]\n",
+ "[['Gray,', 'there', 'are', 'three', 'races', 'left'], 'in', ['the', 'NASCAR', 'Sprint', 'Cup', 'season.', 'Gray']]\n",
+ "[['Carl', 'Edwards', 'heading', 'into', \"Sunday's\", 'race'], 'in', ['Fort', 'Worth.', 'If', 'Johnson', 'leads', 'by']]\n",
+ "[['points', 'after', 'the', 'Nov.', '9', 'race'], 'in', ['Phoenix,', 'he', 'will', 'win', 'the', 'title,']]\n",
+ "[['points', 'for', 'the', 'first', 'Chase', 'title'], 'in', ['2004.', 'Four', 'drivers', 'had', 'a', 'chance']]\n",
+ "[['win', 'the', 'title', 'going', 'into', 'Homestead'], 'in', ['2005;', 'five', 'drivers', 'were', 'in', 'contention']]\n",
+ "[['Homestead', 'in', '2005;', 'five', 'drivers', 'were'], 'in', ['contention', 'heading', 'into', 'the', 'final', 'race']]\n",
+ "[['contention', 'heading', 'into', 'the', 'final', 'race'], 'in', ['2006.', 'Last', 'year,', 'Johnson', 'went', 'into']]\n",
+ "[['it', \"doesn't\", 'matter', 'what', 'drivers', 'are'], 'in', ['the', 'championship', 'race', 'when', 'they', 'get']]\n",
+ "[['of', 'the', 'Chase.', '\"At', 'this', 'point'], 'in', ['the', 'history', 'of', 'the', 'Super', 'Bowl,']]\n",
+ "[['Super', 'Bowl,', 'it', \"doesn't\", 'matter', \"who's\"], 'in', ['the', 'game.\"', 'To', 'maintain', 'fan', 'interest,']]\n",
+ "[['promoting', 'other', 'competitions', 'that', 'are', 'still'], 'in', ['play,', 'like', 'the', 'Nationwide', 'Series,', 'the']]\n",
+ "[['But', 'Johnson', 'has', 'been', 'so', 'fast'], 'in', ['the', 'Chase', 'with', 'five', 'top-five', 'finishes']]\n",
+ "[['the', 'Chase', 'with', 'five', 'top-five', 'finishes'], 'in', ['seven', 'races', 'that', 'it', 'appears', 'as']]\n",
+ "[['driver', 'has', 'won', 'three', 'straight', 'titles'], 'in', [\"NASCAR's\", 'highest', 'division:', 'Cale', 'Yarborough', 'in']]\n",
+ "[['in', \"NASCAR's\", 'highest', 'division:', 'Cale', 'Yarborough'], 'in', ['1976-78.', \"Johnson's\", 'bid', 'to', 'match', 'Yarborough']]\n",
+ "[['Johnson', 'has', 'finished', 'first', 'and', 'second'], 'in', ['his', 'last', 'two', 'races', 'at', 'Texas,']]\n",
+ "[['zoomed', 'to', '2nd', 'place', 'from', '11th'], 'in', ['the', 'last', 'eight', 'laps', 'of', 'the']]\n",
+ "[['last', 'guy', 'I', 'want', 'to', 'see'], 'in', ['my', 'mirror', 'with', 'a', 'few', 'laps']]\n",
+ "[['something', 'that', 'no', 'driver', 'had', 'done'], 'in', ['30', 'years.', '\"But', 'first,', \"he's\", 'got']]\n",
+ "[['ritual', 'unspooled:', 'The', 'play', 'broadcast', 'repeatedly'], 'in', ['slow', 'motion', 'all', 'over', 'the', 'country,']]\n",
+ "[['and', 'scorn', 'from', 'coaches', 'and', 'players'], 'in', ['the', 'first', 'half', 'of', 'the', 'season.']]\n",
+ "[['a', 'game,', 'about', 'the', 'same', 'as'], 'in', ['2007,', 'when', 'the', 'accuracy', 'rate', 'was']]\n",
+ "[['was', '97.78.', 'And', 'Pereira', 'said', 'that'], 'in', ['a', 'recent', 'game', '(he', 'would', 'not']]\n",
+ "[['interceptions,\"', 'Pereira', 'said.', '\"Once', 'officiating', 'gets'], 'in', ['the', 'public', 'eye,', 'then', \"it's\", 'going']]\n",
+ "[['No', 'matter', 'if', \"it's\", 'better', 'than'], 'in', ['the', 'past', 'or', 'worse.', 'Officiating', 'is']]\n",
+ "[['Fox,', 'said', 'criticism', 'had', 'ratcheted', 'up'], 'in', ['part', 'because', 'a', 'blown', 'call', 'leading']]\n",
+ "[['leading', 'to', 'a', 'loss', 'could', 'result'], 'in', ['a', \"coach's\", 'firing.', 'Marcellus', 'Wiley,', 'a']]\n",
+ "[['you', \"can't\", 'meet.\"', 'Still,', \"Hochuli's\", 'call'], 'in', ['the', 'second', 'week', 'of', 'the', 'season']]\n",
+ "[['--', 'and', 'for', 'keeping', 'such', 'questions'], 'in', ['the', 'public', 'eye.', '\"Public', 'criticism', 'of']]\n",
+ "[['to', 'an', 'allegation', 'that', 'is', 'presented'], 'in', ['a', 'calm', 'moment,', 'not', 'in', 'the']]\n",
+ "[['presented', 'in', 'a', 'calm', 'moment,', 'not'], 'in', ['the', 'heat', 'of', 'battle', 'where', 'you']]\n",
+ "[['The', '42-yard', 'penalty', 'put', 'the', 'Vikings'], 'in', ['field-goal', 'position,', 'and', 'they', 'won', 'the']]\n",
+ "[['to', 'sort', 'out', 'an', 'unusual', 'call'], 'in', ['the', 'Arizona-Dallas', 'game', 'a', 'few', 'weeks']]\n",
+ "[['weeks', 'ago', '--', 'it', 'put', 'Dallas'], 'in', ['position', 'to', 'kick', 'a', 'tying', 'field']]\n",
+ "[['important', 'to', 'work', 'with', 'the', 'crew'], 'in', ['terms', 'of', 'confidence', 'when', 'they', 'walk']]\n",
+ "[['for', 'officials', 'to', 'get', 'intimidated.', 'And'], 'in', [\"today's\", 'environment,', 'they', 'have', 'to', 'keep']]\n",
+ "[['keep', 'building', 'confidence.', \"I've\", 'been', 'afraid'], 'in', ['situations,', 'concerned', 'about', 'if', \"I'm\", 'doing']]\n",
+ "[['up', 'a', 'majority', 'of', 'unaffiliated', 'voters'], 'in', ['Colorado,', 'giving', 'him', 'a', 'five', 'percentage']]\n",
+ "[['poll.', 'With', 'only', '72', 'hours', 'remaining'], 'in', ['the', 'presidential', 'campaign,', 'the', 'results', '--']]\n",
+ "[['the', 'presidential', 'campaign,', 'the', 'results', '--'], 'in', ['addition', 'to', 'other', 'statewide', 'polls', 'showing']]\n",
+ "[['the', 'Arizona', 'senator', 'faces', 'substantial', 'challenges'], 'in', ['winning', 'Colorado.', 'Overall,', 'Obama', 'leads', 'McCain']]\n",
+ "[['Post,', 'said', 'the', 'number', 'of', 'undecideds'], 'in', ['Colorado', 'is', 'smaller', 'than', 'in', 'other']]\n",
+ "[['undecideds', 'in', 'Colorado', 'is', 'smaller', 'than'], 'in', ['other', 'battleground', 'states.', 'While', 'those', 'voters']]\n",
+ "[['has', 'momentum.', '\"Obama', 'looks', 'like', \"he's\"], 'in', ['good', 'shape.', 'Even', 'if', 'all', 'the']]\n",
+ "[['said.', 'McCain', 'spokesman', 'Tom', 'Kise', 'said'], 'in', ['the', 'final', 'few', 'days', 'of', 'a']]\n",
+ "[['presidential', 'candidate', 'only', 'once:', 'Bill', 'Clinton'], 'in', ['1992.', 'So', 'even', 'with', 'a', 'lead,']]\n",
+ "[['Illinois', 'senator', 'attended', 'a', 'campaign', 'rally'], 'in', ['Pueblo', 'on', 'Saturday.', 'Obama', 'campaign', 'manager']]\n",
+ "[['Plouffe', 'said', 'he', 'thinks', 'independent', 'voters'], 'in', ['Colorado', 'will', 'continue', 'to', '\"break', 'decisively\"']]\n",
+ "[['will', 'go', 'for', 'McCain,\"', 'Plouffe', 'said'], 'in', ['a', 'conference', 'call', 'Friday.', '\"Some', 'states']]\n",
+ "[['to', 'us.\"', 'Colorado', 'voters,', 'as', 'those'], 'in', ['the', 'rest', 'of', 'the', 'nation,', 'overwhelmingly']]\n",
+ "[['cutting', 'taxes', 'and', 'managing', 'the', 'war'], 'in', ['Iraq.', 'Independent', 'voters', 'have', 'also', 'sided']]\n",
+ "[['him', 'a', 'small', 'but', 'stable', 'lead'], 'in', ['the', 'race', 'for', \"Colorado's\", 'open', 'Senate']]\n",
+ "[['from', 'the', 'five-point', 'lead', 'he', 'enjoyed'], 'in', ['a', 'Denver', 'Post', 'poll', 'a', 'month']]\n",
+ "[['recent', 'polls.', 'Fourteen', 'percent', 'remain', 'undecided'], 'in', ['the', 'Senate', 'contest.', 'The', 'poll', 'of']]\n",
+ "[['were', 'also', 'interviewed', 'and', 'are', 'reflected'], 'in', ['the', 'poll,', 'which', 'has', 'a', 'margin']]\n",
+ "[['4', 'percentage', 'points.', 'The', 'poll', 'data'], 'in', ['COLO-POLL-DEN', 'are', 'embargoed', 'for', 'Web', 'and']]\n",
+ "[['139', 'fines', 'for', 'playing', 'rules', 'violations'], 'in', ['the', 'weeks', 'preceding', 'the', 'games', 'of']]\n",
+ "[['it.\"', 'POLL-BATTLEGROUND-STATES-DEN', '(undated)', 'will', 'not', 'move'], 'in', [\"tonight's\", 'Denver', 'Post', 'file.', 'The', 'Denver']]\n",
+ "[['Afghan', 'finance', 'minister', 'has', 'been', 'kidnapped'], 'in', ['the', 'northwestern', 'Pakistani', 'city', 'of', 'Peshawar,']]\n",
+ "[['second', 'kidnapping', 'of', 'a', 'prominent', 'Afghan'], 'in', ['Pakistan', 'in', 'the', 'past', 'two', 'months,']]\n",
+ "[['of', 'a', 'prominent', 'Afghan', 'in', 'Pakistan'], 'in', ['the', 'past', 'two', 'months,', 'a', 'spokesman']]\n",
+ "[['a', 'spokesman', 'for', 'the', 'Finance', 'Ministry'], 'in', ['Kabul', 'said', 'Saturday.', 'The', 'man,', 'Zia']]\n",
+ "[['Ahadi,', 'was', 'abducted', 'near', 'his', 'home'], 'in', ['the', 'residential', 'district', 'of', 'Hayatabad', 'on']]\n",
+ "[['general,', 'Abdul', 'Khaliq', 'Farahi,', 'was', 'kidnapped'], 'in', ['the', 'same', 'area', 'in', 'September', 'and']]\n",
+ "[['was', 'kidnapped', 'in', 'the', 'same', 'area'], 'in', ['September', 'and', 'was', 'reported', 'freed', 'a']]\n",
+ "[['week', 'later.', 'Kidnappings', 'have', 'increased', 'recently'], 'in', ['Peshawar', 'as', 'militants', 'have', 'grown', 'more']]\n",
+ "[['to', 'dominate', 'against', 'poor', 'defenses.', 'Playing'], 'in', ['Oakland', 'this', 'week,', 'Turner', 'will', 'be']]\n",
+ "[['has', 'six', 'fumbles', 'and', 'five', 'interceptions'], 'in', ['five', 'starts', 'and', 'has', 'been', 'sacked']]\n",
+ "[[\"Jaguars'\", 'defense,', 'which', 'is', 'ranked', '23rd'], 'in', ['the', 'NFL', 'in', 'total', 'defense', 'and']]\n",
+ "[['is', 'ranked', '23rd', 'in', 'the', 'NFL'], 'in', ['total', 'defense', 'and', '30th', 'in', 'sacks']]\n",
+ "[['NFL', 'in', 'total', 'defense', 'and', '30th'], 'in', ['sacks', 'with', 'nine', 'after', 'finishing', 'ninth']]\n",
+ "[['sacks', 'with', 'nine', 'after', 'finishing', 'ninth'], 'in', ['the', 'league', 'last', 'season.', 'No', 'player']]\n",
+ "[['could', 'turn', 'into', 'quite', 'a', 'shootout'], 'in', ['Denver', 'when', 'Jay', 'Cutler', 'and', 'the']]\n",
+ "[['1,033', 'passing', 'yards', 'and', 'nine', 'touchdowns'], 'in', ['four', 'games.', 'Pennington', 'has', 'been', 'hot,']]\n",
+ "[['hot,', 'with', '280', 'or', 'more', 'yards'], 'in', ['three', 'consecutive', 'games.', 'Considering', 'that', 'each']]\n",
+ "[['of', 'Sen.', 'Barack', 'Obama', 'was', 'living'], 'in', ['the', 'United', 'States', 'illegally,', 'his', 'campaign']]\n",
+ "[['Onyango,', 'referred', 'to', 'as', '\"Auntie', 'Zeituni\"'], 'in', ['a', 'passage', 'in', \"Obama's\", 'memoir,', 'applied']]\n",
+ "[['as', '\"Auntie', 'Zeituni\"', 'in', 'a', 'passage'], 'in', [\"Obama's\", 'memoir,', 'applied', 'for', 'political', 'asylum']]\n",
+ "[[\"Obama's\", 'memoir,', 'applied', 'for', 'political', 'asylum'], 'in', ['the', 'United', 'States', 'in', '2004,', 'but']]\n",
+ "[['political', 'asylum', 'in', 'the', 'United', 'States'], 'in', ['2004,', 'but', 'a', 'federal', 'immigration', 'judge']]\n",
+ "[['are', 'suspicious', 'about', 'stories', 'that', 'surface'], 'in', ['the', 'last', '72', 'hours', 'of', 'a']]\n",
+ "[['think', \"they're\", 'going', 'to', 'put', 'it'], 'in', ['that', 'context,\"', 'David', 'Axelrod,', \"Obama's\", 'chief']]\n",
+ "[['the', 'White', 'House', 'had', 'no', 'involvement'], 'in', ['the', 'matter.', 'Onyango', 'is', 'the', 'half-sister']]\n",
+ "[['largely', 'raised', 'by', 'his', 'maternal', 'grandparents'], 'in', ['Honolulu,', 'first', 'met', 'Onyango', 'when', 'he']]\n",
+ "[['the', 'ceremony', 'when', 'Obama', 'was', 'sworn'], 'in', ['to', 'the', 'U.S.', 'Senate', 'in', '2004,']]\n",
+ "[['sworn', 'in', 'to', 'the', 'U.S.', 'Senate'], 'in', ['2004,', 'but', 'campaign', 'officials', 'said', 'the']]\n",
+ "[['the', 'senator', 'had', 'provided', 'no', 'assistance'], 'in', ['getting', 'her', 'a', 'tourist', 'visa', 'and']]\n",
+ "[['ceremony,', 'Onyango', 'and', 'another', 'relative', 'said'], 'in', ['interviews', 'that', 'they', 'had', 'flown', 'to']]\n",
+ "[['she', 'called', 'to', 'say', 'she', 'was'], 'in', ['Boston,', 'but', 'he', 'did', 'not', 'see']]\n",
+ "[['Commission', 'records', 'list', 'a', 'Zeituni', 'Onyango'], 'in', ['South', 'Boston', 'as', 'making', 'a', 'series']]\n",
+ "[['reported', 'on', 'Thursday', 'that', 'Onyango', 'lived'], 'in', ['public', 'housing', 'in', 'Boston.', 'On', 'Friday,']]\n",
+ "[['that', 'Onyango', 'lived', 'in', 'public', 'housing'], 'in', ['Boston.', 'On', 'Friday,', 'The', 'Associated', 'Press']]\n",
+ "[['Associated', 'Press', 'reported', 'that', 'she', 'was'], 'in', ['the', 'country', 'illegally', 'and', 'that', 'her']]\n",
+ "[['level', 'of', 'regional', 'directors.', 'Onyango', 'lives'], 'in', ['a', 'disabled-access', 'apartment,', 'and', 'worked', 'as']]\n",
+ "[['building.', 'The', 'New', 'York', 'Times', 'said'], 'in', ['editorials', 'for', 'Sunday,', 'Nov.', '2:', 'ISLAND']]\n",
+ "[['just', 'as', 'urgent', 'whether', 'you', 'look'], 'in', ['the', 'stucco', 'foreclosure', 'tracts', 'of', 'Phoenix']]\n",
+ "[['and', 'Nassau,', 'are', 'first', 'and', 'fourth'], 'in', ['the', 'number', 'of', 'loans', 'at', 'risk']]\n",
+ "[['of', 'loans', 'at', 'risk', 'of', 'foreclosure'], 'in', ['New', 'York', 'state.', 'Long', 'Island', 'was']]\n",
+ "[['shortage', 'of', 'housing', 'for', 'regular', 'people,'], 'in', ['a', 'market', 'pathologically', 'skewed', 'by', 'racial']]\n",
+ "[['not-in-my-backyard', 'resistance', 'to', 'responsible', 'development.', 'Housing'], 'in', ['the', 'land', 'of', 'Levittown,', 'the', 'national']]\n",
+ "[['people', 'who', 'grew', 'sick', 'of', 'living'], 'in', ['their', \"parents'\", 'basements,', 'while', 'retirees', 'rattled']]\n",
+ "[[\"parents'\", 'basements,', 'while', 'retirees', 'rattled', 'around'], 'in', ['empty', 'nests,', 'cash-poor', 'but', 'property-rich', '--']]\n",
+ "[['one', 'of', 'the', 'most', 'segregated', 'suburbs'], 'in', ['the', 'country,', 'designed', 'from', 'the', 'days']]\n",
+ "[['elderly', 'to', 'plunder', 'their', 'equity,', 'people'], 'in', ['heavily', 'minority', 'areas', 'like', 'Hempstead', 'Village,']]\n",
+ "[['homes', 'for', 'illegal', 'rentals,', 'and', 'trader-uppers'], 'in', ['richer', 'ZIP', 'codes', 'dived', 'in', 'over']]\n",
+ "[['trader-uppers', 'in', 'richer', 'ZIP', 'codes', 'dived'], 'in', ['over', 'their', 'heads.', 'Advocates', 'who', 'had']]\n",
+ "[['auctions.', 'The', 'disaster', 'is', 'particularly', 'acute'], 'in', ['black', 'and', 'Latino', 'communities,', 'where', 'subprime']]\n",
+ "[['to', 'keep', 'their', 'own', 'budgets', 'right-side-up'], 'in', ['a', 'wretched', 'economy.', 'New', 'York', \"State's\"]]\n",
+ "[['Buy', 'Houses,\"', 'read', 'the', 'light-post', 'fliers'], 'in', ['poor', 'neighborhoods,', 'offering', 'fast', 'cash', 'for']]\n",
+ "[['now', 'offering,', 'for', 'thousands', 'of', 'dollars'], 'in', ['fees,', 'to', 'fix', \"people's\", 'credit,', 'convert']]\n",
+ "[['at', 'the', 'Long', 'Island', 'Housing', 'Partnership'], 'in', ['Hauppauge', 'last', 'week,', 'representatives', 'of', 'Citibank']]\n",
+ "[['emphasis', 'was', 'on', 'realism', 'and', 'honesty'], 'in', ['a', 'world', 'that', 'jettisoned', 'both.', 'Participants']]\n",
+ "[['nuclear', 'weapon.', 'That', 'is', 'no', 'consolation'], 'in', ['a', 'world', 'where', 'so', 'many', 'countries']]\n",
+ "[['possibly', 'nuclear', 'weapons.', 'That', 'means', 'that'], 'in', ['coming', 'years', 'there', 'will', 'be', 'even']]\n",
+ "[['can', 'refurbish', 'its', 'testing', 'laboratory,', 'invest'], 'in', ['new', 'technology', 'and', 'hire', 'additional', 'nuclear']]\n",
+ "[['far', 'away', 'as', 'she', 'sat', 'back'], 'in', ['her', 'folding', 'chair', 'with', 'sheets', 'of']]\n",
+ "[['two', 'cell', 'phones', 'from', 'the', 'chair'], 'in', ['front', 'of', 'her.', 'One', 'was', 'hers,']]\n",
+ "[['she', 'would', 'be', 'knocking', 'on', 'doors'], 'in', ['Pennsylvania.', '\"I', \"haven't\", 'done', 'that', 'since']]\n",
+ "[['at', 'the', 'dining', 'room', 'table', 'and'], 'in', ['the', 'kitchen.', 'It', 'was', 'the', 'third']]\n",
+ "[['do', 'something', 'to', 'swing', 'the', 'vote'], 'in', ['the', 'states', 'that', '\"matter.\"', 'From', 'the']]\n",
+ "[['that', '\"matter.\"', 'From', 'the', 'Sputnik', 'Bar'], 'in', ['Clinton', 'Hill,', 'Brooklyn,', 'to', 'the', 'Bowery']]\n",
+ "[['Hill,', 'Brooklyn,', 'to', 'the', 'Bowery', 'Hotel'], 'in', ['the', 'East', 'Village,', 'to', \"Sibblies'\", 'pink-brick']]\n",
+ "[['Village,', 'to', \"Sibblies'\", 'pink-brick', 'town', 'house'], 'in', ['Harlem,', 'supporters', 'of', 'Sen.', 'Obama', 'gathered']]\n",
+ "[['minutes', 'to', 'reach', 'out', 'to', 'voters'], 'in', ['the', 'more', 'mottled', 'states', 'that', 'are']]\n",
+ "[['drive', 'at', 'the', \"campaign's\", 'regional', 'headquarters'], 'in', ['Woodbridge,', 'N.J.,', 'a', '40-minute', 'drive', 'from']]\n",
+ "[['of', 'McCain', 'filled', 'the', 'phone', 'room'], 'in', ['Woodbridge,', 'pounding', 'out', 'Pennsylvania', 'and', 'New']]\n",
+ "[['55,', 'of', 'Skillman,', 'N.J.,', 'who', 'served'], 'in', ['the', 'Navy.', 'He', 'said', 'he', 'was']]\n",
+ "[['way:', 'This', 'is', 'the', 'fourth', 'quarter'], 'in', ['a', 'football', 'game,', 'and', \"we're\", 'having']]\n",
+ "[['New', 'York', 'City', 'will', 'vote', 'Democratic'], 'in', [\"Tuesday's\", 'presidential', 'election,', 'as', 'it', 'has']]\n",
+ "[['a', 'Republican,', 'pulled', 'out', 'a', 'victory'], 'in', ['a', 'three-way', 'race', 'that', 'saw', 'Democratic']]\n",
+ "[['there', 'were', '2.8', 'million', 'registered', 'Democrats'], 'in', ['the', 'city,', 'compared', 'with', 'a', 'little']]\n",
+ "[['minds', 'and', 'get', 'out', 'the', 'vote'], 'in', ['swing', 'states.', '\"We\\'re', 'seeking', 'to', 'harness']]\n",
+ "[['\"We\\'re', 'seeking', 'to', 'harness', 'the', 'enthusiasm'], 'in', ['New', 'York', 'to', 'help', 'out', 'in']]\n",
+ "[['in', 'New', 'York', 'to', 'help', 'out'], 'in', ['other', 'states,\"', 'said', 'Blake', 'Zeff,', 'the']]\n",
+ "[['of', 'communications', 'for', 'the', 'Obama', 'campaign'], 'in', ['New', 'York.', 'More', 'than', '3,000', 'volunteers']]\n",
+ "[['banks', 'to', 'accommodate', 'hundreds', 'of', 'callers,'], 'in', ['addition', 'to', 'more', 'than', '20', 'smaller']]\n",
+ "[['not', 'find', 'any', 'official', 'phone', 'banks'], 'in', ['the', 'city,', 'though', 'they', 'might', 'happen']]\n",
+ "[['wife,', 'Arlene,', 'at', 'a', 'wicker', 'table'], 'in', ['the', 'lobby.', '\"I', 'get', 'panicky.\"', 'Jamie']]\n",
+ "[['waitress', 'and', 'college', 'student', 'who', 'lives'], 'in', ['Woodbridge,', 'was', 'making', 'calls', 'on', 'behalf']]\n",
+ "[['dozens', 'of', 'cold', 'calls', 'to', 'strangers'], 'in', ['faraway', 'towns.', '\"What\\'s', 'the', 'worst', 'that']]\n",
+ "[['the', 'middle', 'class', 'mentioned', 'so', 'often'], 'in', ['the', 'presidential', 'campaign.', 'As', 'the', 'candidates']]\n",
+ "[['class.', 'Given', 'what', 'is', 'going', 'on'], 'in', ['the', 'economy,', 'that', 'fear', 'might', 'well']]\n",
+ "[['spinning,', 'she', 'held', 'a', 'small', 'crowd'], 'in', ['her', 'sway.', 'This', 'was', 'how', 'Kim']]\n",
+ "[['month', 'at', 'the', 'Samsung', 'World', 'Championship'], 'in', ['Half', 'Moon', 'Bay,', 'Calif.', 'The', 'week']]\n",
+ "[['with', 'Kim,', 'a', '20-year-old', 'South', 'Korean,'], 'in', ['second', 'place,', 'one', 'stroke', 'behind', 'Paula']]\n",
+ "[['pressure', 'to', 'conduct', 'her', 'news', 'conference'], 'in', ['English', 'because', 'of', 'LPGA', 'Commissioner', 'Carolyn']]\n",
+ "[['experience', 'on', 'the', 'Tour', 'be', 'proficient'], 'in', ['English', 'or', 'face', 'suspension', 'beginning', 'in']]\n",
+ "[['in', 'English', 'or', 'face', 'suspension', 'beginning'], 'in', ['2009.', 'Entertaining', 'answers', 'are', 'not', 'a']]\n",
+ "[['out', 'of', 'her', 'bag.', 'Growing', 'up'], 'in', ['South', 'Korea,', 'she', 'spent', 'countless', 'hours']]\n",
+ "[['to', 'play', 'it', 'safe.', 'She', 'spoke'], 'in', ['Korean', 'while', 'an', 'LPGA', 'official', 'translated.']]\n",
+ "[['on', 'a', 'tour', 'personality', 'was', 'lost'], 'in', ['the', 'translation.', 'Although', 'language', 'has', 'become']]\n",
+ "[['which', 'is', 'like', 'reading', 'no', 'break'], 'in', ['a', 'putt', 'on', 'a', 'contoured', 'green.']]\n",
+ "[['Its', 'image', 'has', 'undergone', 'more', 'makeovers'], 'in', ['its', '58', 'years', 'of', 'existence', 'than']]\n",
+ "[['she', 'met', 'with', 'South', 'Korean', 'players'], 'in', ['August,', 'Bivens', 'said', 'she', 'had', 'received']]\n",
+ "[['had', 'received', 'complaints', 'from', 'corporate', 'sponsors'], 'in', ['the', 'lucrative', 'pro-ams', 'because', 'some', 'LPGA']]\n",
+ "[['some', 'LPGA', 'players', 'could', 'not', 'schmooze'], 'in', ['English.', 'After', 'the', 'details', 'of', 'her']]\n",
+ "[['that', 'playing', 'members', 'would', 'become', 'proficient'], 'in', ['English.', \"Bivens's\", 'motivation', 'extends', 'beyond', 'the']]\n",
+ "[['the', 'LPGA', 'rookie', 'of', 'the', 'year'], 'in', ['2006', 'and', 'a', 'two-time', 'winner', 'this']]\n",
+ "[['cavorting', 'like', 'the', 'American', 'girl', 'immortalized'], 'in', ['song', 'by', 'Cyndi', 'Lauper', 'while', 'maintaining']]\n",
+ "[['Korean', \"daughter's\", 'comportment.', 'Born', 'and', 'raised'], 'in', ['California', 'to', 'parents', 'who', 'emigrated', 'from']]\n",
+ "[['During', 'the', 'pro-am', 'at', 'a', 'tournament'], 'in', ['Danville,', 'Calif.,', 'she', 'was', 'the', 'perfect']]\n",
+ "[['name,', 'Man', 'Kim,', 'who', 'was', 'standing'], 'in', ['his', \"daughter's\", 'shadow,', 'leaned', 'into', 'the']]\n",
+ "[['the', 'cart', 'and', 'spoke', 'to', 'her'], 'in', ['Korean.', 'He', 'interrupted', 'her', 'repeatedly', 'as']]\n",
+ "[['later', 'about', 'her', 'father,', 'she', 'wrote'], 'in', ['an', 'e-mail', 'message:', '\"Regardless', 'of', 'what']]\n",
+ "[['always', 'will', 'defend', 'my', \"father's\", 'role'], 'in', ['my', 'career,', 'both', 'as', 'a', 'caddie,']]\n",
+ "[['to', 'get', 'me', 'to', 'this', 'point'], 'in', ['my', 'life.\"', 'In', 'Korean', 'culture,', 'parents']]\n",
+ "[['the', 'circuit', 'and', 'serve', 'their', 'daughters'], 'in', ['many', 'unofficial', 'roles:', 'coach,', 'caddie,', 'chauffeur,']]\n",
+ "[['mothers', 'or', 'fathers', 'fry', 'it', 'up'], 'in', ['a', 'pan.', 'Some', 'of', 'the', 'fathers']]\n",
+ "[['what', 'Carolyn', 'is', 'trying', 'to', 'do'], 'in', ['regards', 'to', 'emancipating', 'Korean', 'players', 'from']]\n",
+ "[['my', 'firm', 'belief', 'that', 'just', 'like'], 'in', ['any', 'other', 'culture,', 'one', 'has', 'to']]\n",
+ "[['learn', 'who', 'they', 'are', 'as', 'humans'], 'in', ['this', 'world,', 'of', 'their', 'own', 'volition.']]\n",
+ "[['his', 'daughter', 'joined', 'the', 'LPGA', 'Tour'], 'in', ['2000.', 'Now', '28,', 'Jang', 'has', 'two']]\n",
+ "[['Jang', 'has', 'two', 'older', 'sisters', 'back'], 'in', ['South', 'Korea.', 'Jang', 'gave', 'her', 'father']]\n",
+ "[['dinner', 'at', 'a', 'Korean', 'barbecue', 'restaurant'], 'in', ['Oakland,', 'Calif.', 'In', 'English,', 'she', 'recalled']]\n",
+ "[['way', 'out', 'of', 'a', 'speeding', 'ticket'], 'in', ['Florida', 'by', 'telling', 'the', 'officer', 'who']]\n",
+ "[['who', 'has', 'earned', 'more', 'than', '$900,000'], 'in', ['24', 'starts', 'this', 'year,', 'was', 'in']]\n",
+ "[['in', '24', 'starts', 'this', 'year,', 'was'], 'in', ['the', 'hotel', 'doing', 'her', \"father's\", 'laundry.']]\n",
+ "[['until', 'she', 'returned', 'home', 'to', 'play'], 'in', ['this', \"week's\", 'tournament', 'in', 'South', 'Korea.']]\n",
+ "[['to', 'play', 'in', 'this', \"week's\", 'tournament'], 'in', ['South', 'Korea.', 'She', 'had', 'been', 'away']]\n",
+ "[['being', 'cared', 'for', 'by', 'her', 'in-laws'], 'in', ['South', 'Korea', 'and', 'her', 'husband,', 'Hyuk']]\n",
+ "[['schoolwork.', 'The', 'two', 'do', 'not', 'mix'], 'in', ['a', 'culture', 'that', 'places', 'a', 'premium']]\n",
+ "[['she', 'won', 'on', 'the', 'Futures', 'Tour'], 'in', ['2006.', 'When', 'Lee', 'and', 'Song-Hee', 'Kim']]\n",
+ "[['social', 'butterflies.', 'At', 'last', \"year's\", 'pro-am'], 'in', ['Danville,', 'Chuck', 'Rydell,', 'an', 'employee', 'of']]\n",
+ "[['made', 'Rydell', 'laugh', 'when', 'the', 'windshield'], 'in', ['her', 'cart', 'flew', 'off.', 'Without', 'missing']]\n",
+ "[['last', 'two', 'years,', 'the', 'tour', 'stop'], 'in', ['Portland,', 'Ore.,', 'has', 'held', 'a', 'separate']]\n",
+ "[['South', 'Korean', 'pros,', 'up', 'from', 'five'], 'in', ['2007.', 'Among', 'the', 'players', 'who', 'took']]\n",
+ "[['Among', 'the', 'players', 'who', 'took', 'part'], 'in', ['this', \"year's\", 'South', 'Korean', 'pro-am', 'was']]\n",
+ "[['her', 'stylist.', 'He', 'bought', 'her', 'shirts'], 'in', ['pro', 'shops,', 'choosing', 'what', 'he', 'might']]\n",
+ "[['had', 'the', 'style', 'of', 'a', 'kegger'], 'in', ['the', 'woods', 'rather', 'than', 'a', 'Midtown']]\n",
+ "[['second-worst', 'beating', 'the', 'Bulldogs', 'have', 'taken'], 'in', ['a', 'series', 'that', 'began', 'in', '1915.']]\n",
+ "[['taken', 'in', 'a', 'series', 'that', 'began'], 'in', ['1915.', 'If', 'revenge', 'is', 'best', 'served']]\n",
+ "[['resonated', 'as', 'much', 'as', 'any', 'moment'], 'in', ['college', 'football', 'last', 'season.', 'Cold', 'can']]\n",
+ "[['soothsayer', 'out', 'of', 'Meyer,', 'who', 'wrote'], 'in', ['his', 'autobiography', 'this', 'summer,', '\"We\\'ll', 'handle']]\n",
+ "[['5-1', 'Southeastern', 'Conference)', 'called', 'two', 'timeouts'], 'in', ['the', 'final', 'minute', 'to', 'relish', 'the']]\n",
+ "[['minute', 'to', 'relish', 'the', 'victory,', 'rubbing'], 'in', ['the', 'worst', 'loss', 'of', \"Richt's\", 'tenure']]\n",
+ "[['one', 'of', 'the', 'top', 'two', 'spots'], 'in', ['the', 'BCS', 'standings,', 'but', 'the', 'debate']]\n",
+ "[['the', 'BCS', 'standings,', 'but', 'the', 'debate'], 'in', ['Athens', 'will', 'be', 'about', 'which', 'of']]\n",
+ "[['the', 'game', 'with', 'a', 'critical', 'interception'], 'in', ['the', 'third', 'quarter', 'that', 'Joe', 'Haden']]\n",
+ "[['turnovers', 'and', 'has', 'averaged', '54.3', 'points'], 'in', ['victories', 'over', 'Louisiana', 'State,', 'Kentucky', 'and']]\n",
+ "[['him', 'off', 'the', 'face', 'mask', 'late'], 'in', ['the', 'second', 'quarter', 'with', 'Georgia', 'trailing,']]\n",
+ "[['recovered,', 'and', 'the', 'Gators', 'took', 'over'], 'in', ['Georgia', 'territory.', 'Tebow', 'immediately', 'found', 'tight']]\n",
+ "[['Tripp', 'Chandler,', 'who', 'was', 'running', 'alone'], 'in', ['the', 'end', 'zone,', 'on', 'first', 'down.']]\n",
+ "[['the', 'Bulldogs', 'looking', 'up', 'at', 'Florida'], 'in', ['the', 'SEC', 'standings.', 'The', 'yearlong', 'hangover']]\n",
+ "[['receiver', 'for', 'a', 'kosher', 'meatpacking', 'company'], 'in', ['Iowa', 'after', 'a', 'bank', 'said', 'that']]\n",
+ "[['that', 'it', 'had', 'written', '$1.4', 'million'], 'in', ['bad', 'checks.', 'The', 'loan', 'foreclosure', 'against']]\n",
+ "[['company,', 'Agriprocessors', 'Inc.,', 'was', 'the', 'latest'], 'in', ['a', 'cascade', 'of', 'troubles', 'that', 'have']]\n",
+ "[['400', 'illegal', 'immigrant', 'workers', 'were', 'arrested'], 'in', ['a', 'raid', 'in', 'May', 'at', 'its']]\n",
+ "[['workers', 'were', 'arrested', 'in', 'a', 'raid'], 'in', ['May', 'at', 'its', 'plant', 'in', 'Postville,']]\n",
+ "[['raid', 'in', 'May', 'at', 'its', 'plant'], 'in', ['Postville,', 'Iowa.', 'On', 'Thursday,', 'Sholom', 'Rubashkin,']]\n",
+ "[['the', 'former', 'chief', 'executive,', 'was', 'arrested'], 'in', ['Iowa', 'on', 'federal', 'charges', 'of', 'conspiring']]\n",
+ "[['immigrants.', 'In', 'a', 'lawsuit', 'filed', 'Thursday'], 'in', ['federal', 'court', 'in', 'Cedar', 'Rapids,', 'First']]\n",
+ "[['lawsuit', 'filed', 'Thursday', 'in', 'federal', 'court'], 'in', ['Cedar', 'Rapids,', 'First', 'Bank', 'Business', 'Capital']]\n",
+ "[['had', 'failed', 'to', 'maintain', 'enough', 'cash'], 'in', ['designated', 'bank', 'accounts', 'to', 'stay', 'current']]\n",
+ "[['the', 'revolving', 'loan', 'it', 'took', 'out'], 'in', ['1999.', 'The', 'lawsuit', 'was', 'first', 'reported']]\n",
+ "[['suit', 'says', 'millions', 'of', 'chickens', '\"are'], 'in', ['danger', 'of', 'starving', 'to', 'death', 'if']]\n",
+ "[['of', 'Sholom,', 'put', 'up', '$2.2', 'million'], 'in', ['collateral,', 'in', 'addition', 'to', 'some', 'of']]\n",
+ "[['put', 'up', '$2.2', 'million', 'in', 'collateral,'], 'in', ['addition', 'to', 'some', 'of', 'the', 'property']]\n",
+ "[['week,', 'Iowa', 'authorities', 'levied', '$10', 'million'], 'in', ['fines', 'against', 'Agriprocessors', 'for', 'wage', 'violations,']]\n",
+ "[['not', 'more', 'so,', 'died', 'Oct.', '18'], 'in', ['Los', 'Angeles.', 'He', 'was', '75', 'and']]\n",
+ "[['explored', 'the', 'social', 'and', 'political', 'contexts'], 'in', ['which', 'art', 'is', 'produced.', 'His', 'work']]\n",
+ "[['or', 'ill', '--', 'of', 'the', 'society'], 'in', ['which', 'it', 'is', 'made.', 'He', 'also']]\n",
+ "[['many', 'genres,', 'among', 'them', 'popular', 'imagery'], 'in', ['Europe', 'and', 'America', 'and', 'emblematic', 'national']]\n",
+ "[['and', 'Mount', 'Rushmore.', 'Boime', 'was', 'known'], 'in', ['particular', 'for', 'his', 'four-volume', '\"Social', 'History']]\n",
+ "[['nearly', '3,000', 'pages', 'and', 'comprises', '\"Art'], 'in', ['an', 'Age', 'of', 'Revolution,', '1750-1800\"', '(1987);']]\n",
+ "[['Age', 'of', 'Revolution,', '1750-1800\"', '(1987);', '\"Art'], 'in', ['an', 'Age', 'of', 'Bonapartism,', '1800-1815\"', '(1990);']]\n",
+ "[['Age', 'of', 'Bonapartism,', '1800-1815\"', '(1990);', '\"Art'], 'in', ['an', 'Age', 'of', 'Counterrevolution,', '1815-1848\"', '(2004);']]\n",
+ "[['of', 'Counterrevolution,', '1815-1848\"', '(2004);', 'and', '\"Art'], 'in', ['an', 'Age', 'of', 'Civil', 'Struggle,', '1848-1871\"']]\n",
+ "[['the', 'sweep', 'of', 'his', 'scholarship.', 'Writing'], 'in', ['The', 'New', 'York', 'Times', 'in', '1974,']]\n",
+ "[['Writing', 'in', 'The', 'New', 'York', 'Times'], 'in', ['1974,', 'Hilton', 'Kramer', 'singled', 'out', \"Boime's\"]]\n",
+ "[['book,', '\"The', 'Academy', 'and', 'French', 'Painting'], 'in', ['the', 'Nineteenth', 'Century,\"', 'as', '\"the', 'indispensable']]\n",
+ "[['for', 'this', 'inquiry.\"', 'Published', 'by', 'Phaidon'], 'in', ['1971,', 'the', 'book', 'examines', 'the', 'unintended']]\n",
+ "[['Academy,', 'long', 'considered', 'a', 'conservative', 'force'], 'in', ['the', 'training', 'of', '19th-century', 'painters,', 'to']]\n",
+ "[['innovation.', 'Albert', 'Isaac', 'Boime', 'was', 'born'], 'in', ['St.', 'Louis', 'on', 'March', '17,', '1933.']]\n",
+ "[['service,', 'he', 'earned', 'a', \"bachelor's\", 'degree'], 'in', ['art', 'history', 'from', 'UCLA', 'in', '1961,']]\n",
+ "[['degree', 'in', 'art', 'history', 'from', 'UCLA'], 'in', ['1961,', 'followed', 'by', \"master's\", 'and', 'doctoral']]\n",
+ "[['followed', 'by', \"master's\", 'and', 'doctoral', 'degrees'], 'in', ['the', 'field', 'from', 'Columbia', 'in', '1963']]\n",
+ "[['degrees', 'in', 'the', 'field', 'from', 'Columbia'], 'in', ['1963', 'and', '1968.', 'From', '1968', 'to']]\n",
+ "[['Binghamton.', 'He', 'joined', 'the', 'UCLA', 'faculty'], 'in', ['1979.', 'Besides', 'his', 'wife,', 'the', 'former']]\n",
+ "[['examined', 'the', 'depiction', 'of', 'black', 'people'], 'in', ['19th-century', 'art.', 'In', 'another,', '\"Thomas', 'Couture']]\n",
+ "[['painter', 'of', 'the', '19th', 'century.', 'But'], 'in', ['one', 'study,', 'which', 'attracted', 'wide', 'attention']]\n",
+ "[['one', 'study,', 'which', 'attracted', 'wide', 'attention'], 'in', ['the', 'news', 'media,', 'Boime', 'offered', 'a']]\n",
+ "[['van', 'Gogh', 'would', 'have', 'seen', 'it'], 'in', ['from', 'the', 'window', 'of', 'the', 'asylum']]\n",
+ "[['asylum', 'to', 'which', 'he', 'was', 'confined'], 'in', ['1889', 'and', '1890.', 'Addressing', 'the', 'American']]\n",
+ "[['1890.', 'Addressing', 'the', 'American', 'Astronomical', 'Society'], 'in', ['1985,', 'Boime', 'argued', 'that', 'van', \"Gogh's\"]]\n",
+ "[['the', 'arrangement', 'of', 'the', 'heavenly', 'bodies'], 'in', ['the', 'predawn', 'hours', 'of', 'June', '19,']]\n",
+ "[['Spangenberger', '--', 'who', 'died', 'Oct.', '21'], 'in', ['Rhinebeck,', 'N.Y.,', 'at', 'the', 'age', 'of']]\n",
+ "[['vessels,', 'was', 'the', 'largest', 'tugboat', 'company'], 'in', ['the', 'United', 'States,', 'and', 'maybe', 'the']]\n",
+ "[['United', 'States,', 'and', 'maybe', 'the', 'biggest'], 'in', ['the', 'world.', 'His', 'death', 'was', 'announced']]\n",
+ "[['Spangenberger', 'took', 'over', 'the', 'legendary', 'company'], 'in', ['1954,', 'Cornell', 'was', 'struggling;', 'trucks,', 'railroads']]\n",
+ "[['since', 'childhood', '--', 'always', 'telling', 'them'], 'in', ['person.', 'He', 'even', 'had', 'to', 'let']]\n",
+ "[['producer', 'of', 'crushed', 'stone,', 'bought', 'Cornell'], 'in', ['1958,', 'Spangenberger', 'remained', 'in', 'charge', 'of']]\n",
+ "[['bought', 'Cornell', 'in', '1958,', 'Spangenberger', 'remained'], 'in', ['charge', 'of', 'towing', 'operations,', 'which', 'continued']]\n",
+ "[['Cornell', 'from', 'going', 'out', 'of', 'business'], 'in', ['1963.', 'The', 'company', 'traced', 'it', 'roots']]\n",
+ "[['was', 'the', 'largest', 'of', 'its', 'kind'], 'in', ['the', 'United', 'States.', 'One', 'steamer', 'was']]\n",
+ "[['an', 'amusement', 'park.', 'When', 'he', 'died'], 'in', ['1890,', 'Samuel', 'D.', 'Coykendall', 'took', 'over']]\n",
+ "[['sons', 'assumed', 'control', 'after', 'his', 'death'], 'in', ['1913.', 'Spangenberger', 'was', 'born', 'in', 'Kingston']]\n",
+ "[['death', 'in', '1913.', 'Spangenberger', 'was', 'born'], 'in', ['Kingston', 'on', 'Dec.', '9,', '1905.', 'He']]\n",
+ "[['to', 'the', 'shipyard', 'workers', 'and', 'boatmen'], 'in', ['Rondout,', 'his', 'mother', 'by', 'selling', 'bread']]\n",
+ "[['New', 'York', 'University', 'with', 'a', 'degree'], 'in', ['business,', 'then', 'worked', 'for', 'Standard', 'Oil']]\n",
+ "[['a', 'sales', 'representative.', 'He', 'joined', 'Cornell'], 'in', ['1933', 'in', 'accounts', 'receivable,', 'then', 'moved']]\n",
+ "[['representative.', 'He', 'joined', 'Cornell', 'in', '1933'], 'in', ['accounts', 'receivable,', 'then', 'moved', 'to', 'supervising']]\n",
+ "[['climbing', 'the', 'ladder', 'to', 'become', 'president'], 'in', ['1954.', 'By', 'that', 'time,', 'much', 'of']]\n",
+ "[['efforts', 'to', 'modernize', 'the', 'fleet', 'resulted'], 'in', ['boats', 'like', 'the', 'Rockland', 'County,', 'which']]\n",
+ "[['name,', \"Spangenberger's\", 'expertise', 'and', '$4', 'million'], 'in', ['new', 'barges', 'to', 'expand', 'its', 'tug']]\n",
+ "[['and', 'got', 'out', 'of', 'the', 'business'], 'in', ['1963.', 'Spangenberger,', 'who', 'left', 'no', 'immediate']]\n",
+ "[['no', 'immediate', 'survivors,', 'liked', 'to', 'hike'], 'in', ['the', 'Catskills', 'and', 'dance', 'to', 'the']]\n",
+ "[['to', 'the', 'music', 'of', 'Guy', 'Lombardo'], 'in', ['elegant', 'Manhattan', 'hotels', 'with', 'his', 'wife']]\n",
+ "[['at', 'the', 'Hudson', 'River', 'Maritime', 'Museum'], 'in', ['2001.', 'In', '1958,', 'Spangenberger,', 'with', 'clear']]\n",
+ "[['his', 'longevity', 'and', 'accomplishments,', 'Toomer', '--'], 'in', ['his', '13th', 'season', '--', 'has', 'never']]\n",
+ "[['usually', 'the', 'case', 'among', 'athletes,', 'credibility'], 'in', ['the', 'locker', 'room', 'is', 'earned', 'primarily']]\n",
+ "[['field.', 'Toomer', 'accrued', 'more', 'last', 'Sunday'], 'in', ['Pittsburgh', 'with', 'the', 'Giants', 'trailing', 'by']]\n",
+ "[['the', 'Giants', 'trailing', 'by', '5', 'points'], 'in', ['the', 'fourth', 'quarter', 'on', 'a', 'fourth-and-6']]\n",
+ "[['on', 'his', 'day', 'off,', 'Toomer', 'was'], 'in', ['a', 'limousine', 'in', 'Hillsdale,', 'N.J.,', 'picking']]\n",
+ "[['off,', 'Toomer', 'was', 'in', 'a', 'limousine'], 'in', ['Hillsdale,', 'N.J.,', 'picking', 'up', 'Chase', 'Strynkowski,']]\n",
+ "[['and', 'rode', 'with', 'him', 'to', 'school'], 'in', ['the', 'limo.', 'When', 'they', 'entered', 'the']]\n",
+ "[['removed', 'his', 'hat.', '\"Can\\'t', 'wear', 'hats'], 'in', ['school,\"', 'Toomer', 'said.', '\"My', 'dad', 'was']]\n",
+ "[['son.', 'Think', 'about', 'that.\"', 'That', 'was'], 'in', ['Northern', 'California,', 'where', 'the', 'four', 'Toomer']]\n",
+ "[['the', 'four', 'Toomer', 'siblings', 'were', 'raised'], 'in', ['a', 'suburban', 'neighborhood', 'with', 'a', 'view']]\n",
+ "[['because', 'the', 'words', 'mean', 'Peace', 'Warrior'], 'in', ['Swahili.', 'Amani', 'first', 'attended', 'private', 'schools']]\n",
+ "[['but', 'his', 'father,', 'Donald', 'Toomer,', 'was'], 'in', ['charge', 'of', 'an', 'inner-city', 'junior', 'high']]\n",
+ "[['charge', 'of', 'an', 'inner-city', 'junior', 'high'], 'in', ['San', 'Francisco.', 'According', 'to', 'Donald,', 'he']]\n",
+ "[['Donald,', 'he', 'decided', 'to', 'enroll', 'Amani'], 'in', ['his', 'school', 'when', 'his', 'son', 'said']]\n",
+ "[['I', 'am?\"\\'', 'The', 'elder', 'Toomer,', 'speaking'], 'in', ['a', 'telephone', 'interview,', 'said', 'he', 'grew']]\n",
+ "[['up', 'as', 'one', 'of', '13', 'children'], 'in', ['what', 'he', 'called', 'a', 'ghetto', 'in']]\n",
+ "[['in', 'what', 'he', 'called', 'a', 'ghetto'], 'in', ['Akron,', 'Ohio.', 'He', 'said', 'his', 'mother']]\n",
+ "[['longer', 'than', 'some', 'of', 'the', 'wood'], 'in', ['this', 'room.\"', 'Toomer', 'is', '34', 'years']]\n",
+ "[['stood', 'with', '11-year', 'old', 'Chase', 'Strynkowski'], 'in', ['front', 'of', 'his', 'gym', 'class', 'in']]\n",
+ "[['in', 'front', 'of', 'his', 'gym', 'class'], 'in', ['Northern', 'Jersey,', 'leading', 'stretches', 'and', 'exercises']]\n",
+ "[['Jets', 'play', 'at', 'Buffalo', 'on', 'Sunday'], 'in', ['their', 'most', 'important', 'game', 'since', 'they']]\n",
+ "[['most', 'important', 'game', 'since', 'they', 'lost'], 'in', ['the', 'first', 'round', 'of', 'the', 'playoffs']]\n",
+ "[['the', 'first', 'round', 'of', 'the', 'playoffs'], 'in', ['2006.', 'Of', 'course,', 'getting', 'the', 'Jets']]\n",
+ "[['deals', 'worth', 'more', 'than', '$100', 'million'], 'in', ['the', 'off-season', 'on', 'free', 'agents,', 'and']]\n",
+ "[['it', 'is', 'erratic', 'as', 'it', 'was'], 'in', ['the', \"Jets'\", 'past', 'three', 'games,', 'when']]\n",
+ "[['the', 'Jets', 'shut', 'out', 'the', 'Cardinals'], 'in', ['the', 'first', 'half', 'but', 'gave', 'up']]\n",
+ "[['half', 'but', 'gave', 'up', '35', 'points'], 'in', ['the', 'second.', 'Despite', 'their', 'uneven', 'play']]\n",
+ "[['to', 'the', 'Raiders,', 'the', 'Jets', 'are'], 'in', ['the', 'thick', 'of', 'the', 'East', 'race,']]\n",
+ "[['Jauron', 'said', 'he', 'felt', 'each', 'team'], 'in', ['the', 'East', 'had', 'improved.', 'With', 'Patriots']]\n",
+ "[['else', 'to', 'define', 'it.', \"It's\", 'not'], 'in', ['terms', 'of', 'hours', 'of', 'preparation,', 'or']]\n",
+ "[['practice.', 'There', 'is', 'just', 'a', 'difference'], 'in', ['feeling', 'when', \"you're\", 'inside', 'that', 'division.\"']]\n",
+ "[['tied', 'for', 'the', 'second', 'wild-card', 'slot'], 'in', ['the', 'AFC.', 'They', 'face', 'a', 'Bills']]\n",
+ "[['has', 'won', 'the', 'last', 'three', 'games'], 'in', ['this', 'series,', 'despite', 'entering', 'each', 'contest']]\n",
+ "[['a', 'stadium', 'where', 'Buffalo', 'is', 'unbeaten'], 'in', ['three', 'games.', '\"I', \"don't\", 'know', 'yet,\"']]\n",
+ "[['as', 'one', 'of', 'the', 'toughest', 'divisions'], 'in', ['the', 'NFL,', 'although', 'its', 'teams', 'have']]\n",
+ "[['as', 'two', 'of', 'the', 'worst', 'divisions'], 'in', ['the', 'league.', 'The', 'Bills', 'have', 'emerged']]\n",
+ "[['this', 'offense', 'and', 'with', 'these', 'guys'], 'in', ['the', 'huddle,\"', 'Edwards', 'said.', '\"They\\'re', 'not']]\n",
+ "[['The', 'results', 'have', 'been', 'mixed,', 'particularly'], 'in', ['the', 'past', 'three', 'games.', 'The', 'next']]\n",
+ "[['bulb', 'has', 'not', 'really', 'gone', 'on'], 'in', ['their', 'head', 'yet,\"', 'Susan', 'Harder,', 'who']]\n",
+ "[['end,', 'the', 'State', 'Assembly', 'passed', 'legislation'], 'in', ['June', 'requiring', 'that', 'new', 'outdoor', 'lighting']]\n",
+ "[['full', 'streetlight', 'shields', 'and', 'motion', 'detectors'], 'in', ['all', 'commercial', 'and', 'government', 'buildings,', 'and']]\n",
+ "[['advanced,\"', 'said', 'Meg', 'Smith,', 'a', 'manager'], 'in', ['New', 'York', 'for', 'Lightolier,', 'a', 'manufacturer']]\n",
+ "[['for', 'Lightolier,', 'a', 'manufacturer', 'that', 'specializes'], 'in', ['lighting', 'fixtures', 'and', 'controls.', 'As', 'demand']]\n",
+ "[['and', 'controls.', 'As', 'demand', 'for', 'electricity'], 'in', ['New', 'York', 'rises', 'and', 'global', 'competition']]\n",
+ "[['two', 'years', 'to', 'recoup', 'the', 'investment'], 'in', ['this', 'equipment,', 'down', 'from', 'five', 'years']]\n",
+ "[['that', 'are', 'five-eighths', 'of', 'an', 'inch'], 'in', ['diameter,', 'about', '40', 'percent', 'smaller', 'than']]\n",
+ "[['complex', 'system', 'for', 'the', 'Citigroup', 'tower'], 'in', ['Long', 'Island', 'City,', 'Queens,', 'that', 'helps']]\n",
+ "[['cut', 'energy', 'use', 'by', '28', 'percent'], 'in', ['the', 'first', 'year,', 'Smith', 'said.', 'Because']]\n",
+ "[['lighting', 'systems', 'are', 'being', 'installed', 'primarily'], 'in', ['new', 'buildings', 'or', 'offices', 'being', 'retrofitted']]\n",
+ "[['an', 'architecture', 'and', 'interior', 'design', 'firm'], 'in', ['Manhattan,', '\"because', 'over', '10', 'or', '20']]\n",
+ "[['is', 'not', 'the', 'first', 'time', 'innovations'], 'in', ['technology', 'and', 'construction', 'have', 'been', 'visible']]\n",
+ "[['technology', 'and', 'construction', 'have', 'been', 'visible'], 'in', ['the', 'nightscape.', 'In', 'the', 'early', '20th']]\n",
+ "[['II,', 'architects', 'could', 'build', 'skyscrapers', 'enclosed'], 'in', ['glass,', 'which', 'gave', 'off', 'a', 'cooler']]\n",
+ "[['towers', 'multiplied,', 'the', 'volume', 'of', 'light'], 'in', ['Manhattan', 'increased:', 'Many', 'buildings', 'had', 'only']]\n",
+ "[['so', 'if', 'even', 'one', 'person', 'was'], 'in', ['the', 'office,', 'large', 'swaths', 'were', 'aglow.']]\n",
+ "[['recalled', 'arriving', 'at', 'work', 'one', 'Sunday'], 'in', ['1985,', 'finding', 'only', 'two', 'switches', 'on']]\n",
+ "[['leaving', 'lights', 'on', 'all', 'evening', '\"was'], 'in', ['part', 'a', 'symbol', 'of', 'power,\"', 'he']]\n",
+ "[['more', 'efficient', 'LED', 'lights', 'outside', 'buildings'], 'in', ['place', 'of', 'older', 'floodlights.', 'Still', 'others']]\n",
+ "[['LED', 'fixtures', 'on', 'the', 'clock', 'tower'], 'in', ['September.', 'The', 'fixtures,', 'which', 'are', 'meant']]\n",
+ "[['the', 'Brazilian', 'Grand', 'Prix', 'on', 'Sunday'], 'in', ['the', 'last', 'race', 'of', 'the', 'season.']]\n",
+ "[['After', 'that,', 'the', 'matter', 'is', 'not'], 'in', ['my', 'hands.\"', 'But', 'Massa', 'did', 'take']]\n",
+ "[['time', 'of', '1', 'minute', '12.368', 'seconds'], 'in', ['his', 'Ferrari.', 'Now', 'he', 'needs', 'to']]\n",
+ "[['part,', 'seems', 'to', 'have', 'always', 'believed'], 'in', ['him.', 'He', 'signed', 'with', 'Ferrari', 'in']]\n",
+ "[['in', 'him.', 'He', 'signed', 'with', 'Ferrari'], 'in', ['2002,', 'four', 'years', 'before', 'he', 'drove']]\n",
+ "[['a', 'young', 'driver.', 'Another', 'who', 'believed'], 'in', ['him', 'early', 'on', 'was', 'Peter', 'Sauber,']]\n",
+ "[['Raikkonen,', 'Sauber', 'saw', 'formidable', 'mental', 'strength;'], 'in', ['Massa,', 'he', 'was', 'impressed', 'by', 'his']]\n",
+ "[['one', 'of', 'the', 'most', 'complete', 'drivers'], 'in', ['the', 'series,', 'and', 'he', 'has', 'almost']]\n",
+ "[['20', 'when', 'he', 'began', 'with', 'Sauber'], 'in', ['2002,', 'and', 'he', 'had', 'repeated', 'errors']]\n",
+ "[['join', 'the', 'Formula', '3000', 'Euro', 'series'], 'in', ['Italy', 'when', 'he', 'met', 'with', 'Jean']]\n",
+ "[['Ferrari', 'test', 'driver.\"', 'Returning', 'to', 'Sauber'], 'in', ['2004,', 'Massa', 'was', 'indeed', 'a', 'better']]\n",
+ "[['points', 'that', 'year', 'and', '11', 'points'], 'in', ['2005.', 'In', '2006,', 'he', 'joined', 'Michael']]\n",
+ "[['what', 'you', 'want,', 'to', 'push', 'hard'], 'in', ['every', 'area,\"', 'Massa', 'said.', 'Last', 'year,']]\n",
+ "[['was', 'crucial.', 'Ferrari', 'had', 'invested', 'heavily'], 'in', ['Raikkonen,', 'who', 'was', 'expected', 'to', 'lead']]\n",
+ "[['the', 'Italian', 'Grand', 'Prix', 'at', 'Monza,'], 'in', ['a', 'battle', 'between', 'him,', 'Raikkonen', 'and']]\n",
+ "[['So', 'if', 'they', 'put', 'me', 'still'], 'in', ['the', 'position', 'to', 'be', 'able', 'to']]\n",
+ "[['and', 'it', 'became', 'even', 'more', 'difficult'], 'in', ['the', 'last', 'race,', \"Massa's\", 'home', 'race.']]\n",
+ "[['had', 'been', 'the', 'fastest', 'all', 'weekend'], 'in', ['S?o', 'Paulo,', 'but', 'he', 'was', 'forced']]\n",
+ "[['and', 'Massa', 'failed', 'to', 'score', 'points'], 'in', ['either', 'the', 'first', 'or', 'the', 'second']]\n",
+ "[['the', 'Bahrain', 'Grand', 'Prix,', 'finished', 'second'], 'in', ['Spain,', 'won', 'in', 'Turkey', 'and', 'finished']]\n",
+ "[['Prix,', 'finished', 'second', 'in', 'Spain,', 'won'], 'in', ['Turkey', 'and', 'finished', 'third', 'in', 'Monaco.']]\n",
+ "[['won', 'in', 'Turkey', 'and', 'finished', 'third'], 'in', ['Monaco.', 'He', 'has', 'been', 'consistent', 'ever']]\n",
+ "[['driver.', 'One', 'of', 'those', 'penalties', 'resulted'], 'in', [\"Massa's\", 'inheriting', 'the', 'victory', 'in', 'Belgium']]\n",
+ "[['resulted', 'in', \"Massa's\", 'inheriting', 'the', 'victory'], 'in', ['Belgium', 'after', 'the', 'race', 'was', 'over']]\n",
+ "[['he', 'had', 'crossed', 'the', 'finish', 'line'], 'in', ['second.', 'His', 'quiet', 'confidence', 'is', 'often']]\n",
+ "[['have', 'relieved', 'pressure', 'on', 'polling', 'places'], 'in', ['advance', 'of', 'what', 'many', 'say', 'will']]\n",
+ "[['of', '11.2-million', 'registered', 'voters)', 'that', 'traffic'], 'in', ['Florida', 'polling', 'places', 'still', 'will', 'be']]\n",
+ "[['will', 'be', 'heavier', 'than', 'it', 'was'], 'in', ['2004.', 'In', 'addition,', 'most', 'Florida', 'voters']]\n",
+ "[['signs', 'point', 'to', 'longer', 'lines', 'than'], 'in', ['2004,', 'when', 'many', 'people', 'waited', 'an']]\n",
+ "[['interest', 'that', 'I', 'have', 'not', 'seen'], 'in', ['my', '31', 'years', 'doing', 'this,\"', 'said']]\n",
+ "[['prepared', 'for', 'that', 'level', 'of', 'engagement'], 'in', ['our', 'democracy,\"', 'she', 'said.', '\"These', 'waits']]\n",
+ "[['our', 'democracy,\"', 'she', 'said.', '\"These', 'waits'], 'in', ['line', 'are', 'serious', 'because', 'some', 'voters']]\n",
+ "[['to', 'wait.\"', 'She', 'criticized', 'elections', 'officials'], 'in', ['other', 'states', 'who', 'have', 'made', 'light']]\n",
+ "[['Ever', 'since', \"Florida's\", 'famously', 'flawed', 'recount'], 'in', ['2000,', 'elections', 'have', 'been', 'under', 'a']]\n",
+ "[['workers', 'and', 'a', 'voting', 'system', 'still'], 'in', ['flux.\"', 'On', 'Monday,', 'a', 'group', 'of']]\n",
+ "[['offers', 'a', 'preview', 'of', 'election', 'issues'], 'in', ['every', 'state', 'and', 'the', 'District', 'of']]\n",
+ "[['debuting', 'its', 'second', 'large-scale', 'voting', 'system'], 'in', ['the', 'last', 'two', 'presidential', 'elections.', 'Well']]\n",
+ "[['no', 'law', 'requiring', 'people', 'to', 'vote'], 'in', ['a', 'privacy', 'booth.', 'If', 'the', 'booths']]\n",
+ "[['to', 'underestimate', 'the', 'GOP', 'turnout', 'machine'], 'in', ['this', 'state,', 'as', 'some', 'seem', 'to']]\n",
+ "[[\"it's\", 'ever', 'been.', 'At', 'this', 'point'], 'in', ['2004,', 'the', 'rolling', 'average', 'of', 'polls']]\n",
+ "[['also', 'stipulate', 'that', 'Florida', 'has', 'never'], 'in', ['modern', 'history', 'seen', 'a', 'campaign', 'like']]\n",
+ "[['Bush', 'won', 'Florida', 'by', '381,000', 'votes'], 'in', ['2004,', 'and', 'the', \"GOP's\", 'long-standing', 'program']]\n",
+ "[['significantly', 'on', 'absentee', 'ballots,', 'but', 'factor'], 'in', ['ballots', 'cast', 'at', 'early', 'voting', 'sites,']]\n",
+ "[['vote', 'on', 'Election', 'Day.', 'McCain', 'is'], 'in', ['position', 'to', 'win', 'Florida.', 'But', 'he']]\n",
+ "[['the', 'week', '\"There', 'is', 'no', 'doubt'], 'in', ['my', 'mind', 'that', 'if', 'Charlie', 'Crist']]\n",
+ "[['the', 'closeness', 'of', 'the', 'Sunshine', 'State'], 'in', ['this', 'election.\"', 'Florida', 'GOP', 'chairman', 'Jim']]\n",
+ "[['State', 'Kurt', 'Browning.', 'TV', 'stations', 'rake'], 'in', ['the', 'advertising', 'Sick', 'of', 'presidential', 'campaign']]\n",
+ "[['Committee', 'spent', '$2.93-million', 'on', 'TV', 'ads'], 'in', ['Florida,', 'and', 'Obama', 'spent', '$4.61-million,', 'according']]\n",
+ "[['\"Think', 'how', 'many', 'votes', 'there', 'are'], 'in', ['China,\"', 'Kemp', 'said.', 'Winner', 'of', 'the']]\n",
+ "[['Crist', 'to', 'extend', 'early', 'voting', 'hours'], 'in', ['Florida.', 'Gelber,', 'a', 'lawyer,', 'convinced', 'the']]\n",
+ "[['many', 'of', 'those', 'Florida', 'Obama', 'supporters'], 'in', ['his', 'corner', 'for', 're-election', 'in', '2010,']]\n",
+ "[['supporters', 'in', 'his', 'corner', 'for', 're-election'], 'in', ['2010,', 'and', 'generating', 'some', 'bipartisan', 'good']]\n",
+ "[['and', 'pull', 'off', 'a', 'big', 'comeback'], 'in', ['places', 'like', 'Ohio,', 'Pennsylvania', 'and', 'Virginia.']]\n",
+ "[['to', 'roost,', 'and', 'the', 'nation', 'is'], 'in', ['a', 'nasty', 'mood.', 'Third,', 'the', 'Democrats']]\n",
+ "[['If', 'Obama', 'wins,', 'he', 'will', 'win'], 'in', ['the', 'middle', 'among', 'that', 'slice', 'of']]\n",
+ "[['voters', 'were', 'willing', 'to', 'try', 'Bush'], 'in', ['2000,', 'and', 'unwilling', 'to', 'switch', 'to']]\n",
+ "[['switch', 'to', 'the', 'guy', 'from', 'Massachusetts'], 'in', ['2004.', 'He', 'is', 'likely,', 'too,', 'to']]\n",
+ "[['prove', 'to', 'be', 'his', 'biggest', 'challenge,'], 'in', ['fact.', \"There's\", 'nothing', 'worse', 'than', 'winning']]\n",
+ "[['undecided', 'states,', 'including', 'Florida,', 'and', 'throwing'], 'in', ['Ohio', 'just', 'for', 'fun', \"'cause\", 'those']]\n",
+ "[['go', 'work', 'on', 'my', 'brilliant', 'explanation'], 'in', ['case', \"I'm\", 'wrong?', 'The', 'frenzied,', 'final']]\n",
+ "[['blitzing', 'the', 'state', 'Saturday.', '\"Get', 'everybody'], 'in', ['your', 'family,', 'anybody', 'that', 'can', 'vote,\"']]\n",
+ "[['people', 'at', 'a', 'pro-Barack', 'Obama', 'rally'], 'in', ['the', 'College', 'Park', 'area', 'of', 'Tampa.']]\n",
+ "[['bring', 'him', 'down.\"', 'Forty', 'miles', 'north'], 'in', ['New', 'Port', 'Richey,', 'at', 'least', '5,500']]\n",
+ "[['three-stop', 'tour', 'of', 'Central', 'Florida.', 'And'], 'in', ['Miami', 'and', 'Winter', 'Park,', 'Sen.', 'Hillary']]\n",
+ "[['Sims', 'Park.', 'Early', 'voting', 'ended', 'Saturday'], 'in', ['many', 'Florida', 'counties', '(except', 'Pinellas,', 'where']]\n",
+ "[['their', 'supporters.', \"That's\", 'why', 'Palin', 'was'], 'in', ['Pasco,', 'Polk', 'City', 'and', 'Ocala', 'on']]\n",
+ "[['big', 'margins', 'as', 'President', 'Bush', 'did'], 'in', ['2004.', \"It's\", 'why', 'Rock', 'appeared', 'in']]\n",
+ "[['in', '2004.', \"It's\", 'why', 'Rock', 'appeared'], 'in', ['a', 'heavily', 'African-American', 'neighborhood', 'at', 'a']]\n",
+ "[['Clinton,', 'particularly', 'popular', 'with', 'Hispanics,', 'was'], 'in', ['Miami', 'and', 'Central', 'Florida.', '\"It\\'s', 'like']]\n",
+ "[['Central', 'Florida.', '\"It\\'s', 'like', \"we've\", 'been'], 'in', ['a', 'long,', 'long', 'race', 'and', 'we']]\n",
+ "[['crowd', 'outside', 'Old', 'San', 'Juan', 'Restaurant'], 'in', ['Little', 'Havana.', '\"We', \"can't\", 'let', 'anybody']]\n",
+ "[['9:30', 'a.m.', 'at', 'Square', 'One', 'Burgers'], 'in', ['South', 'Tampa;', 'Joe', 'and', 'Jill', 'Biden']]\n",
+ "[['get-out-the-vote', 'concert', 'at', 'the', 'Ford', 'Amphitheatre'], 'in', ['Tampa', 'at', '3', 'p.m.', 'McCain,', 'fresh']]\n",
+ "[['is', 'scheduled', 'to', 'hold', 'a', 'rally'], 'in', ['Miami', 'after', 'midnight', 'tonight', ',', 'and']]\n",
+ "[['a', 'rally', 'outside', 'Raymond', 'James', 'Stadium'], 'in', ['Tampa', 'later', 'Monday', 'morning.', 'Obama', 'will']]\n",
+ "[['later', 'Monday', 'morning.', 'Obama', 'will', 'campaign'], 'in', ['Jacksonville', 'on', 'Monday.', 'Dave', 'Rodgers,', '58,']]\n",
+ "[['released', 'Saturday', 'shows', 'a', 'neck-and-neck', 'race'], 'in', ['Florida', 'with', 'Obama', 'leading', 'McCain,', '49']]\n",
+ "[['celebrity', 'working', 'to', 'turn', 'out', 'votes'], 'in', ['Florida.', 'Comedian', 'George', 'Lopez', 'will', 'be']]\n",
+ "[['Lopez', 'will', 'be', 'campaigning', 'for', 'Obama'], 'in', ['Miami', 'and', 'Tampa', 'on', 'Monday,', 'and']]\n",
+ "[['pretty', 'well', 'for', 'themselves,', 'but', 'all'], 'in', ['all,', 'it', \"wasn't\", 'a', 'great', 'series.']]\n",
+ "[['a', 'great', 'series.', 'Do', 'you', 'keep'], 'in', ['touch', 'with', 'Matt?', \"I've\", 'talked', 'to']]\n",
+ "[['summer', '(travel)', 'team', 'together.', 'We', 'played'], 'in', ['our', 'World', 'Series', 'in', 'Nevada,', 'and']]\n",
+ "[['We', 'played', 'in', 'our', 'World', 'Series'], 'in', ['Nevada,', 'and', \"we'd\", 'travel', 'all', 'over,']]\n",
+ "[['was', 'amazing.', 'We', 'played', 'together', 'back'], 'in', ['high', 'school;', 'now', \"we're\", 'in', 'the']]\n",
+ "[['back', 'in', 'high', 'school;', 'now', \"we're\"], 'in', ['the', 'same', 'town', 'watching', 'our', 'dreams']]\n",
+ "[['alone.', 'I', 'tried', 'to', 'do', 'it'], 'in', ['college,', 'but', 'it', 'was', 'bad', 'timing,']]\n",
+ "[['adjustment?', 'I', 'was', 'born', 'and', 'raised'], 'in', ['Fresno,', 'I', 'went', 'to', 'Fresno', 'State']]\n",
+ "[['a', 'relationship', 'near', 'you.\"', 'Everybody', 'gets'], 'in', ['trouble', 'on', 'there.', 'I', \"didn't\", 'want']]\n",
+ "[['and', 'five', 'touchdowns;', 'set', 'NCAA', 'record'], 'in', ['2005', 'with', 'three', 'punt', 'returns', 'for']]\n",
+ "[['Clifton', 'Smith', 'played', 'high', 'school', 'baseball'], 'in', ['Fresno,', 'Calif.,', 'with', 'Rays', 'pitcher', 'Matt']]\n",
+ "[['Clifton', 'Smith', 'played', 'high', 'school', 'baseball'], 'in', ['Fresno,', 'Calif.,', 'with', 'Rays', 'pitcher', 'Matt']]\n",
+ "[['through', 'remains', 'to', 'be', 'seen.', 'But'], 'in', ['an', 'interview,', 'Smith,', 'a', 'Queens', 'Democrat,']]\n",
+ "[['them', 'work', 'more', 'like', 'committees', 'do'], 'in', ['Congress.', 'He', 'said', 'he', 'would', 'move']]\n",
+ "[['they', 'will', 'hold', 'their', 'one-seat', 'majority'], 'in', ['the', 'chamber,', 'and', 'tend', 'to', 'roll']]\n",
+ "[['to', 'the', 'way', 'business', 'is', 'done'], 'in', ['Albany.', 'The', 'changes', 'that', 'Smith', 'describes,']]\n",
+ "[['who', 'form', 'the', 'so-called', 'three', 'men'], 'in', ['a', 'room', 'who', 'run', 'the', 'state']]\n",
+ "[['would', 'also', 'abolish', 'a', 'practice', 'put'], 'in', ['place', 'by', 'Republicans', 'years', 'ago', 'that']]\n",
+ "[['Senate', 'floor', 'while', 'the', 'Senate', 'was'], 'in', ['session.', 'He', 'would', 'also', 'end', 'limits']]\n",
+ "[['limits', 'on', 'the', 'ability', 'of', 'senators'], 'in', ['the', 'minority', 'to', 'use', 'what', 'are']]\n",
+ "[['hard.\"', 'As', 'it', 'stands,', 'minority', 'parties'], 'in', ['Albany', 'are', 'relegated', 'to', 'poor', 'stepchildren']]\n",
+ "[['budgets', 'over', 'the', 'six', 'months', 'ending'], 'in', ['March,', 'according', 'to', 'a', 'recent', 'report']]\n",
+ "[['all', 'of', 'the', 'levers', 'of', 'government'], 'in', ['the', 'hands', 'of', 'New', 'York', 'City']]\n",
+ "[['City', 'residents', 'for', 'the', 'first', 'time'], 'in', ['decades.', '\"Every', 'single', 'leader', 'would', 'be']]\n",
+ "[['Skelos,', 'the', 'Senate', 'majority', 'leader,', 'said'], 'in', ['an', 'interview', 'in', 'Albany', 'last', 'month.']]\n",
+ "[['majority', 'leader,', 'said', 'in', 'an', 'interview'], 'in', ['Albany', 'last', 'month.', 'Voters', 'outside', 'the']]\n",
+ "[['upstate', 'members', 'play', 'a', 'predominating', 'role'], 'in', ['his', 'caucus.', '\"The', 'reality', 'is', 'that']]\n",
+ "[['and', 'security', 'guards', 'from', 'their', 'desks'], 'in', ['the', 'Capitol', 'to', 'the', 'hustings', 'of']]\n",
+ "[['the', 'Buffalo', 'suburbs.', 'They', 'have', 'brought'], 'in', ['a', 'dozen', 'outside', 'consultants,', 'including', 'a']]\n",
+ "[['being', 'spared', 'by', 'New', 'York', 'Republicans'], 'in', ['the', 'final', 'days', 'of', 'this', 'election']]\n",
+ "[['Senate,', 'their', 'only', 'outpost', 'of', 'power'], 'in', ['an', 'increasingly', 'Democratic', 'state.', 'Even', 'veterans']]\n",
+ "[['rushed', 'off', 'to', 'a', 'campaign', 'rally'], 'in', ['Patchogue,', 'on', 'Long', 'Island.', '\"It\\'s', 'so']]\n",
+ "[['Senate.\"', 'Republicans', 'have', 'held', 'a', 'majority'], 'in', ['the', 'Senate', 'for', 'all', 'but', 'one']]\n",
+ "[['their', 'campaigns', 'and', '10', 'times', 'that'], 'in', ['state', 'aid', 'for', 'their', 'mostly', 'suburban']]\n",
+ "[['most', 'intense,', 'expensive', 'and', 'sweeping', 'campaign'], 'in', ['many', 'years.', 'Eight', 'Republican', 'seats', 'are']]\n",
+ "[['being', 'seriously', 'contested,', 'double', 'the', 'number'], 'in', ['most', 'recent', 'election', 'years.', '\"It\\'s', 'different,']]\n",
+ "[['consultant.', '\"They', \"haven't\", 'fought', 'for', 'survival'], 'in', ['any', 'of', 'their', 'lifetimes.\"', 'The', 'potential']]\n",
+ "[['only', 'glancingly', 'on', 'the', 'campaign', 'trail,'], 'in', ['veiled', 'references', 'to', 'the', 'need', 'for']]\n",
+ "[['is', 'the', 'urgent', 'undercurrent', 'to', 'conversations'], 'in', ['campaign', 'offices,', 'in', 'the', 'hallways', 'of']]\n",
+ "[['undercurrent', 'to', 'conversations', 'in', 'campaign', 'offices,'], 'in', ['the', 'hallways', 'of', 'the', 'Capitol', 'and']]\n",
+ "[['re-election', '--', 'some', 'came', 'into', 'office'], 'in', ['1972', 'during', 'Richard', \"Nixon's\", 'landslide', 're-election']]\n",
+ "[['name', 'damaged', 'by', 'an', 'unpopular', 'administration'], 'in', ['Washington,', 'and', 'the', 'chance', 'that', 'Sen.']]\n",
+ "[['of', 'thousands', 'of', 'dollars', 'to', 'races'], 'in', ['which', 'Democrats', 'have', 'shown', 'unexpected', 'weakness,']]\n",
+ "[['office', 'and', 'both', 'legislative', 'leadership', 'posts'], 'in', ['the', 'hands', 'of', 'Democrats', 'from', 'the']]\n",
+ "[['said', 'Fuschillo.', 'After', 'a', 'devastating', 'loss'], 'in', ['February', 'in', 'an', 'upstate', 'special', 'election,']]\n",
+ "[['After', 'a', 'devastating', 'loss', 'in', 'February'], 'in', ['an', 'upstate', 'special', 'election,', 'Republicans', 'revamped']]\n",
+ "[['of', 'campaign', 'and', 'advertising', 'consultants,', 'bringing'], 'in', ['highly', 'regarded', 'talent', 'from', 'the', 'Beltway.']]\n",
+ "[['from', 'the', 'special', 'that', 'the', 'TV'], 'in', ['particular', 'has', 'to', 'be', 'top-notch.', 'It']]\n",
+ "[['to', 'campaign', 'for', 'and', 'advise', 'incumbents'], 'in', ['tight', 'races.', 'Party', 'officials', 'say', 'they']]\n",
+ "[['to', 'contribute', 'more', 'campaign', 'money', 'than'], 'in', ['the', 'past', 'to', 'their', 'more', 'vulnerable']]\n",
+ "[['trying', 'to', 'drive', 'up', 'my', 'margins'], 'in', ['my', 'district,', 'I', 'should', 'spend', 'that']]\n",
+ "[['put', 'their', 'districts', 'at', 'a', 'disadvantage'], 'in', ['Albany.', 'It', 'could', 'also', 'cripple', 'the']]\n",
+ "[['all,', 'comes', 'with', 'roughly', '$85', 'million'], 'in', ['earmark', 'spending', 'and', 'hundreds', 'of', 'extra']]\n",
+ "[['and', 'hundreds', 'of', 'extra', 'staff', 'jobs'], 'in', ['Albany', 'and', 'in', 'district', 'offices.', 'In']]\n",
+ "[['extra', 'staff', 'jobs', 'in', 'Albany', 'and'], 'in', ['district', 'offices.', 'In', 'most', 'areas', 'of']]\n",
+ "[['is', 'active', 'with', 'the', 'Republican', 'committee'], 'in', ['Islip,', 'on', 'Long', 'Island,', 'said', 'that']]\n",
+ "[['Since', 'Jon', 'Gruden', 'arrived', 'from', 'Oakland'], 'in', ['2002', 'with', 'a', 'sterling', 'reputation', 'as']]\n",
+ "[['the', 'Bucs', 'have', 'ranked', 'only', 'once'], 'in', ['the', 'top', '10', 'in', 'total', 'offense']]\n",
+ "[['only', 'once', 'in', 'the', 'top', '10'], 'in', ['total', 'offense', '(2003).', 'This', 'season,', 'in']]\n",
+ "[['in', 'total', 'offense', '(2003).', 'This', 'season,'], 'in', ['terms', 'of', 'yardage,', 'the', 'Bucs', 'are']]\n",
+ "[['per', 'game.', 'But', 'they', 'are', '21st'], 'in', ['the', 'league', 'in', 'scoring', 'at', '21.2']]\n",
+ "[['they', 'are', '21st', 'in', 'the', 'league'], 'in', ['scoring', 'at', '21.2', 'points', 'per', 'game.']]\n",
+ "[['to', 'when', 'they', 'had', '20', 'touchdowns'], 'in', ['the', '4-12', 'season', 'with', 'rookie', 'quarterback']]\n",
+ "[['and', 'deeper', 'than', 'at', 'any', 'time'], 'in', ['the', \"franchise's\", 'history.', 'And', 'quarterback', 'Jeff']]\n",
+ "[['a', 'half', 'game', 'back', 'of', 'Carolina'], 'in', ['the', 'NFC', 'South.', 'Remarkable.', '\"I\\'ve', 'just']]\n",
+ "[['to', 'challenge', 'for', 'the', 'Lombardi', 'Trophy'], 'in', ['Super', 'Bowl', 'XLIII', 'at', 'Raymond', 'James']]\n",
+ "[['ACL.', 'Jameel', 'Cook,', 'who', \"hadn't\", 'played'], 'in', ['Tampa', 'Bay', 'since', \"'05,\", \"isn't\", 'up']]\n",
+ "[['move', 'to', 'fullback.', 'And', 'it', 'resulted'], 'in', ['more', 'carries', 'for', 'Warrick', 'Dunn,', 'which']]\n",
+ "[['which', 'led', 'to', 'a', 'pinched', 'nerve'], 'in', ['his', 'back', 'that', 'will', 'likely', 'keep']]\n",
+ "[['out', 'today.', '\"Warrick', 'and', 'I', 'were'], 'in', ['there', 'for', 'a', 'while,', 'and', 'we']]\n",
+ "[[\"We've\", 'just', 'got', 'to', 'get', 'back'], 'in', ['that', 'rhythm.', 'We', 'need', 'to', 'get']]\n",
+ "[['the', 'Bucs', 'have', 'lost', 'at', 'home'], 'in', ['the', 'wild-card', 'round', 'of', 'the', 'playoffs']]\n",
+ "[['wild-card', 'round', 'of', 'the', 'playoffs', 'twice'], 'in', ['the', 'past', 'three', 'years,', 'the', 'prospect']]\n",
+ "[['years,', 'the', 'prospect', 'of', 'doing', 'anything'], 'in', ['the', 'postseason', 'on', 'the', 'road', 'is']]\n",
+ "[['since', '1983,', 'what', 'city', 'is', 'next'], 'in', ['line', 'to', 'moan', 'and', 'groan', 'about']]\n",
+ "[['have', 'won', 'at', 'least', 'one', 'championship'], 'in', ['recent', 'history.', 'Boston', 'has', 'been', 'loaded']]\n",
+ "[['or', 'two.', 'Heck,', 'even', 'we', 'here'], 'in', ['Tampa', 'Bay', 'have', 'seen', 'two', 'championships']]\n",
+ "[['Tampa', 'Bay', 'have', 'seen', 'two', 'championships'], 'in', ['the', 'past', 'six', 'years.', 'But', 'what']]\n",
+ "[['But', 'what', 'about', 'those', 'poor', 'saps'], 'in', ['Cleveland?', \"Here's\", 'a', 'look', 'at', 'cities']]\n",
+ "[['that', 'have', 'parade-route', 'plans', 'gathering', 'dust'], 'in', ['some', 'office.', 'Cleveland', 'In', '2004,', 'ESPN']]\n",
+ "[['franchises,', 'but', 'they', 'have', 'never', 'appeared'], 'in', ['a', 'Super', 'Bowl', 'and', \"haven't\", 'won']]\n",
+ "[['The', 'question', 'is,', 'will', 'it', 'be'], 'in', ['Cleveland', 'or', 'somewhere', 'else?', 'San', 'Diego']]\n",
+ "[['Diego', \"Football's\", 'Chargers', 'came', 'into', 'existence'], 'in', ['1960.', \"Baseball's\", 'Padres', 'joined', 'the', 'majors']]\n",
+ "[['1960.', \"Baseball's\", 'Padres', 'joined', 'the', 'majors'], 'in', ['1969.', 'The', 'city', 'had', 'two', 'NBA']]\n",
+ "[['NBA', 'teams,', '1967-71', 'and', '1978-84.', 'Yet'], 'in', ['all', 'that', 'time,', 'the', 'city', 'has']]\n",
+ "[['an', 'old', 'American', 'Football', 'League', 'title'], 'in', ['1963.', '(Does', 'that', 'even', 'count?)', 'The']]\n",
+ "[['World', 'Series', 'twice', 'but', 'are', '1-8'], 'in', ['World', 'Series', 'games,', 'losing', 'in', 'five']]\n",
+ "[['1-8', 'in', 'World', 'Series', 'games,', 'losing'], 'in', ['five', 'to', 'Detroit', 'in', '1984', 'and']]\n",
+ "[['games,', 'losing', 'in', 'five', 'to', 'Detroit'], 'in', ['1984', 'and', 'getting', 'swept', 'by', 'the']]\n",
+ "[['and', 'getting', 'swept', 'by', 'the', 'Yankees'], 'in', ['1998.', 'Next', 'best', 'chance:', 'The', 'Padres']]\n",
+ "[['having', 'lost', 'four', 'consecutive', 'Super', 'Bowls'], 'in', ['the', 'early', '1990s.', 'The', 'Bills', 'won']]\n",
+ "[['1990s.', 'The', 'Bills', 'won', 'AFL', 'titles'], 'in', ['1964', 'and', '1965.', 'Next', 'best', 'chance:']]\n",
+ "[[\"Seattle's\", 'NBA', 'team', 'is', 'now', 'playing'], 'in', ['Oklahoma', 'City.', 'The', 'Mariners,', 'who', 'came']]\n",
+ "[['The', 'Mariners,', 'who', 'came', 'into', 'baseball'], 'in', ['1977,', 'have', 'never', 'made', 'the', 'World']]\n",
+ "[['when', 'the', 'SuperSonics', 'topped', 'the', 'NBA'], 'in', ['1979.', 'Next', 'best', 'chance:', 'Yeesh,', 'the']]\n",
+ "[['the', 'Braves', 'won', 'the', 'World', 'Series'], 'in', ['1995,', 'but', 'that', 'was', 'their', 'only']]\n",
+ "[['have', 'never', 'won', 'an', 'NBA', 'title'], 'in', ['Atlanta,', 'and', 'the', 'Flames', '(1972-80)', 'and']]\n",
+ "[['getting', 'better,', 'the', 'Falcons', 'are', 'heading'], 'in', ['the', 'right', 'direction.', 'But', 'none', 'seems']]\n",
+ "[['Chiefs', 'last', 'won', 'a', 'Super', 'Bowl'], 'in', ['1970.', 'The', 'Royals', 'have', 'won', 'one']]\n",
+ "[['one', 'World', 'Series,', 'and', 'that', 'was'], 'in', ['1985.', 'So', 'the', 'count', 'is', '23']]\n",
+ "[['been', 'around', 'longer.', 'The', 'Saints,', 'founded'], 'in', ['1967,', 'have', 'won', 'only', 'two', 'postseason']]\n",
+ "[['Hornets,', 'who', 'moved', 'to', 'New', 'Orleans'], 'in', ['2002,', 'had', 'the', \"NBA's\", 'fourth-best', 'record']]\n",
+ "[['fourth-best', 'record', 'last', 'season.', 'Cincinnati', 'Those'], 'in', ['their', '40s', 'remember', 'watching', 'the', 'Big']]\n",
+ "[['Bench', 'and', 'Joe', 'Morgan', 'win', 'titles'], 'in', ['1975', 'and', '1976,', 'but', 'if', \"you're\"]]\n",
+ "[['title', 'when', 'they', 'were', 'the', 'Bullets'], 'in', ['1978,', 'and', 'that', 'was', 'the', \"capital's\"]]\n",
+ "[['that', 'was', 'the', \"capital's\", 'first', 'championship'], 'in', ['36', 'years.', 'The', 'Washington', 'Capitals', 'have']]\n",
+ "[['but', 'have', 'frustrated', 'fans', 'by', 'choking'], 'in', ['the', 'playoffs', 'and', 'never', 'going', 'all']]\n",
+ "[['Diego', \"Football's\", 'Chargers', 'came', 'into', 'existence'], 'in', ['1960.', \"Baseball's\", 'Padres', 'joined', 'the', 'majors']]\n",
+ "[['1960.', \"Baseball's\", 'Padres', 'joined', 'the', 'majors'], 'in', ['1969.', 'The', 'city', 'had', 'two', 'NBA']]\n",
+ "[['NBA', 'teams,', '1967-71', 'and', '1978-84.', 'Yet'], 'in', ['all', 'that', 'time,', 'the', 'city', 'has']]\n",
+ "[['an', 'old', 'American', 'Football', 'League', 'title'], 'in', ['1963.', '(Does', 'that', 'even', 'count?)', 'The']]\n",
+ "[['World', 'Series', 'twice', 'but', 'are', '1-8'], 'in', ['World', 'Series', 'games,', 'losing', 'in', 'five']]\n",
+ "[['1-8', 'in', 'World', 'Series', 'games,', 'losing'], 'in', ['five', 'to', 'Detroit', 'in', '1984', 'and']]\n",
+ "[['games,', 'losing', 'in', 'five', 'to', 'Detroit'], 'in', ['1984', 'and', 'getting', 'swept', 'by', 'the']]\n",
+ "[['and', 'getting', 'swept', 'by', 'the', 'Yankees'], 'in', ['1998.', 'Next', 'best', 'chance:', 'The', 'Padres']]\n",
+ "[['having', 'lost', 'four', 'consecutive', 'Super', 'Bowls'], 'in', ['the', 'early', '1990s.', 'The', 'Bills', 'won']]\n",
+ "[['1990s.', 'The', 'Bills', 'won', 'AFL', 'titles'], 'in', ['1964', 'and', '1965.', 'Next', 'best', 'chance:']]\n",
+ "[[\"Seattle's\", 'NBA', 'team', 'is', 'now', 'playing'], 'in', ['Oklahoma', 'City.', 'The', 'Mariners,', 'who', 'came']]\n",
+ "[['The', 'Mariners,', 'who', 'came', 'into', 'baseball'], 'in', ['1977,', 'have', 'never', 'made', 'the', 'World']]\n",
+ "[['when', 'the', 'SuperSonics', 'topped', 'the', 'NBA'], 'in', ['1979.', 'Next', 'best', 'chance:', 'Yeesh,', 'the']]\n",
+ "[['the', 'Braves', 'won', 'the', 'World', 'Series'], 'in', ['1995,', 'but', 'that', 'was', 'their', 'only']]\n",
+ "[['have', 'never', 'won', 'an', 'NBA', 'title'], 'in', ['Atlanta,', 'and', 'the', 'Flames', '(1972-80)', 'and']]\n",
+ "[['getting', 'better,', 'the', 'Falcons', 'are', 'heading'], 'in', ['the', 'right', 'direction.', 'But', 'none', 'seems']]\n",
+ "[['Chiefs', 'last', 'won', 'a', 'Super', 'Bowl'], 'in', ['1970.', 'The', 'Royals', 'have', 'won', 'one']]\n",
+ "[['one', 'World', 'Series,', 'and', 'that', 'was'], 'in', ['1985.', 'So', 'the', 'count', 'is', '23']]\n",
+ "[['been', 'around', 'longer.', 'The', 'Saints,', 'founded'], 'in', ['1967,', 'have', 'won', 'only', 'two', 'postseason']]\n",
+ "[['Hornets,', 'who', 'moved', 'to', 'New', 'Orleans'], 'in', ['2002,', 'had', 'the', \"NBA's\", 'fourth-best', 'record']]\n",
+ "[['fourth-best', 'record', 'last', 'season.', 'Cincinnati', 'Those'], 'in', ['their', '40s', 'remember', 'watching', 'the', 'Big']]\n",
+ "[['Bench', 'and', 'Joe', 'Morgan', 'win', 'titles'], 'in', ['1975', 'and', '1976,', 'but', 'if', \"you're\"]]\n",
+ "[['title', 'when', 'they', 'were', 'the', 'Bullets'], 'in', ['1978,', 'and', 'that', 'was', 'the', \"capital's\"]]\n",
+ "[['that', 'was', 'the', \"capital's\", 'first', 'championship'], 'in', ['36', 'years.', 'The', 'Washington', 'Capitals', 'have']]\n",
+ "[['but', 'have', 'frustrated', 'fans', 'by', 'choking'], 'in', ['the', 'playoffs', 'and', 'never', 'going', 'all']]\n",
+ "[['since', '1983,', 'what', 'city', 'is', 'next'], 'in', ['line', 'to', 'moan', 'and', 'groan', 'about']]\n",
+ "[['have', 'won', 'at', 'least', 'one', 'championship'], 'in', ['recent', 'history.', 'Boston', 'has', 'been', 'loaded']]\n",
+ "[['or', 'two.', 'Heck,', 'even', 'we', 'here'], 'in', ['Tampa', 'Bay', 'have', 'seen', 'two', 'championships']]\n",
+ "[['Tampa', 'Bay', 'have', 'seen', 'two', 'championships'], 'in', ['the', 'past', 'six', 'years.', 'But', 'what']]\n",
+ "[['But', 'what', 'about', 'those', 'poor', 'saps'], 'in', ['Cleveland?', \"Here's\", 'a', 'look', 'at', 'cities']]\n",
+ "[['that', 'have', 'parade-route', 'plans', 'gathering', 'dust'], 'in', ['some', 'office.', 'Pueblo,', 'Colo.', '--', 'With']]\n",
+ "[['crowd', 'estimated', 'by', 'police', 'at', '15,000'], 'in', ['downtown', 'Pueblo,', 'Colo.,', 'Obama', 'continued', 'his']]\n",
+ "[['since', 'he', 'accepted', 'the', 'Democratic', 'nomination'], 'in', ['August', 'at', 'Invesco', 'Field', 'at', 'Mile']]\n",
+ "[['at', 'Invesco', 'Field', 'at', 'Mile', 'High'], 'in', ['Denver.', 'The', 'Illinois', 'senator', 'referenced', 'his']]\n",
+ "[['Illinois', 'senator', 'referenced', 'his', 'two', 'daughters'], 'in', ['attendance,', 'saying', 'they', 'had', 'a', 'tough']]\n",
+ "[['\"...', 'So', 'George', 'Bush', 'may', 'be'], 'in', ['an', 'undisclosed', 'location,', 'but', 'Dick', \"Cheney's\"]]\n",
+ "[['Obama', 'and', 'McCain', 'have', 'been', 'flitting'], 'in', ['and', 'out', 'of', 'battleground', 'states.', \"McCain's\"]]\n",
+ "[['Sarah', 'Palin,', 'is', 'scheduled', 'to', 'be'], 'in', ['Colorado', 'Springs', 'on', 'Monday,', 'and', 'Michelle']]\n",
+ "[['Monday,', 'and', 'Michelle', 'Obama', 'will', 'be'], 'in', ['Littleton', 'the', 'same', 'day.', 'Pueblo', 'is']]\n",
+ "[['47', 'percent', 'of', 'all', 'registered', 'voters'], 'in', ['Pueblo', 'County;', '23.5', 'percent', 'are', 'Republicans,']]\n",
+ "[['a', 'White', 'House', 'run', 'that', 'began'], 'in', ['1980', 'when', 'Uncle', 'George', 'began', 'his']]\n",
+ "[['own', 'chance', 'to', 'lead', 'our', 'country'], 'in', ['1988.', 'And', 'then', 'in', '2000,', 'cousin']]\n",
+ "[['our', 'country', 'in', '1988.', 'And', 'then'], 'in', ['2000,', 'cousin', 'George', 'began', 'what', 'became']]\n",
+ "[['began', 'what', 'became', 'an', 'eight-year', 'term'], 'in', ['the', 'Oval', 'Office.', 'There', 'were', 'times']]\n",
+ "[['when', 'the', 'Bushes', 'were', 'immensely', 'popular'], 'in', ['the', 'polls.', 'There', 'were', 'other', 'times']]\n",
+ "[['connection', 'or', 'try', 'to', 'gain', 'benefit'], 'in', ['any', 'way,\"', 'said', 'Jim', 'Saccomano,', 'the']]\n",
+ "[['policy.', '\"There', 'are', 'some', 'smart', 'guys'], 'in', ['here,\"', 'tight', 'end', 'Nate', 'Jackson', 'said,']]\n",
+ "[['and', \"it's\", 'made', 'for', 'good', 'conversation'], 'in', ['the', 'locker', 'room.', \"It's\", 'made', 'for']]\n",
+ "[['the', \"players'\", 'sanctuary.', '\"Usually', 'the', 'liberals'], 'in', ['here', 'are', 'outweighed', 'by', 'the', 'conservatives,']]\n",
+ "[['\"Money', 'is', 'not', 'the', 'only', 'issue'], 'in', ['here,\"', 'Jackson', 'said.', '\"However,', 'what', 'you']]\n",
+ "[['transfer', 'to', 'the', 'injured', 'reserve', 'list'], 'in', ['September', 'left', 'him', 'rehabbing', 'at', 'odd']]\n",
+ "[[\"I've\", 'been', 'playing', 'for', '13', 'years'], 'in', ['this', 'league.', 'Taxes', 'are', 'a', 'part']]\n",
+ "[['We', 'all', 'have', 'great', 'health', 'care'], 'in', ['here.', 'Foreign', 'policy', 'is', 'an', 'issue.']]\n",
+ "[['more', 'likely', 'there', 'will', 'be,', 'as'], 'in', ['1999,', '59', 'points', 'scored', 'by', 'the']]\n",
+ "[['as', 'Jimmy', 'Buffett', '(who', 'has', 'lived'], 'in', ['Florida', 'and', 'Colorado)', 'might', 'sing:', '\"Fins']]\n",
+ "[['Denver,', 'as', 'Shanahan', '(who', 'has', 'lived'], 'in', ['Florida', 'and', 'Colorado)', 'might', 'sing:', '\"Passes']]\n",
+ "[['Broncos', 'go', 'with', 'the', 'worst', 'defense'], 'in', ['America.', 'Those', 'Dolphins', 'could', 'be', 'called']]\n",
+ "[['season.', 'These', 'Broncos,', 'after', 'their', 'Mess'], 'in', ['Mass,', 'have', 'been', 'called', 'many', 'similar']]\n",
+ "[['movie,', 'as', 'fun', 'as', 'spring', 'break'], 'in', ['Fort', 'Lauderdale', 'and', 'the', 'first', 'day']]\n",
+ "[['and', 'the', 'first', 'day', 'of', 'skiing'], 'in', ['Steamboat', 'Springs.', 'And', 'there', \"won't\", 'be']]\n",
+ "[['And', 'there', \"won't\", 'be', 'a', 'snowstorm'], 'in', ['Denver', 'on', 'Halloween', 'weekend.', 'Nothing', 'but']]\n",
+ "[['Corporation', 'Sellout', 'Field', 'at', 'Mile', 'High),'], 'in', ['a', '10-10', 'game', 'between', 'Miami', 'and']]\n",
+ "[['one', 'of', 'the', 'Anderson', 'brothers)', 'late'], 'in', ['the', 'fourth', 'quarter', '--', 'and', 'coach']]\n",
+ "[['The', 'Broncos', 'knew', 'they', 'could', 'win'], 'in', ['overtime.\"', 'Two', 'problems:', 'After', 'the', 'AFL']]\n",
+ "[['now', '87,', 'told', 'me:', '\"What', 'people'], 'in', ['Denver', \"didn't\", 'understand', 'was', 'when', 'I']]\n",
+ "[['was', 'when', 'I', 'was', 'a', 'kid'], 'in', ['Chicago,', 'during', 'the', 'Depression,', 'a', 'half']]\n",
+ "[['pick.', 'Elway,', 'who', 'also', 'was', 'chosen'], 'in', ['the', 'first', 'round', 'by', 'the', 'Oakland']]\n",
+ "[['faced', 'each', 'other', 'three', 'times,', 'once'], 'in', ['1985', '(Miami', 'won', '30-26)', 'and', 'twice']]\n",
+ "[['1985', '(Miami', 'won', '30-26)', 'and', 'twice'], 'in', [\"'98.\", 'In', 'the', 'next-to-last', 'regular-season', 'game']]\n",
+ "[['Broncos', 'only', 'their', 'second', 'defeat,', 'and'], 'in', ['the', 'divisional', 'playoff', 'game', 'the', 'Broncos']]\n",
+ "[['and', 'father', 'Bob', 'Griese', '(the', 'quarterback'], 'in', ['the', \"'71\", 'tie)', 'looking', 'on,', 'the']]\n",
+ "[['2008', 'election', 'is', '\"a', 'defining', 'moment'], 'in', ['history.\"', 'Candidates', 'usually', 'think', 'their', 'particular']]\n",
+ "[['their', 'particular', 'race', 'is', 'historic,', 'but'], 'in', ['this', 'case,', 'it', 'actually', 'is.', 'Voters']]\n",
+ "[['voters', 'to', 'stick', 'with', 'his', 'record'], 'in', ['times', 'of', 'peril.', 'Perilous', 'times', 'they']]\n",
+ "[['prevails,', 'three', 'giant', 'forces', 'are', 'shifting'], 'in', ['this', 'election:', 'race,', 'an', 'enduring', 'American']]\n",
+ "[['Baby', 'Boomers', 'who', 'came', 'of', 'age'], 'in', ['the', '1960s', 'cede', 'ground', 'to', 'the']]\n",
+ "[['Dwight', 'Eisenhower', 'faced', 'Democrat', 'Adlai', 'Stevenson'], 'in', ['1952', 'has', 'neither', 'candidate', 'been', 'part']]\n",
+ "[['Turkish', 'German', 'chancellor.', '\"That\\'s', 'pretty', 'astonishing'], 'in', ['world', 'historical', 'terms.\"', 'Politics', 'is', 'always']]\n",
+ "[['always', 'evolving,', 'but', 'there', 'are', 'moments'], 'in', ['history', 'when', 'bigger', 'changes', 'occur:', 'the']]\n",
+ "[['President', 'Franklin', 'D.', 'Roosevelt', 'that', 'ushered'], 'in', ['the', 'New', 'Deal', 'and', 'a', 'long']]\n",
+ "[['microphone', 'was', 'off', 'during', 'a', 'break'], 'in', ['a', 'Fox', 'News', 'show', 'last', 'July,']]\n",
+ "[['\"talks', 'down', 'to', 'black', 'people\"', 'adding'], 'in', ['crude', 'terms', 'that', 'he', 'would', 'like']]\n",
+ "[['Millennial', 'generation', 'rivals', 'the', 'Baby', 'Boom'], 'in', ['size', 'and,', 'now,', 'influence.', 'More', 'than']]\n",
+ "[['especially', 'if', 'Democrats', 'seize', 'a', 'monopoly'], 'in', ['Washington.', 'Historians', 'call', 'the', 'fears', 'exaggerated,']]\n",
+ "[['of', \"today's\", 'environmental', 'regulation.', '\"A', 'conservative'], 'in', ['1968', 'was', 'far', 'more', 'liberal', 'than']]\n",
+ "[['more', 'liberal', 'than', 'a', 'liberal', 'is'], 'in', ['2008,\"', 'said', 'Schulman.', 'Crushing', 'budget', 'deficits']]\n",
+ "[['the', 'likelihood', 'of', 'powerful', 'Democratic', 'majorities'], 'in', ['Congress', '--', 'they', 'could', 'resemble', 'the']]\n",
+ "[['Eisenhower,', 'who', 'lost', 'control', 'of', 'Congress'], 'in', ['his', 'first', 'term,', 'and', 'only', 'modulated']]\n",
+ "[['a', 'major', 'political', 'realignment,', 'following', 'Roosevelt'], 'in', ['1932', 'and', 'Reagan', 'in', '1980.', 'This']]\n",
+ "[['following', 'Roosevelt', 'in', '1932', 'and', 'Reagan'], 'in', ['1980.', 'This', 'would', 'require', 'that', 'he']]\n",
+ "[['require', 'that', 'he', 'rack', 'up', 'successes'], 'in', ['his', 'first', 'two', 'years,', 'a', 'honeymoon']]\n",
+ "[['crashed', 'under', 'a', 'Democratic', 'Congress,', 'replaced'], 'in', ['1994', 'by', 'a', 'Republican', 'one.', 'Another']]\n",
+ "[['from', 'his', 'left,', 'face', 'congressional', 'losses'], 'in', ['2010', 'and', 'by', '2012', 'a', 'challenge']]\n",
+ "[['those', 'very', 'rare,', 'once-in-a-generation', 'transforming', 'elections'], 'in', ['America', 'that', 'marks', 'the', 'end', 'of']]\n",
+ "[['elected,', 'because', \"he's\", 'going', 'to', 'come'], 'in', ['with', 'overwhelming', 'control', 'of', 'the', 'government.']]\n",
+ "[['going', 'to', 'Welby', 'Way', 'Elementary', 'School'], 'in', ['West', 'Hills', 'are', 'still', 'going', 'to']]\n",
+ "[['country', 'are', 'already', 'having', 'a', 'say'], 'in', ['this', 'election,', 'even', 'though', \"they're\", 'not']]\n",
+ "[['chance', 'to', 'get', 'their', '2', 'cents'], 'in', ['on', 'the', 'issues.', '\"We', 'may', 'not']]\n",
+ "[['\"Teens', 'are', 'more', 'interested', 'than', 'ever'], 'in', ['the', 'outcome', 'of', 'this', 'election', 'and']]\n",
+ "[['Avery', 'Budman,', 'who', 'launched', 'the', 'site'], 'in', ['February.', '\"We\\'re', 'issued-based,', 'not', 'candidate-based,', 'and']]\n",
+ "[['ballot', 'when', \"I'm\", 'able', 'to', 'vote'], 'in', ['2012,\"', 'she', 'said.', 'Zach', 'Cherny,', '17,']]\n",
+ "[['victory.', 'The', 'biggest', 'event', 'Saturday', 'was'], 'in', ['San', 'Diego,', 'where', 'Missouri', 'minister', 'Lou']]\n",
+ "[['said.', 'At', 'the', 'Christian', 'Community', 'Church'], 'in', ['San', 'Jose,', 'about', '50', 'Prop.', '8']]\n",
+ "[['runs', 'the', 'House', 'of', 'Prayer', 'ministry'], 'in', ['San', 'Francisco.', 'He', 'was', 'in', 'San']]\n",
+ "[['ministry', 'in', 'San', 'Francisco.', 'He', 'was'], 'in', ['San', 'Jose', 'because', '\"There\\'s', 'more', 'favor']]\n",
+ "[['world', 'view', 'here', 'than', 'there', 'is'], 'in', ['the', 'city.\"', 'The', 'Prop.', '8', 'opposition']]\n",
+ "[['Glide', 'Memorial', 'United', 'Methodist', 'Church.', 'Later'], 'in', ['the', 'day,', 'Newsom', 'and', 'Assemblyman', 'Mark']]\n",
+ "[['supporters', 'of', 'the', 'same-sex', 'marriage', 'ban'], 'in', ['the', 'heart', 'of', 'the', \"city's\", 'gay']]\n",
+ "[['as', 'he', 'and', 'Newsom', 'greeted', 'people'], 'in', ['the', 'Edge', 'bar.', 'On', 'Tuesday,', 'two']]\n",
+ "[['million', 'was', 'raised', 'for', 'the', 'initiatives'], 'in', ['Florida', 'and', 'Arizona,', 'compared', 'with', '$67']]\n",
+ "[['with', '$67', 'million', 'for', 'the', 'battle'], 'in', ['California.', 'Prop.', '8', 'was', 'guaranteed', 'its']]\n",
+ "[['Prop.', '8', 'was', 'guaranteed', 'its', 'place'], 'in', ['the', 'national', 'spotlight', 'in', 'May', 'when']]\n",
+ "[['its', 'place', 'in', 'the', 'national', 'spotlight'], 'in', ['May', 'when', 'the', 'state', 'Supreme', 'Court']]\n",
+ "[['approved', 'by', '61', 'percent', 'of', 'voters'], 'in', ['2000.', 'That', 'court', 'decision', 'meant', 'supporters']]\n",
+ "[['of', 'Californians.', '\"It\\'s', 'no', 'secret', 'that'], 'in', ['recent', 'years', 'we', 'have', 'suffered', 'a']]\n",
+ "[['and', 'Lesbian', 'Task', 'Force', 'Action', 'Fund'], 'in', ['Washington.', '\"But', 'a', 'victory', 'in', 'California']]\n",
+ "[['Fund', 'in', 'Washington.', '\"But', 'a', 'victory'], 'in', ['California', 'would', 'signify', 'that', 'Americans', 'are']]\n",
+ "[['as', 'they', 'returned', 'home,', 'wedding', 'licenses'], 'in', ['hand,', 'the', 'pressure', 'began', 'to', 'grow']]\n",
+ "[['pressure', 'began', 'to', 'grow', 'on', 'states'], 'in', ['which', 'they', 'live', 'to', 'deal', 'with']]\n",
+ "[['said', 'Carey,', 'who', 'herself', 'was', 'married'], 'in', ['a', 'Northern', 'California', 'ceremony.', 'Those', 'wedding']]\n",
+ "[['nationwide', 'winning', 'streak.', 'Twenty-eight', 'state', 'elections'], 'in', ['recent', 'years', 'resulted', 'in', '27', 'bans']]\n",
+ "[['state', 'elections', 'in', 'recent', 'years', 'resulted'], 'in', ['27', 'bans', 'on', 'same-sex', 'marriage,', 'with']]\n",
+ "[['and', 'many', 'domestic', 'partnership', 'benefits', '--'], 'in', ['Arizona.', '\"California', 'is', 'a', 'cultural', 'leader,']]\n",
+ "[['country.', \"Tuesday's\", 'election', 'is', 'spoken', 'of'], 'in', ['apocalyptic', 'terms', 'by', 'many', 'backers', 'of']]\n",
+ "[['Tupelo,', 'Miss.-based', 'American', 'Family', 'Association,', 'said'], 'in', ['a', 'speech', 'in', 'July.', '\"California', 'is']]\n",
+ "[['Family', 'Association,', 'said', 'in', 'a', 'speech'], 'in', ['July.', '\"California', 'is', 'a', 'big', 'dam,']]\n",
+ "[['if', 'you', 'take', 'down', 'the', 'dam'], 'in', ['California,', \"it's\", 'going', 'to', 'flood', '49']]\n",
+ "[['Prop.', '8.', '\"Both', 'sides', 'have', 'jumped'], 'in', ['with', 'both', 'feet', 'and', 'made', 'California']]\n",
+ "[['is', 'California,', 'and', 'right', 'now', 'equality'], 'in', ['marriage', 'is', 'the', 'law', 'of', 'the']]\n",
+ "[['on', 'both', 'sides', 'of', 'the', 'issue'], 'in', ['many', 'other', 'states', 'will', 'turn', 'their']]\n",
+ "[['waiting', 'to', 'see', 'what', 'happens', 'next'], 'in', ['a', 'social', 'melee', 'that', 'has', 'stretched']]\n",
+ "[['opened', 'the', 'way', 'for', 'same-sex', 'marriage'], 'in', ['May,', 'but', 'he', 'knew', 'even', 'then']]\n",
+ "[['Colgate', 'University', 'student', 'arrested', 'after', 'threatening'], 'in', ['a', 'Juicy', 'post', 'to', 'go', 'on']]\n",
+ "[['worry', 'about.', 'Until', 'now.', 'Which', 'girls'], 'in', ['USF', 'sororities', 'are', 'most', 'likely', 'to']]\n",
+ "[['list', 'of', 'new', 'additions', 'to', 'JuicyCampus'], 'in', ['September,', 'the', 'same', 'month', 'the', 'Web']]\n",
+ "[['while', 'to', 'catch', 'on', 'locally,', 'but'], 'in', ['recent', 'days,', 'student', 'Angela', 'Martin', 'has']]\n",
+ "[['a', 'threat.', 'A', 'USF', 'student', 'writes,'], 'in', ['defense', 'of', 'a', 'friend,', 'ill', 'hunt']]\n",
+ "[['Martin', 'watches', 'this', 'site', 'go', 'viral'], 'in', ['every', 'sense', 'of', 'the', 'word', 'she']]\n",
+ "[['adjunct', 'law', 'professor', 'at', 'Barry', 'University'], 'in', ['Miami', 'Shores', 'puts', 'it', 'this', 'way:']]\n",
+ "[['JuicyCampus.com', 'could', 'be', 'prosecuted', 'as', 'defamatory'], 'in', ['court', 'if', 'the', 'identity', 'of', 'the']]\n",
+ "[['China', 'is,', 'so', 'if', \"you're\", 'interested'], 'in', ['moving,', \"we've\", 'provided', 'a', 'link', 'below']]\n",
+ "[['it', 'sells,', 'but', 'says', \"it's\", 'still'], 'in', ['the', 'red.', \"He's\", 'already', 'planning', 'future']]\n",
+ "[['And', 'a', 'public', 'relations', 'firm,', 'based'], 'in', ['Beverly', 'Hills.', 'As', 'president', 'of', 'the']]\n",
+ "[['Florida,', 'which', 'was', 'added', 'to', 'JuicyCampus.com'], 'in', ['February,', 'student', 'body', 'president', 'Kevin', 'Reilly']]\n",
+ "[['ideas', 'they', 'had.', 'Peter', 'Arrabal,', 'editor'], 'in', ['chief', 'of', \"UT's\", 'the', 'Minaret,', 'says']]\n",
+ "[['speech.', 'Two', 'small', 'Christian', 'universities,', 'Samford'], 'in', ['Alabama', 'and', 'Millsaps', 'in', 'Mississippi,', 'are']]\n",
+ "[['universities,', 'Samford', 'in', 'Alabama', 'and', 'Millsaps'], 'in', ['Mississippi,', 'are', 'among', 'those', 'that', 'have.']]\n",
+ "[['rising', 'unemployment.', 'Abroad,', 'an', 'intractable', 'war'], 'in', ['Iraq,', 'a', 'rising', 'Taliban', 'in', 'Afghanistan,']]\n",
+ "[['war', 'in', 'Iraq,', 'a', 'rising', 'Taliban'], 'in', ['Afghanistan,', 'a', 'prowling', 'Russian', 'bear,', 'and']]\n",
+ "[['the', 'eve', 'of', 'the', 'Civil', 'War'], 'in', ['1860,', 'to', 'find', 'a', 'new', 'president']]\n",
+ "[['There', 'is', 'very', 'little', 'trust', 'anymore'], 'in', ['government,\"', 'said', 'Stephen', 'Wayne', 'of', 'Georgetown']]\n",
+ "[['presidency.', '\"And', 'even', 'if', 'the', 'president,'], 'in', [\"McCain's\", 'case,', 'tries', 'to', 'be', 'bipartisan,']]\n",
+ "[['expiring', 'agreement', 'for', 'keeping', 'U.S.', 'troops'], 'in', ['Iraq,', 'at', 'a', 'time', 'when', 'Americans']]\n",
+ "[['tiring', 'of', 'their', 'presence.', 'His', 'commanders'], 'in', ['Afghanistan', 'say', 'they', 'need', '20,000', 'more']]\n",
+ "[['tight:', 'For', 'the', 'fiscal', 'year', 'ending'], 'in', ['September,', 'the', 'U.S.', 'budget', 'deficit', 'hit']]\n",
+ "[['began', 'schmoozing', 'congressional', 'leaders', 'friendly', 'Republicans'], 'in', ['the', 'Senate,', 'hostile', 'Democrats', 'in', 'the']]\n",
+ "[['Republicans', 'in', 'the', 'Senate,', 'hostile', 'Democrats'], 'in', ['the', 'House', 'to', 'lay', 'the', 'groundwork']]\n",
+ "[['until', 'just', 'days', 'before', 'his', 'inauguration'], 'in', ['January.', 'His', 'first', 'major', 'domestic', 'initiative,']]\n",
+ "[['domestic', 'initiative,', 'health', 'care', 'reform,', 'failed'], 'in', ['part', 'because', 'the', 'administration', 'and', 'its']]\n",
+ "[['Roosevelt', 'and', 'Lincoln', 'had', 'one', 'thing'], 'in', ['common:', 'They', 'knew', 'what', 'they', \"didn't\"]]\n",
+ "[['Seward,', 'his', 'secretary', 'of', 'state,', 'and,'], 'in', ['1862,', 'Edward', 'Stanton,', 'his', 'secretary', 'of']]\n",
+ "[['he', 'did.', 'When', 'he', 'took', 'office,'], 'in', ['March', '1933,', 'unemployment', 'was', 'around', '25']]\n",
+ "[['25', 'percent,', '4,000', 'banks', 'had', 'collapsed'], 'in', ['the', 'past', 'two', 'months', 'with', 'no']]\n",
+ "[['D.', 'Roosevelt', 'Presidential', 'Library', 'and', 'Museum'], 'in', ['New', 'York.', 'Then', 'Roosevelt,', 'abetted', 'by']]\n",
+ "[['100', 'Days', 'agenda', '16', 'major', 'bills'], 'in', ['all,', 'including', 'regulatory', 'reforms,', 'creation', 'of']]\n",
+ "[['the', 'time', 'was', 'he', 'was', 'coming'], 'in', ['and', 'taking', 'decisive', 'action.', '\"That', 'in']]\n",
+ "[['in', 'and', 'taking', 'decisive', 'action.', '\"That'], 'in', ['itself', 'was', 'inspiring', 'to', 'people,', 'and']]\n",
+ "[['after', 'taking', 'over', 'for', 'President', 'Kennedy'], 'in', ['late', '1963,', 'or', \"Reagan's\", 'focus', 'on']]\n",
+ "[['military.', 'He', 'accomplished', 'the', 'first', 'two'], 'in', ['his', 'first', 'year,', 'despite', 'Democratic', 'control']]\n",
+ "[['the', 'void', 'his', 'policy', 'on', 'gays'], 'in', ['the', 'military,', 'a', 'botched', 'attorney', 'general']]\n",
+ "[['George', 'W.', \"Bush's\", 'transition', 'went', 'smoothly'], 'in', ['part', 'because', 'his', 'priorities', 'for', 'office']]\n",
+ "[['terrorist', 'attacks', 'forever', 'altered', 'his', 'place'], 'in', ['history.', '\"He', 'was', 'not', 'left', 'in']]\n",
+ "[['in', 'history.', '\"He', 'was', 'not', 'left'], 'in', ['a', 'position', 'with', 'a', 'vacuum', 'that']]\n",
+ "[['the', 'end', 'of', 'his', 'first', 'year'], 'in', ['office,', 'in', '1934,', 'unemployment', 'remained', 'at']]\n",
+ "[['of', 'his', 'first', 'year', 'in', 'office,'], 'in', ['1934,', 'unemployment', 'remained', 'at', 'nearly', '22']]\n",
+ "[['percent.', 'By', 'his', 'first', 're-election', 'campaign'], 'in', ['1936,', 'it', 'was', 'still', 'at', 'a']]\n",
+ "[['the', 'popular', 'vote,', 'the', 'biggest', 'landslide'], 'in', ['80', 'years.', '\"There', 'were', 'a', 'lot']]\n",
+ "[['If', 'you', 'make', 'a', 'considerable', 'dent'], 'in', ['them', 'that', 'is', 'to', 'say,', 'if']]\n",
+ "[['With', 'four', 'of', 'the', 'nine', 'justices'], 'in', ['their', '70s', 'and', 'one', 'in', 'his']]\n",
+ "[['justices', 'in', 'their', '70s', 'and', 'one'], 'in', ['his', '80s,', 'the', 'next', 'president', 'likely']]\n",
+ "[['candidate', 'to', 'significantly', 'remake', 'the', 'court'], 'in', ['his', 'own', 'view,', 'by', 'replacing', 'liberals']]\n",
+ "[['with', 'conservatives.', 'relatively', 'young,', 'and', 'apparently'], 'in', ['good', 'health.', 'The', 'fourth,', 'Antonin', 'Scalia,']]\n",
+ "[['McCain', 'has', 'pledged', 'to', 'choose', 'judges'], 'in', ['the', 'mold', 'of', 'President', \"Bush's\", 'appointees,']]\n",
+ "[['the', 'Judicial', 'Confirmation', 'Network', 'runs', 'ads'], 'in', ['swing', 'states', 'urging', 'support', 'for', 'McCain,']]\n",
+ "[['the', 'American', 'Way', 'is', 'running', 'ads'], 'in', ['swing', 'states', 'for', 'Obama.', 'Kathryn', 'Kolbert,']]\n",
+ "[['a', 'whole', 'host', 'of', 'policies', 'hangs'], 'in', ['the', 'balance,', 'including', 'abortion,', 'environmental', 'regulations']]\n",
+ "[['Supreme', 'Court', 'than', 'any', \"we've\", 'seen'], 'in', ['40', 'years,', 'because', 'the', 'court', 'is']]\n",
+ "[['vs.', 'Wade,', 'which', 'allowed', 'legal', 'abortion'], 'in', ['all', '50', 'states.', 'At', 'issue', 'was']]\n",
+ "[['the', 'legal', 'basis', 'for', 'affirmative', 'action'], 'in', ['hiring,', 'and', 'the', 'prosecution', 'of', 'class-action']]\n",
+ "[['most', 'explicit', 'nod', 'to', 'this', 'philosophy'], 'in', ['a', 'speech', 'in', 'May', 'at', 'Wake']]\n",
+ "[['to', 'this', 'philosophy', 'in', 'a', 'speech'], 'in', ['May', 'at', 'Wake', 'Forest', 'University', 'in']]\n",
+ "[['in', 'May', 'at', 'Wake', 'Forest', 'University'], 'in', ['North', 'Carolina,', 'which', 'is', 'often', 'quoted']]\n",
+ "[['the', 'University', 'of', 'Richmond', 'Law', 'School'], 'in', ['Virginia,', 'an', 'expert', 'in', 'federal', 'judicial']]\n",
+ "[['Law', 'School', 'in', 'Virginia,', 'an', 'expert'], 'in', ['federal', 'judicial', 'appointments,', 'said', 'in', 'reality']]\n",
+ "[['expert', 'in', 'federal', 'judicial', 'appointments,', 'said'], 'in', ['reality', 'an', 'Obama', 'presidency', 'most', 'likely']]\n",
+ "[['test,', 'and', 'the', 'most', 'important', 'thing'], 'in', ['any', 'judge', 'is', 'their', 'capacity', 'to']]\n",
+ "[['and', 'Roe', 'vs.', 'Wade', 'probably', 'hangs'], 'in', ['the', 'balance.\"', 'Barack', 'Obama', 'The', 'current']]\n",
+ "[['2004', 'Olympics', 'this', 'capital', 'city,', 'bathed'], 'in', ['millennia', 'of', 'history,', 'has', 'been', 'rejuvenated']]\n",
+ "[['more', 'on', 'par', 'with', 'that', 'found'], 'in', ['America', 'than', 'in', 'Europe.', '(One', 'big']]\n",
+ "[['with', 'that', 'found', 'in', 'America', 'than'], 'in', ['Europe.', '(One', 'big', 'plus:', 'Waiters', 'always']]\n",
+ "[['flicked', 'their', 'ashes', 'every', 'which', 'way,'], 'in', ['clear', 'defiance', 'of', 'European', 'Union', 'regulations.']]\n",
+ "[['was', 'fascinated.', 'Having', 'haunted', 'food', 'markets'], 'in', ['many', 'countries,', 'this', \"city's\", 'meat', 'market']]\n",
+ "[['organ', 'meats', 'elaborately', 'arranged', 'as', 'if'], 'in', ['some', 'kind', 'of', 'macabre', 'art', 'museum.']]\n",
+ "[['In', 'one', 'corner', 'were', 'gnarled', 'octopi;'], 'in', ['another,', 'a', 'stallholder', 'splattered', 'with', 'blood.']]\n",
+ "[['gritty.', 'But', \"it's\", 'just', 'one', 'ingredient'], 'in', ['a', 'sophisticated', 'mix', 'of', 'old', 'and']]\n",
+ "[['every', 'day', 'until', 'the', 'official', 'opening'], 'in', ['March.', 'Designed', 'by', 'U.S.-based', 'architect', 'Bernard']]\n",
+ "[['Designed', 'by', 'U.S.-based', 'architect', 'Bernard', 'Tschumi'], 'in', ['collaboration', 'with', \"Greece's\", 'Michalis', 'Photiadis,', 'the']]\n",
+ "[['it', 'offers', 'them', 'a', 'real', 'weapon'], 'in', ['their', 'ongoing', 'battle', 'for', 'the', 'return']]\n",
+ "[['So', 'far,', 'though,', 'the', 'British', 'Museum'], 'in', ['London', 'has', 'rejected', 'the', 'Greek', 'attempts']]\n",
+ "[['get', 'the', 'works', 'back,', 'arguing', 'that'], 'in', ['1816', 'the', 'museum', 'legally', 'acquired', 'the']]\n",
+ "[['pressure', 'on', 'the', 'British', 'Museum', 'intensified'], 'in', ['September', 'when', 'Italy', 'returned', 'a', 'small']]\n",
+ "[['of', 'sculpture', 'from', 'the', 'Parthenon', 'kept'], 'in', ['a', 'museum', 'in', 'Palermo,', 'Sicily', 'for']]\n",
+ "[['the', 'Parthenon', 'kept', 'in', 'a', 'museum'], 'in', ['Palermo,', 'Sicily', 'for', 'the', 'past', '200']]\n",
+ "[['the', 'New', 'Acropolis', 'Museum,', '30', 'years'], 'in', ['the', 'making,', 'would', 'offer', 'a', 'suitable']]\n",
+ "[['allows', 'the', 'sculptures', 'to', 'be', 'viewed'], 'in', ['natural', 'light,', 'with', 'special', 'glass', 'and']]\n",
+ "[['there', 'are', 'plenty', 'of', 'ancient', 'treasures'], 'in', ['Athens,', 'there', 'also', 'are', 'many', 'modern']]\n",
+ "[['One', 'particularly', 'delightful', 'jumble', 'of', 'streets'], 'in', ['the', 'shadow', 'of', 'the', 'Acropolis', 'is']]\n",
+ "[['all', 'a', 'testament', 'to', \"developers'\", 'faith'], 'in', ['the', 'future', 'of', 'the', 'tourism', 'industry.']]\n",
+ "[['offers', 'daily', 'flights', 'from', 'JFK', 'Airport'], 'in', ['New', 'York.', 'Continental', 'flies', 'directly', 'to']]\n",
+ "[['SEE:', 'The', 'New', 'Acropolis', 'Museum,', 'opening'], 'in', ['March,', 'located', 'just', 'a', 'short', 'walk']]\n",
+ "[['information:', 'www.newacropolismuseum.gr.', 'Take', 'a', 'walking', 'tour,'], 'in', ['English,', 'around', 'various', 'parts', 'of', 'Athens,']]\n",
+ "[['Archeological', 'Museum,', 'the', 'largest', 'archeological', 'museum'], 'in', ['Greece.', 'For', 'more', 'information:', 'www.culture.gr.', 'Shelley']]\n",
+ "[['slugger', 'Roger', 'Maris', 'was', 'repeatedly', 'told'], 'in', ['his', 'assault', 'on', 'Babe', \"Ruth's\", 'legendary']]\n",
+ "[['Babe', \"Ruth's\", 'legendary', 'home', 'run', 'record'], 'in', ['1961.', 'But', 'since', '1975,', 'the', 'number']]\n",
+ "[['kind', 'of', 'hall', 'of', 'fame', 'status'], 'in', ['American', 'politics', '-', 'as', 'a', 'number']]\n",
+ "[['a', 'number', 'signifying', 'nearly', 'unbridled', 'power'], 'in', ['the', 'U.S.', 'Senate.', 'And', 'Tuesday', 'night,']]\n",
+ "[['when', 'the', 'votes', 'are', 'being', 'counted'], 'in', ['the', 'presidential', 'and', 'congressional', 'election,', 'the']]\n",
+ "[['the', 'Democrats', 'will', 'win', 'enough', 'seats'], 'in', ['the', 'Senate', 'to', 'reach', '\"60\"', '-']]\n",
+ "[['political', 'prognosticator', 'sees', 'big', 'Democratic', 'gains'], 'in', ['Congress', 'on', 'Tuesday,', 'especially', 'if', 'Obama']]\n",
+ "[['if', 'Obama', 'holds', 'his', 'commanding', 'lead'], 'in', ['the', 'polls', 'over', 'Republican', 'rival', 'John']]\n",
+ "[['gain', 'of', 'seven', 'to', 'nine', 'seats'], 'in', ['the', 'Senate', 'for', 'the', 'Democrats.', 'Likewise,']]\n",
+ "[['five', 'and', 'seven', 'more', 'Democratic', 'seats'], 'in', ['the', 'Senate', 'in', '2009.', \"It's\", 'a']]\n",
+ "[['more', 'Democratic', 'seats', 'in', 'the', 'Senate'], 'in', ['2009.', \"It's\", 'a', '\"Democratic', 'wave\"', 'election,\"']]\n",
+ "[['for', 'Politics.', 'Similarly,', 'Charlie', 'Cook', 'reports'], 'in', ['his', 'Cook', 'Political', 'Report', 'that', '\"this']]\n",
+ "[['a', 'political', 'party', 'suffered', 'back-to-back', 'losses'], 'in', ['congressional', 'elections,', 'but', 'the', 'Republicans,', 'having']]\n",
+ "[['lost', 'their', 'majorities', 'on', 'Capitol', 'Hill'], 'in', ['2006,', 'is', 'likely', 'to', 'have', 'its']]\n",
+ "[['that', 'sent', \"McCain's\", 'campaign', 'spiraling', 'downward'], 'in', ['the', 'public', 'opinion', 'polls.', 'The', 'GOP']]\n",
+ "[['last', 'week,', 'the', 'longest', 'serving', 'Republican'], 'in', ['the', 'Senate,', 'Ted', 'Stevens', 'of', 'Alaska,']]\n",
+ "[['the', 'Democratic', 'chances', 'were', 'greatly', 'improved'], 'in', ['a', 'reliably', 'Republican', 'state.', 'The', \"Democrats'\"]]\n",
+ "[['begin', 'with', 'three', 'states', 'Bush', 'won'], 'in', ['2004:', 'Virginia,', 'where', 'former', 'Gov.', 'Mark']]\n",
+ "[['Mark', 'Warner', 'has', 'a', '30-point', 'lead'], 'in', ['the', 'polls;', 'New', 'Mexico,', 'where', 'Rep.']]\n",
+ "[['see', 'Democratic', 'opportunities', 'against', 'Republican', 'incumbents'], 'in', ['New', 'Hampshire,', 'North', 'Carolina,', 'Oregon', 'and']]\n",
+ "[['GOP', 'freshman', 'Norm', 'Coleman.', 'And', 'surprisingly,'], 'in', ['the', 'final', 'week', 'of', 'the', 'campaign,']]\n",
+ "[['Mitch', 'McConnell,', 'who', 'was', 'first', 'elected'], 'in', ['the', '1984', 'Reagan', 'Republican', 'landslide,', 'is']]\n",
+ "[['the', '1984', 'Reagan', 'Republican', 'landslide,', 'is'], 'in', ['a', 'tough', 're-election', 'fight', 'in', 'Kentucky']]\n",
+ "[['is', 'in', 'a', 'tough', 're-election', 'fight'], 'in', ['Kentucky', 'against', 'Democrat', 'Bruce', 'Lunsford,', 'underscoring']]\n",
+ "[['political', 'arguments', 'for', 'Republicans', 'this', 'late'], 'in', ['the', 'election,', 'with', 'McCain', 'trailing', 'Obama,']]\n",
+ "[['to', 'warn', 'against', 'one-party', 'rule.', 'And'], 'in', ['fact,', 'a', 'new', 'Gallup', 'poll', 'found']]\n",
+ "[['has', 'seized', 'on', 'the', 'one-party', 'argument'], 'in', ['the', 'final', 'days', 'of', 'the', 'campaign.']]\n",
+ "[['the', 'National', 'Republican', 'Senatorial', 'Committee,', 'said'], 'in', ['a', 'recent', 'plea', 'to', 'donors.', 'But']]\n",
+ "[['said', 'that', 'even', 'under', 'favorable', 'conditions'], 'in', ['this', 'election,', 'it', 'will', 'be', '\"hard']]\n",
+ "[['\"hard', 'to', 'get', 'to', '60\"', 'seats'], 'in', ['the', 'Senate.', 'And', 'whether', 'the', 'Democrats']]\n",
+ "[['2,', 'the', 'date', 'of', 'a', 'run-off'], 'in', ['Georgia', 'if', 'neither', 'Republican', 'incumbent', 'Saxby']]\n",
+ "[['more', 'than', 'half', 'of', 'the', 'vote'], 'in', ['yet', 'another', 'surprisingly', 'tight', 'race.', 'Still,']]\n",
+ "[['2004', 'Olympics', 'this', 'capital', 'city,', 'bathed'], 'in', ['millennia', 'of', 'history,', 'has', 'been', 'rejuvenated']]\n",
+ "[['more', 'on', 'par', 'with', 'that', 'found'], 'in', ['America', 'than', 'in', 'Europe.', '(One', 'big']]\n",
+ "[['with', 'that', 'found', 'in', 'America', 'than'], 'in', ['Europe.', '(One', 'big', 'plus:', 'Waiters', 'always']]\n",
+ "[['flicked', 'their', 'ashes', 'every', 'which', 'way,'], 'in', ['clear', 'defiance', 'of', 'European', 'Union', 'regulations.']]\n",
+ "[['was', 'fascinated.', 'Having', 'haunted', 'food', 'markets'], 'in', ['many', 'countries,', 'this', \"city's\", 'meat', 'market']]\n",
+ "[['organ', 'meats', 'elaborately', 'arranged', 'as', 'if'], 'in', ['some', 'kind', 'of', 'macabre', 'art', 'museum.']]\n",
+ "[['In', 'one', 'corner', 'were', 'gnarled', 'octopi;'], 'in', ['another,', 'a', 'stallholder', 'splattered', 'with', 'blood.']]\n",
+ "[['gritty.', 'But', \"it's\", 'just', 'one', 'ingredient'], 'in', ['a', 'sophisticated', 'mix', 'of', 'old', 'and']]\n",
+ "[['every', 'day', 'until', 'the', 'official', 'opening'], 'in', ['March.', 'Designed', 'by', 'U.S.-based', 'architect', 'Bernard']]\n",
+ "[['Designed', 'by', 'U.S.-based', 'architect', 'Bernard', 'Tschumi'], 'in', ['collaboration', 'with', \"Greece's\", 'Michalis', 'Photiadis,', 'the']]\n",
+ "[['it', 'offers', 'them', 'a', 'real', 'weapon'], 'in', ['their', 'ongoing', 'battle', 'for', 'the', 'return']]\n",
+ "[['So', 'far,', 'though,', 'the', 'British', 'Museum'], 'in', ['London', 'has', 'rejected', 'the', 'Greek', 'attempts']]\n",
+ "[['get', 'the', 'works', 'back,', 'arguing', 'that'], 'in', ['1816', 'the', 'museum', 'legally', 'acquired', 'the']]\n",
+ "[['pressure', 'on', 'the', 'British', 'Museum', 'intensified'], 'in', ['September', 'when', 'Italy', 'returned', 'a', 'small']]\n",
+ "[['of', 'sculpture', 'from', 'the', 'Parthenon', 'kept'], 'in', ['a', 'museum', 'in', 'Palermo,', 'Sicily', 'for']]\n",
+ "[['the', 'Parthenon', 'kept', 'in', 'a', 'museum'], 'in', ['Palermo,', 'Sicily', 'for', 'the', 'past', '200']]\n",
+ "[['the', 'New', 'Acropolis', 'Museum,', '30', 'years'], 'in', ['the', 'making,', 'would', 'offer', 'a', 'suitable']]\n",
+ "[['allows', 'the', 'sculptures', 'to', 'be', 'viewed'], 'in', ['natural', 'light,', 'with', 'special', 'glass', 'and']]\n",
+ "[['there', 'are', 'plenty', 'of', 'ancient', 'treasures'], 'in', ['Athens,', 'there', 'also', 'are', 'many', 'modern']]\n",
+ "[['One', 'particularly', 'delightful', 'jumble', 'of', 'streets'], 'in', ['the', 'shadow', 'of', 'the', 'Acropolis', 'is']]\n",
+ "[['all', 'a', 'testament', 'to', \"developers'\", 'faith'], 'in', ['the', 'future', 'of', 'the', 'tourism', 'industry.']]\n",
+ "[['offers', 'daily', 'flights', 'from', 'JFK', 'Airport'], 'in', ['New', 'York.', 'Continental', 'flies', 'directly', 'to']]\n",
+ "[['SEE:', 'The', 'New', 'Acropolis', 'Museum,', 'opening'], 'in', ['March,', 'located', 'just', 'a', 'short', 'walk']]\n",
+ "[['information:', 'www.newacropolismuseum.gr.', 'Take', 'a', 'walking', 'tour,'], 'in', ['English,', 'around', 'various', 'parts', 'of', 'Athens,']]\n",
+ "[['Archeological', 'Museum,', 'the', 'largest', 'archeological', 'museum'], 'in', ['Greece.', 'For', 'more', 'information:', 'www.culture.gr.', 'Shelley']]\n",
+ "[['8', 'of', 'the', 'NFL', 'season', 'is'], 'in', ['the', 'books,', 'the', 'midway', 'point.', 'Thanks']]\n",
+ "[['on', 'pace', 'for', 'a', 'career', 'low'], 'in', ['touchdown', 'passes.', 'That', 'leaves', 'Clinton', 'Portis,']]\n",
+ "[['Haynesworth.', 'Only', 'twice', '--', 'Alan', 'Page'], 'in', ['1971', 'and', 'Lawrence', 'Taylor', 'in', \"'86\"]]\n",
+ "[['Page', 'in', '1971', 'and', 'Lawrence', 'Taylor'], 'in', [\"'86\", '--', 'has', 'a', 'defensive', 'player']]\n",
+ "[[\"Haynesworth's\", 'Titans', 'have', 'allowed', '87', 'points'], 'in', ['seven', 'games,', '12.4', 'per.', 'N.Y.', 'Jets']]\n",
+ "[['Maybe', \"he'll\", 'quit', 'making', 'rookie', 'mistakes'], 'in', ['his', '40s:', 'Brett', 'Favre', 'on', 'pace']]\n",
+ "[['a', 'tale', 'of', 'two', 'teams:', '2-2'], 'in', ['roadies,', '3-0', 'at', 'home,', 'where', 'they']]\n",
+ "[['to', 'the', 'dang', 'ball?', 'Jets', 'minus-6'], 'in', ['turnovers,', 'Bills', 'minus-3.', 'Prediction:', 'Bills', '31,']]\n",
+ "[['Think', 'again,', 'nacho', 'breath.', \"They're\", 'second'], 'in', ['the', 'league', 'in', 'turnovers', '(plus-7)', 'and']]\n",
+ "[['breath.', \"They're\", 'second', 'in', 'the', 'league'], 'in', ['turnovers', '(plus-7)', 'and', 'lead', 'the', 'NFL']]\n",
+ "[['...', 'Jay', 'Cutler:', 'eight', 'TD', 'passes'], 'in', [\"Broncos'\", 'first', 'five', 'games,', 'five', 'in']]\n",
+ "[['in', \"Broncos'\", 'first', 'five', 'games,', 'five'], 'in', ['last', 'four.', '...', 'Joey', 'Porter', 'has']]\n",
+ "[['threw', 'for', '334', 'yards,', '2', 'TDs'], 'in', ['first', 'meeting.', '...', 'Have', 'folks', 'underrated']]\n",
+ "[['folks', 'underrated', 'Orton?', 'Dude', 'is', '11-2'], 'in', ['homies.', '...', 'Lions', 'had', 'their', 'annual']]\n",
+ "[['to', '87', 'catches.', 'Without', 'a', 'suspension'], 'in', ['the', 'equation,', 'that', 'is.', '...', 'New']]\n",
+ "[['runs', 'a', '4.45', '40,', 'signs', 'autographs'], 'in', ['4.46.', 'Prediction:', 'Jaguars', '27,', 'Bengals', '3']]\n",
+ "[['Ravens', 'converted', 'two', 'INTs', 'into', 'TDs'], 'in', ['third', 'quarter', 'to', 'blow', 'it', 'open.']]\n",
+ "[['Browns', 'gained,', 'count', \"'em,\", '6', 'yards'], 'in', ['second', 'half', 'at', 'Baltimore.', '...', 'Willis']]\n",
+ "[['...', 'Willis', 'McGahee', 'has', '100-plus', 'yards'], 'in', ['three', 'of', 'past', 'four', 'vs.', 'Brownies.']]\n",
+ "[['impressive', 'wins', 'over', 'Giants', 'and', 'Jaguars'], 'in', ['past', 'three', 'weeks.', '...', 'Ravens', 'minus-4']]\n",
+ "[['past', 'three', 'weeks.', '...', 'Ravens', 'minus-4'], 'in', ['turnovers,', 'Browns', 'plus-6.', 'Prediction:', 'Browns', '23,']]\n",
+ "[['tosses.', '...', 'Who', 'knew?', 'Chiefs', 'plus-4'], 'in', ['turnovers.', '...', 'Larry', 'Johnson', 'says', \"he's\"]]\n",
+ "[['game,', '3.4', 'per.', '...', 'Tampa', 'fifth'], 'in', ['the', 'business', 'in', 'D,', 'tied', 'for']]\n",
+ "[['...', 'Tampa', 'fifth', 'in', 'the', 'business'], 'in', ['D,', 'tied', 'for', 'NFC', 'lead', 'with']]\n",
+ "[['fallout', 'from', 'the', 'hurricane.', '...', 'Houston'], 'in', ['search', 'of', 'fourth', 'straight', 'win,', 'which']]\n",
+ "[['which', 'would', 'be', 'a', 'franchise', 'first'], 'in', ['a', 'single', 'season.', '...', \"Minnie's\", 'eighth-ranked']]\n",
+ "[['30,', '2007.', \"What's\", 'this?', 'A', 'pulse'], 'in', ['St.', 'Looie?', 'Rams', 'playing', 'hard', 'for']]\n",
+ "[['for', 'Jim', 'Haslett', 'after', 'mailing', 'it'], 'in', ['under', 'Scott', 'Linehan.', '...', 'Cards', 'have']]\n",
+ "[['...', 'Cards', 'have', 'won', 'last', 'three'], 'in', ['series.', '...', 'Rams', 'plus-7', 'in', 'turnovers']]\n",
+ "[['three', 'in', 'series.', '...', 'Rams', 'plus-7'], 'in', ['turnovers', 'in', 'three', 'games', 'under', 'Haslett.']]\n",
+ "[['series.', '...', 'Rams', 'plus-7', 'in', 'turnovers'], 'in', ['three', 'games', 'under', 'Haslett.', '...', 'Hope']]\n",
+ "[['Pack', 'the', 'picture', 'of', 'mediocrity:', '16th'], 'in', ['offense,', '17th', 'in', 'D.', '...', 'Did']]\n",
+ "[['of', 'mediocrity:', '16th', 'in', 'offense,', '17th'], 'in', ['D.', '...', 'Did', 'you', 'know?', 'Kerry']]\n",
+ "[['Did', 'you', 'know?', 'Kerry', 'Collins', 'tops'], 'in', ['NFL', 'in', 'third-down', 'passer', 'rating', '(120-plus)']]\n",
+ "[['know?', 'Kerry', 'Collins', 'tops', 'in', 'NFL'], 'in', ['third-down', 'passer', 'rating', '(120-plus)', 'and', 'nine']]\n",
+ "[[\"didn't\", 'know,', \"that's\", 'last', 'meeting,', 'as'], 'in', ['the', 'regular', 'season.', 'G-Men', 'ruled', 'in']]\n",
+ "[['in', 'the', 'regular', 'season.', 'G-Men', 'ruled'], 'in', ['playoff', 'game', 'at', 'Dallas.', '...', 'Point']]\n",
+ "[['...', 'Johnson', '3-0', 'career', 'vs.', 'Giants'], 'in', ['the', 'swamps', \"o'\", 'Joisey', '--', 'in']]\n",
+ "[['in', 'the', 'swamps', \"o'\", 'Joisey', '--'], 'in', ['his', 'pre-Geritol', 'days.', '...', 'Brad,', 'meet']]\n",
+ "[['that', 'is.', 'Dude', 'has', 'eight', 'sacks'], 'in', ['past', 'eight', 'games,', 'including', 'SB', 'XLII.']]\n",
+ "[['...', 'Talk', 'about', 'consistent.', 'Raiders', '26th'], 'in', ['offense,', '26th', 'in', 'D.', 'Prediction:', 'Raiders']]\n",
+ "[['consistent.', 'Raiders', '26th', 'in', 'offense,', '26th'], 'in', ['D.', 'Prediction:', 'Raiders', '20,', 'Falcons', '17']]\n",
+ "[['on', 'Dec.', '2,', '2007.', 'Strange', 'stuff'], 'in', ['last', \"year's\", 'meeting,', 'when', 'an', 'LB,']]\n",
+ "[['...', 'Eagles', 'were', 'sans', 'Donovan', 'Mac'], 'in', ['that', 'one.', '...', 'Philly', 'leads', 'NFC']]\n",
+ "[['stout', 'bunch,', 'witness', 'No.', '8', 'ranking'], 'in', ['Oh,', 'No.', '7', 'in', 'D.', '...']]\n",
+ "[['8', 'ranking', 'in', 'Oh,', 'No.', '7'], 'in', ['D.', '...', 'Not', 'that', 'Seahawks', 'have']]\n",
+ "[['Dude', 'has', 'three', 'catches,', '23', 'yards'], 'in', ['last', 'two', 'games.', '...', 'No', 'typo:']]\n",
+ "[['...', 'No', 'typo:', 'Indy', 'No.', '21'], 'in', ['offense.', 'Pats,', 'meanwhile,', 'No.', '19.', '...']]\n",
+ "[['Including', 'postseason,', 'he', 'has', 'caught', 'six-plus'], 'in', ['11', 'straight.', 'Prediction:', 'Colts', '30,', 'Patriots']]\n",
+ "[['...', 'Willie', 'Parker', 'expected', 'to', 'play'], 'in', ['this', 'one.', 'He', 'had', 'back-to-back', '100-yarders']]\n",
+ "[[\"What's\", 'so', 'magic', 'about', '1,000', 'yards'], 'in', ['a', '16-game', 'season?', '...', 'Jason', 'Campbell']]\n",
+ "[['and', 'dozens', 'of', 'other', 'major', 'citations'], 'in', ['his', '17-year', 'career.', 'Nearly', 'every', 'book']]\n",
+ "[['separated', 'from', '\"tail', 'to', 'get', 'away\"'], 'in', ['imitation', 'of', 'the', \"lizard's\", 'defense', 'strategy.']]\n",
+ "[['owner', 'of', 'The', 'Bookies,', 'which', 'specializes'], 'in', [\"children's\", 'and', 'educational', 'books.', '\"We', 'have']]\n",
+ "[['books.', '\"We', 'have', 'teachers', 'who', 'come'], 'in', ['and', 'ask,', \"'What's\", 'the', 'new', 'Steve']]\n",
+ "[['equally', 'riveting', 'text.', 'Dinocephalosaurus,', 'he', 'notes'], 'in', ['\"Prehistoric', 'Actual', 'Size,\"', '\"wasn\\'t', 'a', 'dinosaur.']]\n",
+ "[['collaborator,', 'Robin', 'Page,', 'work', 'almost', 'daily'], 'in', ['the', 'tidy,', 'whimsical', 'studio', 'in', 'their']]\n",
+ "[['daily', 'in', 'the', 'tidy,', 'whimsical', 'studio'], 'in', ['their', 'north', 'Boulder,', 'Colo.,', 'home.', 'Flat,']]\n",
+ "[['years', 'as', 'a', 'commercial', 'graphic', 'designer'], 'in', ['New', 'York', 'City.', 'Jenkins', 'loved', 'that,']]\n",
+ "[['of', 'the', 'Sea,\"', 'a', 'book', 'due'], 'in', ['stores', 'next', 'spring', 'that', 'visually', 'illustrates']]\n",
+ "[['the', \"ocean's\", 'depth.', '\"I', 'was', 'interested'], 'in', ['doing', 'a', 'book', 'about', 'the', 'ocean,']]\n",
+ "[['other', 'planets.', 'I', 'think', 'about', 'science'], 'in', ['a', 'cross-curriculum', 'way.\"', \"That's\", 'a', 'deliberate']]\n",
+ "[['books.', '\"There\\'s', 'a', 'thing', 'that', 'happens'], 'in', ['fourth', 'or', 'fifth', 'grade', 'where', 'kids']]\n",
+ "[['--', 'including', 'the', 'novel', '\"Breadwinner,\"', 'set'], 'in', ['Afghanistan', '--', 'looked', 'at', 'children', 'in']]\n",
+ "[['in', 'Afghanistan', '--', 'looked', 'at', 'children'], 'in', ['foreign', 'war-torn', 'countries.', 'This', 'features', 'interviews']]\n",
+ "[['the', 'children', 'whose', 'parents', 'are', 'serving'], 'in', ['the', 'U.S.', 'and', 'Canadian', 'militaries.', 'The']]\n",
+ "[['when', 'your', 'mother', 'or', 'father', 'is'], 'in', ['combat?', 'How', 'does', 'life', 'change', 'when']]\n",
+ "[['into', 'a', 'group', \"that's\", 'usually', 'overlooked'], 'in', ['the', 'mainstream', \"media's\", 'coverage', 'of', 'the']]\n",
+ "[['is', 'tinged', 'blue.', 'The', 'examples,', 'as'], 'in', ['the', \"collaborators'\", 'previous', 'book,', '\"Eat', 'Shoots']]\n",
+ "[['happier,\"', 'however,', 'shows', 'an', 'uneasy', 'couple'], 'in', ['a', 'chaotic', 'room', 'where', 'their', 'little']]\n",
+ "[['may', 'have', 'redefined', 'the', 'political', 'ad'], 'in', ['the', 'mix,', 'television', 'had', 'a', 'heavier']]\n",
+ "[['had', 'a', 'heavier', 'hand', 'than', 'usual'], 'in', ['conducting', 'the', \"nation's\", 'political', 'business.', 'Twenty-one']]\n",
+ "[[\"Couric's\", 'devastating', 'interview', 'were', 'turning', 'points'], 'in', [\"voters'\", 'minds.', 'Politics', 'and', 'entertainment', 'merged']]\n",
+ "[[\"voters'\", 'minds.', 'Politics', 'and', 'entertainment', 'merged'], 'in', ['what', 'Seth', 'Meyers', 'called', 'a', '\"snake']]\n",
+ "[['its', 'worth', 'as', 'a', 'truth-seeking', 'medium'], 'in', ['the', '2008', 'election', 'cycle.', 'TV', 'is']]\n",
+ "[['excruciatingly', 'familiar', 'as', 'they', 'camped', 'out'], 'in', ['our', 'living', 'rooms', 'through', 'endless', 'debates.']]\n",
+ "[['style', 'points,', 'judged', 'by', 'the', 'citizenry'], 'in', ['record', 'numbers.', \"Obama's\", 'small-screen', 'charisma', 'boosted']]\n",
+ "[[\"McCain's\", 'grimaces', 'and', 'eye', 'rolling,', 'apparent'], 'in', ['close-ups', 'during', 'debates,', 'and', 'his', 'initial']]\n",
+ "[['mainstream', 'media', 'imagery', 'could', 'be', 'seen'], 'in', ['online', 'efforts', 'to', 'compare', 'and', 'contrast']]\n",
+ "[['level', 'of', 'informed', 'debate', 'was', 'broadcast'], 'in', ['2008.', 'Amazingly,', '50', 'million', 'of', 'us']]\n",
+ "[['economy', 'tanked,', 'how', 'many', 'work', 'hours,'], 'in', ['how', 'many', 'offices', 'across', 'America,', 'were']]\n",
+ "[['got', 'an', 'afterlife', 'online,', 'popping', 'up'], 'in', ['reruns', 'faster', 'than', 'you', 'could', 'say']]\n",
+ "[['Keith', 'Olbermann', 'edged', 'out', 'Bill', \"O'Reilly\"], 'in', ['key', 'ratings;', 'both', 'of', 'them', 'stole']]\n",
+ "[['Americans', 'could', 'be', 'a', 'decisive', 'factor'], 'in', [\"Tuesday's\", 'presidential', 'election', 'in', 'the', 'three']]\n",
+ "[['decisive', 'factor', 'in', \"Tuesday's\", 'presidential', 'election'], 'in', ['the', 'three', 'battleground', 'states', 'of', 'New']]\n",
+ "[['John', 'McCain,', 'R-Ariz.,', 'have', 'aggressively', 'campaigned'], 'in', ['these', 'states,', 'which', 'President', 'Bush', 'carried']]\n",
+ "[['these', 'states,', 'which', 'President', 'Bush', 'carried'], 'in', ['2004', 'and', 'which', 'are', 'home', 'to']]\n",
+ "[['populations.', 'Polls', 'show', 'Obama', 'leading', 'McCain'], 'in', ['these', 'states,', 'where', 'polls', 'also', 'show']]\n",
+ "[['won', 'by', 'Sen.', 'John', 'Kerry,', 'D-Mass.,'], 'in', ['his', 'unsuccessful', '2004', 'bid', 'for', 'the']]\n",
+ "[['the', 'presidency,', 'the', '19', 'electoral', 'votes'], 'in', ['New', 'Mexico,', 'Nevada', 'and', 'Colorado', 'would']]\n",
+ "[['the', 'presidency', '--', 'even', 'without', 'prevailing'], 'in', ['other', 'battleground', 'states', 'like', 'Ohio', 'and']]\n",
+ "[['out', 'to', 'vote', 'Tuesday.', 'Voter', 'participation'], 'in', ['Hispanic', 'communities', 'has', 'historically', 'been', 'lower']]\n",
+ "[['14.3', 'percent', 'of', 'the', \"nation's\", 'population'], 'in', ['2004,', 'but', 'only', 'cast', '6', 'percent']]\n",
+ "[['cast', '6', 'percent', 'of', 'the', 'votes'], 'in', ['that', \"year's\", 'presidential', 'election.', 'Analysts', 'of']]\n",
+ "[['this', 'year', 'have', 'so', 'far', 'resulted'], 'in', ['large', 'registration', 'surges.', 'Brent', 'Wilkes,', 'national']]\n",
+ "[['level', 'is', 'higher', 'than', 'it', 'was'], 'in', ['perhaps', 'the', 'last', 'three', 'or', 'four']]\n",
+ "[['9.2', 'million,', 'up', 'from', '7.6', 'million'], 'in', ['2004.', 'A', 'poll', 'conducted', 'by', 'NALEO']]\n",
+ "[['2004.', 'A', 'poll', 'conducted', 'by', 'NALEO'], 'in', ['October', 'showed', 'that', 'nearly', '90', 'percent']]\n",
+ "[['90', 'percent', 'of', 'registered', 'Hispanic', 'voters'], 'in', ['Colorado,', 'Florida,', 'New', 'Mexico', 'and', 'Nevada']]\n",
+ "[['into', 'Hispanic', 'outreach', 'nationally.', 'Polls', 'conducted'], 'in', ['August', 'and', 'September', 'by', 'Latino', 'Decisions,']]\n",
+ "[['and', 'Gary', 'Segura', 'of', 'Stanford', 'University,'], 'in', ['conjunction', 'with', 'NALEO,', 'showed', 'Obama', 'leading']]\n",
+ "[['Obama', 'leading', 'McCain', 'among', 'Hispanic', 'voters'], 'in', ['each', 'of', 'these', 'three', 'states', 'by']]\n",
+ "[['the', 'size', 'of', 'the', 'Hispanic', 'populations'], 'in', ['these', 'states,', 'could', 'spell', 'influence', 'on']]\n",
+ "[['constituted', '30.4', 'percent', 'of', 'registered', 'voters'], 'in', ['New', 'Mexico,', '10', 'percent', 'of', 'registered']]\n",
+ "[['Mexico,', '10', 'percent', 'of', 'registered', 'voters'], 'in', ['Colorado', 'and', '10.2', 'percent', 'of', 'registered']]\n",
+ "[['and', '10.2', 'percent', 'of', 'registered', 'voters'], 'in', ['Nevada,', 'according', 'to', 'a', 'report', 'led']]\n",
+ "[['American', 'Immigration', 'Law', 'Foundation.', 'State-wide', 'polls'], 'in', ['October', 'gave', 'Obama', 'an', 'average', 'edge']]\n",
+ "[['average', 'edge', 'of', 'about', 'seven', 'points'], 'in', ['New', 'Mexico.', 'The', 'Illinois', \"senator's\", 'lead']]\n",
+ "[['New', 'Mexico.', 'The', 'Illinois', \"senator's\", 'lead'], 'in', ['Colorado', 'and', 'Nevada', 'similarly', 'averaged', 'at']]\n",
+ "[['Obama', 'behind', 'McCain', 'by', 'four', 'points'], 'in', ['New', 'Mexico', 'and', 'in', 'a', 'statistical']]\n",
+ "[['four', 'points', 'in', 'New', 'Mexico', 'and'], 'in', ['a', 'statistical', 'tie', 'in', 'Colorado', 'and']]\n",
+ "[['Mexico', 'and', 'in', 'a', 'statistical', 'tie'], 'in', ['Colorado', 'and', 'Nevada.', 'Ellie', 'Klerlein,', 'field']]\n",
+ "[['their', 'community,\"', 'Klerlein', 'said.', 'Immigration', 'issues'], 'in', ['this', \"year's\", 'contest', 'have', 'often', 'been']]\n",
+ "[['been', 'just', 'below', 'the', 'surface', '--except'], 'in', ['the', 'Spanish-language', 'news', 'media,', 'where', 'both']]\n",
+ "[['policies', 'and', 'rhetoric', 'that', 'is', 'unpopular'], 'in', ['the', 'Hispanic', 'community.', 'In', \"Sharry's\", 'view,']]\n",
+ "[['Latino', 'community', 'during', 'his', 'primary', 'campaign'], 'in', ['order', 'to', 'attract', 'his', \"party's\", 'conservative']]\n",
+ "[['negative', 'association', 'may', 'be', 'particularly', 'important'], 'in', [\"McCain's\", 'efforts', 'to', 'win', 'over', 'new']]\n",
+ "[['issues', 'like', 'the', 'economy,', 'the', 'war'], 'in', ['Iraq,', 'health', 'care', 'and', 'education', 'in']]\n",
+ "[['in', 'Iraq,', 'health', 'care', 'and', 'education'], 'in', ['order', 'to', 'gain', 'votes', 'from', 'those']]\n",
+ "[['about', \"'Can\", 'someone', 'speak', 'to', 'me'], 'in', ['Spanish', 'and', 'is', 'that', 'going', 'to']]\n",
+ "[['the', 'Senate', 'to', 'the', 'White', 'House'], 'in', ['almost', '50', 'years.', 'Of', 'the', \"nation's\"]]\n",
+ "[['only', 'two', 'who', 'were', 'elected', 'while'], 'in', ['the', 'Senate', 'were', 'Democrat', 'John', 'F.']]\n",
+ "[['Senate', 'were', 'Democrat', 'John', 'F.', 'Kennedy'], 'in', ['1960', 'and', 'Republican', 'Warren', 'Harding', '40']]\n",
+ "[['to', 'come', 'directly', 'from', 'the', 'Senate'], 'in', ['225', 'years.', 'Having', '\"U.S.', 'Senate\"', 'at']]\n",
+ "[['--', 'a', 'creature', 'of', 'the', 'Congress'], 'in', ['which', 'he', 'served', '--', 'and', 'unable']]\n",
+ "[['of', 'states', 'and', 'everyday', 'people', 'once'], 'in', ['the', 'White', 'House.', 'And', 'the', 'skills']]\n",
+ "[['On', 'the', 'campaign', 'trail', 'and', 'once'], 'in', ['the', 'White', 'House,', 'senators', '\"have', 'been']]\n",
+ "[['by', 'the', 'fact', 'that', 'they', 'talk'], 'in', [\"'Senate-speak,'\", '\"', 'said', 'Barry', 'Burden,', 'a']]\n",
+ "[['who', 'has', 'studied', 'how', 'would-be', 'presidents'], 'in', ['the', 'Senate.', '\"Outside', 'the', 'institution,', 'that']]\n",
+ "[[\"doesn't\", 'resonate', 'with', 'voters.\"', 'The', 'winner'], 'in', [\"Tuesday's\", 'election', 'can', 'immediately', 'capitalize', 'on']]\n",
+ "[['by', 'taking', 'a', 'lead', 'role', 'later'], 'in', ['November', 'when', 'Congress', 'reconvenes', 'to', 'craft']]\n",
+ "[['his', 'firsthand', 'knowledge', 'of', 'the', 'personalities'], 'in', ['Congress', 'and', 'the', 'sometimes', 'arcane', 'procedural']]\n",
+ "[['on', 'Capitol', 'Hill', 'or', 'stop', 'it'], 'in', ['its', 'tracks.', 'Both', 'Obama', 'and', 'McCain']]\n",
+ "[['their', 'personal', 'connections', 'with', 'former', 'colleagues'], 'in', ['Congress', 'to', 'push', 'their', 'own', 'priorities']]\n",
+ "[['President', 'Lyndon', 'B.', \"Johnson's\", '12', 'years'], 'in', ['the', 'Senate', '--', 'including', 'six', 'years']]\n",
+ "[['leader', '--', 'gave', 'him', 'an', 'advantage'], 'in', ['pushing', 'civil', 'rights', 'legislation', 'and', 'the']]\n",
+ "[['\"great', 'society\"', 'agenda', 'during', 'his', 'time'], 'in', ['the', 'White', 'House.', 'Although', 'Johnson', 'had']]\n",
+ "[['more', 'than', 'a', 'decade', 'of', 'experience'], 'in', ['the', 'Senate,', 'his', 'launching', 'pad', 'to']]\n",
+ "[['expecting', 'to', 'play', 'a', 'key', 'role'], 'in', ['the', 'debate.', 'The', 'legislative', 'experience', 'Obama']]\n",
+ "[['nomination,', 'most', 'recently', 'John', 'Kerry,', 'D-Mass.,'], 'in', ['2004,', 'and', 'former', 'Sen.', 'Robert', 'Dole,']]\n",
+ "[['and', 'former', 'Sen.', 'Robert', 'Dole,', 'R-Kan.,'], 'in', ['1996.', 'This', 'means', 'that', 'the', 'loser']]\n",
+ "[['1996.', 'This', 'means', 'that', 'the', 'loser'], 'in', [\"Tuesday's\", 'presidential', 'contest', 'will', 'have', 'plenty']]\n",
+ "[['contest', 'will', 'have', 'plenty', 'of', 'company'], 'in', ['the', 'Senate,', 'which', 'is', 'filled', 'with']]\n",
+ "[['presidents', 'have', 'amassed', 'extensive', 'voting', 'records'], 'in', ['the', 'chamber', 'that', 'can', 'be', 'easily']]\n",
+ "[['records.', 'Because', 'of', \"Obama's\", 'limited', 'time'], 'in', ['the', 'Senate', '--', 'he', 'won', 'his']]\n",
+ "[['Senate', '--', 'he', 'won', 'his', 'seat'], 'in', ['2004', '--', 'he', 'has', 'had', 'an']]\n",
+ "[['Senate', 'veteran,', 'and', 'his', 'main', 'challenger'], 'in', ['the', 'Democratic', 'primaries,', 'Sen.', 'Hillary', 'Clinton,']]\n",
+ "[['authorizing', 'the', 'use', 'of', 'military', 'force'], 'in', ['Iraq', 'in', '2002', '--', 'before', 'Obama']]\n",
+ "[['use', 'of', 'military', 'force', 'in', 'Iraq'], 'in', ['2002', '--', 'before', 'Obama', 'arrived', 'in']]\n",
+ "[['in', '2002', '--', 'before', 'Obama', 'arrived'], 'in', ['the', 'Senate.', 'Senators', 'also', 'can', 'struggle']]\n",
+ "[['used', 'as', 'evidence', 'of', 'flip-flopping.', 'Case'], 'in', ['point:', 'Four', 'years', 'ago,', 'Kerry', 'was']]\n",
+ "[['was', 'attacked', 'for', 'explaining', 'a', 'vote'], 'in', ['favor', 'of', 'war', 'funding', 'by', 'saying']]\n",
+ "[['Washington', 'insiders', 'who', 'are', 'too', 'immersed'], 'in', ['Beltway', 'politics', 'to', 'connect', 'with', 'voters']]\n",
+ "[['expertise', 'after', 'years', 'of', 'being', 'immersed'], 'in', ['a', 'few', 'select', 'areas', 'serving', 'on']]\n",
+ "[['select', 'areas', 'serving', 'on', 'individual', 'committees'], 'in', ['the', 'Senate.', 'A', 'senator-turned-president', 'may', 'know']]\n",
+ "[['the', 'particular', 'areas', 'that', 'he', 'specialized'], 'in', ['(while)', 'in', 'the', 'Senate,\"', 'Hess', 'said.']]\n",
+ "[['areas', 'that', 'he', 'specialized', 'in', '(while)'], 'in', ['the', 'Senate,\"', 'Hess', 'said.', '\"Senators', 'become']]\n",
+ "[['there', 'are', 'a', 'lot', 'of', 'areas'], 'in', ['which', 'he', 'steps', 'into', 'the', 'executive']]\n",
+ "[['the', 'executive', 'office', 'of', 'the', 'president'], 'in', ['which', 'he', 'knows', 'nothing.\"', 'Ross', 'Baker,']]\n",
+ "[['have', '13', 'responsibilities', 'coming', 'at', 'you'], 'in', ['terms', 'of', 'various', 'policy', 'areas,\"', 'Baker']]\n",
+ "[['Silverio', '\"Silver\"', 'Salazar', \"don't\", 'have', 'much'], 'in', ['common', '--', 'clearly', 'evident', 'in', 'their']]\n",
+ "[['much', 'in', 'common', '--', 'clearly', 'evident'], 'in', ['their', 'divergent', 'choices', 'for', 'the', \"country's\"]]\n",
+ "[['trait', 'they', 'share:', \"They're\", 'Hispanic', 'voters'], 'in', ['Colorado,', 'representing', 'the', 'swing', 'voting', 'bloc']]\n",
+ "[['Colorado,', 'representing', 'the', 'swing', 'voting', 'bloc'], 'in', ['a', 'battleground', 'state', 'that', 'is', 'being']]\n",
+ "[['Obama', 'campaign', 'office', 'here.', 'Salazar,', \"who's\"], 'in', ['charge', 'of', 'Hispanic', 'outreach', 'in', 'southern']]\n",
+ "[[\"who's\", 'in', 'charge', 'of', 'Hispanic', 'outreach'], 'in', ['southern', 'Colorado', 'for', 'John', 'McCain,', 'agreed.']]\n",
+ "[['ties', 'with', 'Mexico.\"', 'A', 'recent', 'accident'], 'in', ['which', 'an', 'unauthorized', 'immigrant', 'crashed', 'into']]\n",
+ "[['keep', 'the', 'issue', 'of', 'illegal', 'immigration'], 'in', ['the', 'forefront', 'here.', 'But', \"it's\", 'the']]\n",
+ "[['But', \"it's\", 'the', 'lingering', 'legislative', 'impasse'], 'in', ['Washington', 'over', 'immigration', 'reform', 'that', 'is']]\n",
+ "[['reform', 'that', 'is', 'inspiring', 'nonpolitical', 'types'], 'in', ['Colorado', 'to', 'join', 'the', 'election', 'fray.']]\n",
+ "[['Floyd', 'Ciruli,', 'a', 'veteran', 'independent', 'pollster'], 'in', ['Denver.', 'Campaign', 'officials,', 'state', 'and', 'local']]\n",
+ "[['researchers', 'and', 'immigrants', 'all', 'agreed', 'that'], 'in', ['Colorado', 'the', 'issue', 'of', 'immigration', 'conjures']]\n",
+ "[['sit', 'by', 'idly', 'until', 'their', 'counterparts'], 'in', ['Washington', 'get', 'their', 'act', 'together', 'and']]\n",
+ "[['immigrants', '--', 'about', 'half', 'of', 'them'], 'in', ['the', 'country', 'illegally,', 'according', 'to', 'the']]\n",
+ "[['increasing', 'crime', 'rates.\"', 'The', 'immigration-restrictionist', 'argument'], 'in', ['Colorado', 'is', 'also', 'often', 'linked', 'to']]\n",
+ "[['have', 'relatives', 'or', 'friends', 'who', 'are'], 'in', ['the', 'country', 'illegally,', 'and', \"they're\", 'among']]\n",
+ "[['trail,', 'both', 'Democratic', 'and', 'GOP', 'operatives'], 'in', ['Colorado', 'said', 'it', 'plays', 'a', 'vital']]\n",
+ "[['said', 'it', 'plays', 'a', 'vital', 'role'], 'in', ['the', 'contest', 'there.', 'Salazar,', 'who', 'hails']]\n",
+ "[['who', 'hails', 'from', 'a', 'family', 'steeped'], 'in', ['Colorado', 'politics,', 'including', 'two', 'current', 'members']]\n",
+ "[['for', 'McCain\"', 'at', 'the', \"senator's\", 'headquarters'], 'in', ['Pueblo,', 'Salazar', 'said', 'his', \"candidate's\", 'record']]\n",
+ "[['put', 'his', 'fundraising', 'largesse', 'to', 'use'], 'in', ['Colorado,', 'opening', '51', 'offices', '--', 'compared']]\n",
+ "[['home,', 'an', 'affordable', 'alternative', 'to', 'staying'], 'in', ['a', 'hotel,', 'is', 'becoming', 'an', 'increasingly']]\n",
+ "[['with', 'more', 'than', '80', 'readers', 'weighing'], 'in', ['at', 'nytimes.com.', 'Renters', 'and', 'owners', 'alike']]\n",
+ "[['the', 'owner', 'of', 'a', 'vacation', 'rental'], 'in', ['Puerto', 'Rico,', 'took', 'offense', 'to', 'the']]\n",
+ "[['bad', 'experience', 'with', 'a', 'different', 'property'], 'in', ['Puerto', 'Rico', 'that', 'a', 'renter', 'said']]\n",
+ "[['article', 'that', 'portrayed', 'private', 'vacation', 'rentals'], 'in', ['such', 'a', 'bad', 'light,\"', 'Christine', 'wrote.']]\n",
+ "[['September', '2007,', 'we', 'rented', 'an', 'apartment'], 'in', ['Nice,', 'France,', 'from', 'a', 'Scottish', 'owner.']]\n",
+ "[['there', 'was', 'rotting', 'food,', 'and', 'mold,'], 'in', ['the', 'refrigerator,', 'and', 'no', 'hot', 'water']]\n",
+ "[['have', 'fans.', '\"I', 'have', 'rented', 'homes'], 'in', ['several', 'states', 'for', 'vacations', 'with', 'family,\"']]\n",
+ "[['newsletter', 'for', 'Rentvillas.com,', 'an', 'agency', 'specializing'], 'in', ['rentals', 'in', 'Europe.', '\"The', 'role', 'of']]\n",
+ "[['Rentvillas.com,', 'an', 'agency', 'specializing', 'in', 'rentals'], 'in', ['Europe.', '\"The', 'role', 'of', 'the', 'agency']]\n",
+ "[['the', 'client.\"', 'Vacation', 'rental', 'homeowners', 'wrote'], 'in', ['passionate', 'defense', 'of', 'the', 'rental-by-owner', 'market,']]\n",
+ "[['many', 'of', 'them', 'take', 'great', 'pride'], 'in', ['their', 'homes', 'and', 'hold', 'their', 'rentals']]\n",
+ "[['--', \"it's\", 'the', 'renter.', '\"Not', 'mentioned'], 'in', ['the', 'article:', 'the', 'fact', 'that', \"it's\"]]\n",
+ "[['mentioning', 'them,', 'etc.', 'These', 'folks', 'are'], 'in', ['the', 'minority,', 'I', 'think,', 'but', 'it']]\n",
+ "[['California,', 'who', 'said', 'she', 'has', 'rented'], 'in', ['various', 'parts', 'of', 'Europe,', 'and', '\"you']]\n",
+ "[['list', 'of', 'what', \"you're\", 'looking', 'for'], 'in', ['a', 'rental', 'can', 'also', 'be', 'useful,']]\n",
+ "[['a', 'point', 'of', 'asking', 'a', 'question'], 'in', ['your', 'first', 'query', 'to', 'the', 'owner']]\n",
+ "[['--', 'and', 'positively', 'great', 'luck', '--'], 'in', ['Jerez', 'de', 'la', 'Frontera,', 'Spain,', 'and']]\n",
+ "[['Oklahoma,', 'who', 'said', 'she', 'had', 'rented'], 'in', ['Europe', 'and', 'recommended', 'the', 'National', 'Trust']]\n",
+ "[['own', 'and', 'operate', 'historic', 'rental', 'properties'], 'in', ['the', 'United', 'Kingdom', 'and', 'Europe.', '(END']]\n",
+ "[['Kelly,', 'who', 'owns', 'a', 'rental', 'property'], 'in', ['Pacific', 'Beach,', 'Wash.,', 'pointed', 'out', 'that']]\n",
+ "[['is', 'not', 'that', 'much', 'to', 'do'], 'in', ['Frankfurt,', 'so', 'any', 'kind', 'of', 'suggestions']]\n",
+ "[['Frankfurt', 'is', 'getting', 'a', 'bad', 'rap'], 'in', ['Alabama,', 'but', 'the', 'city,', \"Germany's\", 'financial']]\n",
+ "[['visitor.', '\"Its', 'museums', 'are', 'the', 'best'], 'in', ['Germany,', 'after', 'Berlin\\'s,\"', 'wrote', 'Mark', 'Landler']]\n",
+ "[['Berlin\\'s,\"', 'wrote', 'Mark', 'Landler', 'last', 'year'], 'in', ['\"36', 'Hours', 'in', 'Frankfurt\"', '(Aug.', '19,']]\n",
+ "[['Landler', 'last', 'year', 'in', '\"36', 'Hours'], 'in', ['Frankfurt\"', '(Aug.', '19,', '2007),', '\"and', 'its']]\n",
+ "[['61;', '49-69-212-333-91;', 'www.palmengarten-frankfurt.de).', \"Landler's\", 'dining', 'recommendations'], 'in', ['the', 'piece', 'include', 'Silk,', 'where', 'you']]\n",
+ "[['hot', 'spots', 'reviewed', 'by', 'William', 'Grimes'], 'in', ['T:', 'Travel', \"magazine's\", '\"Teutonic', 'Plates\"', '(Nov.']]\n",
+ "[['18,', '2007).', 'Christian', 'Anderson,', 'a', 'reader'], 'in', ['Davis,', 'Calif.,', 'who', 'lived', 'in', 'Frankfurt']]\n",
+ "[['reader', 'in', 'Davis,', 'Calif.,', 'who', 'lived'], 'in', ['Frankfurt', 'for', 'eight', 'months,', 'listed', 'in']]\n",
+ "[['in', 'Frankfurt', 'for', 'eight', 'months,', 'listed'], 'in', ['an', 'e-mail', 'message', 'a', 'number', 'of']]\n",
+ "[['Other', 'reader', 'recommendations', 'can', 'be', 'found'], 'in', ['the', 'Where', 'to', 'Stay,', 'Where', 'to']]\n",
+ "[['specifically', 'a', 'visit', 'to', 'the', 'Meisterturm'], 'in', ['Hofheim', '(www.meisterturm.de),', 'a', 'small', 'Eiffel', 'Tower-like']]\n",
+ "[['begins', '(or', 'ends,', 'if', 'you', 'prefer)'], 'in', [\"Chicago's\", 'wealthy', 'Near', 'North', 'Side,', 'where']]\n",
+ "[['by', 'now', \"it's\", 'certainly', 'biography.', 'Late'], 'in', ['his', 'life,', 'Bellow', 'reflected', 'on', 'spending']]\n",
+ "[['Bellow', 'reflected', 'on', 'spending', 'summer', 'nights'], 'in', ['Humboldt', 'Park,', '\"on', 'the', 'back', 'porch,']]\n",
+ "[['it', 'a', 'phosphate).', 'Over', 'every', 'drugstore'], 'in', ['Chicago', 'there', 'swung', 'a', 'large', 'mortar']]\n",
+ "[['a', 'large', 'mortar', 'and', 'pestle', 'outlined'], 'in', ['electric', 'bulbs', 'and', 'every', 'summer', 'the']]\n",
+ "[['new', '(phosphates,', 'electric', 'bulbs).', 'These', 'days'], 'in', ['much', 'of', 'Humboldt', 'Park,', 'you', 'are']]\n",
+ "[['syncopated', 'arpeggios', 'of', 'a', 'piano', 'used'], 'in', ['a', 'Latin', 'band', 'than', 'a', 'player']]\n",
+ "[['street.', 'Most', 'of', 'the', 'signs', 'are'], 'in', ['Spanish;', 'the', 'gentrification', 'that', 'has', 'transformed']]\n",
+ "[['just', 'southwest', 'of', 'Humboldt', 'Park,', 'closed'], 'in', ['the', 'early', '1970s,', 'after', 'decades', 'of']]\n",
+ "[['stronger', 'here', 'than', 'almost', 'anywhere', 'else'], 'in', ['the', 'city.', 'The', 'second', 'house', 'into']]\n",
+ "[['has', 'an', 'old-time,', 'corner-tavern', 'feeling', '(which'], 'in', ['this', 'area', 'still', 'tends', 'to', 'mean']]\n",
+ "[['serves', 'a', 'largely', 'Latino', 'community', 'and'], 'in', ['the', 'evenings', 'it', 'features', 'an', 'eclectic']]\n",
+ "[['with', 'some', 'of', 'the', 'best', 'DJs'], 'in', ['the', 'city.', 'It', 'achieves', 'this', 'mix']]\n",
+ "[['like', 'Bellow,', 'attended', 'Tuley', 'High', 'School'], 'in', ['Humboldt', 'Park;', 'he', 'and', 'my', 'great-aunt']]\n",
+ "[['almost', 'exact', 'contemporaries,', 'and', 'there', 'appears'], 'in', ['\"More', 'Die', 'of', 'Heartbreak\"', 'a', 'character']]\n",
+ "[['fond', 'of', 'Dorothy', 'when', 'they', 'were'], 'in', ['high', 'school,', 'but', 'her', 'father,', 'Elie,']]\n",
+ "[['corrupt', 'big-city', 'pol', '--', 'a', 'caricature,'], 'in', ['a', 'sense,', 'of', \"Elie's\", 'cautious', 'immigrant']]\n",
+ "[['councilman', 'who', 'squeezed', 'a', \"man's\", 'head'], 'in', ['a', 'vise,', 'maneuvered', 'his', 'sister', 'out']]\n",
+ "[['Bellow', 'was', 'pretty', 'close', 'to', 'sainthood'], 'in', ['my', 'secular', 'Jewish', 'home', '--', 'I']]\n",
+ "[['was', 'almost', '30.', 'I', 'was', 'then'], 'in', ['the', 'middle', 'of', 'a', 'three-year', 'spell']]\n",
+ "[['the', 'middle', 'of', 'a', 'three-year', 'spell'], 'in', ['London,', 'restless', 'and', 'homesick,', 'and', 'I']]\n",
+ "[['haimishe,', 'and', 'a', 'little', 'eerie', '--'], 'in', ['my', 'encounters', 'with', 'Bellow', 'than', 'with']]\n",
+ "[['like', 'my', 'grandfather,', 'an', 'orphan', 'raised'], 'in', ['military', 'school', 'who', 'became', 'first', 'a']]\n",
+ "[['he', 'could.', 'My', 'grandmother', 'could', 'curse'], 'in', ['Yiddish', 'and', 'quote', 'Browning', 'from', 'memory']]\n",
+ "[['and', 'commerce', 'coexisted,', 'rather', 'than', 'competing,'], 'in', ['these', 'people', 'and', 'in', 'their', 'milieu.']]\n",
+ "[['than', 'competing,', 'in', 'these', 'people', 'and'], 'in', ['their', 'milieu.', 'Augie,', 'Einhorn', 'and', 'Maurice']]\n",
+ "[['milieu.', 'Augie,', 'Einhorn', 'and', 'Maurice', 'spoke'], 'in', ['their', 'accents:', 'adenoidal', 'Midwestern', 'with', 'an']]\n",
+ "[['forged', '--', 'were', 'made', 'Americans', '--'], 'in', ['the', 'crucible', 'of', \"Chicago's\", 'Northwest', 'Side.']]\n",
+ "[['so', 'real.\"', 'Studs', 'Terkel', 'has', 'lived'], 'in', ['the', 'area', 'since', 'he', 'was', '8']]\n",
+ "[['his', 'oral', 'history', '\"Division', 'Street,\"', 'published'], 'in', ['1967,', 'tells', 'the', \"neighborhood's\", 'stories', 'from']]\n",
+ "[['per', 'capita', 'than', 'any', 'other', 'street'], 'in', ['the', 'world.', 'Today', 'you', 'have', 'to']]\n",
+ "[['the', 'greatest', 'paragraph', 'of', 'Chicago', 'anthropology'], 'in', [\"Bellow's\", 'most', 'Chicago-centric', 'book,', '\"Humboldt\\'s', 'Gift\":']]\n",
+ "[['of', 'the', 'Russian', 'Bath', 'are', 'cast'], 'in', ['an', 'antique', 'form.', 'They', 'have', 'swelling']]\n",
+ "[['by', 'nature', 'and', 'culture.', 'So', 'down'], 'in', ['the', 'super-heated', 'subcellars', 'all', 'these', 'Slavonic']]\n",
+ "[['bucket.', 'Upstairs,', 'on', 'the', 'television', 'screen'], 'in', ['the', 'locker', 'room,', 'little', 'dudes', 'and']]\n",
+ "[['...', 'There', 'may', 'be', 'no', 'village'], 'in', ['the', 'Carpathians', 'where', 'such', 'practices', 'still']]\n",
+ "[['antique', 'forms', 'to', 'twittering', 'little', 'dudes'], 'in', ['three', 'short', 'generations.', 'IF', 'YOU', 'GO:']]\n",
+ "[['N.', 'Leavitt', 'St.;', '773-384-3245;', 'www.raysbucktownbandb.com)', 'is'], 'in', ['Bucktown,', 'one', 'neighborhood', 'east', 'of', 'Humboldt']]\n",
+ "[['Wabash', 'Ave.;', '312-924-7610;', 'www.trumpchicagohotel.com)', 'just', 'opened'], 'in', ['January;', 'rooms', 'start', 'at', '$475.', 'WHERE']]\n",
+ "[['Park-Logan', 'Square', 'border.', 'The', 'restaurant', 'specializes'], 'in', ['seafood;', 'try', 'the', 'marlin', 'ceviche', 'for']]\n",
+ "[['(2537', 'N.', 'Kedzie', 'Blvd.;', '773-489-9554;', 'www.lulacafe.com),'], 'in', ['the', 'heart', 'of', 'Logan', 'Square,', 'features']]\n",
+ "[['(1952', 'N.', 'Damen', 'Ave.;', '773-772-6170;', 'www.takashichicago.com)'], 'in', ['Wicker', 'Park,', 'where', 'he', 'combines', 'Japanese']]\n",
+ "[['manager', 'of', 'the', 'Hale', 'Center', 'Theater'], 'in', ['Salt', 'Lake', 'City,', 'plans', 'for', 'his']]\n",
+ "[['to', 'order', 'the', 'next', 'time', \"he's\"], 'in', ['town.', \"Fox's\", 'latest', 'recommendation:', 'the', 'flat']]\n",
+ "[['about', 'two', 'weeks', 'ago.', '\"It\\'s', 'not'], 'in', ['a', 'place', 'a', 'tourist', 'would', 'just']]\n",
+ "[['become', 'a', 'bit', 'blase', 'by', 'living'], 'in', ['the', 'city.', 'The', 'recommendation', 'by', \"Fox's\"]]\n",
+ "[['favorite', 'activity', 'was', 'buying', 'knock-off', 'purses'], 'in', ['backrooms', 'of', 'Canal', 'Street', 'stores.', '(Weekend']]\n",
+ "[['backrooms', 'of', 'Canal', 'Street', 'stores.', '(Weekend'], 'in', ['New', 'York', 'does', 'not', 'endorse', 'such']]\n",
+ "[['trip', 'was', 'the', 'decision', 'to', 'stay'], 'in', ['the', 'St.', 'Marks', 'Hotel', 'in', 'the']]\n",
+ "[['stay', 'in', 'the', 'St.', 'Marks', 'Hotel'], 'in', ['the', 'East', 'Village,', 'as', 'opposed', 'to']]\n",
+ "[['a', '32-year-old', 'engineer.', '\"But', 'it', 'is'], 'in', ['a', 'fascinating', 'area.', 'There', 'are', 'many']]\n",
+ "[['You', 'can', 'see', 'a', 'store', 'specializing'], 'in', ['comics,', 'and', 'then', 'a', 'boutique', 'for']]\n",
+ "[['and', 'molecular', 'virologist', 'who', 'was', 'born'], 'in', ['Bulgaria', 'and', 'lives', 'in', 'Poland,', 'recently']]\n",
+ "[['was', 'born', 'in', 'Bulgaria', 'and', 'lives'], 'in', ['Poland,', 'recently', 'spent', 'four', 'days', 'visiting']]\n",
+ "[['four', 'days', 'visiting', 'a', 'childhood', 'friend'], 'in', ['New', 'York.', 'His', 'call:', 'drinking', 'at']]\n",
+ "[['and', 'restaurant', 'serving', 'modern', 'Latin', 'cuisine'], 'in', ['SoHo.', 'He', 'recommended', 'the', 'bar', 'scene']]\n",
+ "[['it,', 'as', 'evidenced', 'by', 'his', 'difficulty'], 'in', ['recalling', 'how', 'long', 'he', 'stayed.', 'In']]\n",
+ "[['with', 'her', 'sister', 'Juliana', '--', 'both'], 'in', ['their', '20s', '--', 'was', 'amazed', 'that']]\n",
+ "[['their', '20s', '--', 'was', 'amazed', 'that'], 'in', ['New', 'York,', 'she', 'could', 'eat', 'tapas']]\n",
+ "[['&', 'Home.', '\"At', 'night,', 'they', 'put'], 'in', ['tables.', \"It's\", 'really', 'awesome.\"', 'The', 'dozens']]\n",
+ "[['have', 'public', 'transportation.', \"It's\", 'an', 'experience'], 'in', ['and', 'of', 'itself.', 'It', 'connects', 'you']]\n",
+ "[['It', 'connects', 'you', 'to', 'the', 'city'], 'in', ['a', 'way', 'that', 'nothing', 'else', 'does.\"']]\n",
+ "[['Trish', 'and', 'Chris', 'Skillman,', 'who', 'were'], 'in', ['town', 'for', 'the', 'weekend', 'from', 'Clinton,']]\n",
+ "[['plan', 'at', 'all.', '\"I', 'would', 'come'], 'in', ['with', 'absolutely', 'nothing', 'particular', 'in', 'mind']]\n",
+ "[['come', 'in', 'with', 'absolutely', 'nothing', 'particular'], 'in', ['mind', 'and', 'just', 'pick', 'and', 'choose']]\n",
+ "[['strikes,\"', 'said', 'Chris', 'Skillman.', 'Almost', 'nothing'], 'in', ['mind,', 'that', 'is:', 'Every', 'time', 'they']]\n",
+ "[['Street,', 'Vesey', 'Street', 'and', 'West', 'Street'], 'in', ['downtown', 'Manhattan;', 'www.tributewtc.org.', 'Ideya,', '349', 'West']]\n",
+ "[['the', 'movie', 'underscores', 'the', 'enduring', 'challenge'], 'in', ['deciphering', 'this', 'country', 'music', 'pioneer.', 'More']]\n",
+ "[['than', 'five', 'decades', 'after', 'his', 'death,'], 'in', ['1953,', 'of', 'an', 'overdose', 'of', 'morphine']]\n",
+ "[['a', 'show,', 'Hank', 'Williams', 'lives', 'on'], 'in', ['myth', 'that', 'is', 'so', 'fraught', 'with']]\n",
+ "[['two', 'recent', 'projects', 'help', 'recast', 'him'], 'in', ['a', 'revealing', 'new', 'light,', 'without', 'whitewashing']]\n",
+ "[['artifacts', 'that', 'have', 'never', 'been', 'displayed'], 'in', ['public', 'before.', 'The', 'second,', 'a', 'CD']]\n",
+ "[['did,\"', 'said', 'Hank', 'Williams', 'Jr.,', '59,'], 'in', ['an', 'interview', 'at', 'his', 'customized', 'RV']]\n",
+ "[['acetate', 'discs,', 'the', '143', 'transcriptions', 'included'], 'in', ['\"The', 'Unreleased', 'Recordings\"', '--', 'the', 'first']]\n",
+ "[['music', 'was', 'rescued', 'from', 'a', 'Dumpster'], 'in', ['the', 'late', '1980s', 'by', 'an', 'employee']]\n",
+ "[['sponsored', 'by', \"Mother's\", 'Best', 'Flour', 'Company,'], 'in', ['1951.', 'The', 'decision', 'about', 'what', 'should']]\n",
+ "[['We', 'hear', 'him', 'not', 'only', 'exulting'], 'in', ['the', 'pleasures', 'of', 'making', 'music,', 'but']]\n",
+ "[['of', 'the', 'Grand', 'Ole', 'Opry', 'Museum'], 'in', ['Nashville.', '\"This', \"isn't\", 'the', 'tortured,', 'tragic']]\n",
+ "[['the', 'tortured,', 'tragic', 'genius', 'who', 'died'], 'in', ['the', 'back', 'seat', 'of', 'a', 'Cadillac.']]\n",
+ "[['Williams', 'had', 'just', 'reached', 'new', 'heights'], 'in', ['popularity,', 'including', 'appearances', 'on', 'national', 'television']]\n",
+ "[['touring', 'Hadacol', 'Caravan.', 'Nevertheless,', 'the', 'eagerness'], 'in', ['his', 'voice', 'at', 'the', 'prospect', 'of']]\n",
+ "[['Hoover,', 'who', 'today', 'works', 'part', 'time'], 'in', ['a', 'beauty', 'shop,', 'spoke', 'from', 'the']]\n",
+ "[['from', 'the', 'patio', 'of', 'her', 'home'], 'in', ['rural', 'Bon', 'Aqua,', 'Tenn.,', 'about', '40']]\n",
+ "[['stepfather', 'when', 'representatives', 'of', 'the', 'museum'], 'in', ['Nashville', 'contacted', 'her', 'about', 'the', 'project.']]\n",
+ "[['as', 'a', 'businesswoman.', 'Audrey', 'married', 'Hank'], 'in', ['1944,', 'at', 'a', 'gas', 'station', 'near']]\n",
+ "[['Ala.', 'After', 'playing', 'a', 'critical', 'role'], 'in', ['helping', 'her', 'husband', 'start', 'his', 'career,']]\n",
+ "[['the', 'importance', 'of', 'putting', \"Audrey's\", 'accomplishments'], 'in', ['historical', 'context.', '\"She', 'was', 'a', 'single']]\n",
+ "[['context.', '\"She', 'was', 'a', 'single', 'mom'], 'in', ['the', 'mid-\\'50s,\"', 'Tate', 'said.', '\"She', 'was']]\n",
+ "[['her', 'business', 'acumen,', 'Audrey', 'died', 'bankrupt,'], 'in', ['1975,', 'after', 'years', 'of', 'struggling', 'with']]\n",
+ "[['too.\"', 'Audrey', 'and', 'Hank', 'Williams', 'divorced'], 'in', ['July', '1952,', 'less', 'than', 'six', 'months']]\n",
+ "[['The', 'exhibition', 'also', 'plots', 'lesser-known', 'points'], 'in', ['the', 'trajectory', 'of', 'Hank', \"Jr.'s\", 'career.']]\n",
+ "[['and', 'vocal', 'resemblance.', '\"I\\'m', 'almost', 'following'], 'in', ['the', 'same', 'footsteps', 'as', 'my', 'dad,']]\n",
+ "[['just', 'different.\"', 'The', 'most', 'emblematic', 'items'], 'in', ['the', 'exhibition', 'from', 'Hank', \"III's\", 'career']]\n",
+ "[['performances.', 'Cropping', 'up', 'again', 'and', 'again'], 'in', ['the', 'exhibition', 'is', 'the', 'struggle', 'of']]\n",
+ "[['a', 'photo', 'from', 'the', 'late', \"'50s\"], 'in', ['which', 'Hoover', 'and', 'her', 'brother', 'and']]\n",
+ "[['her', 'brother', 'and', 'mother', 'are', 'playing'], 'in', ['the', 'snow', 'in', 'front', 'of', 'their']]\n",
+ "[['mother', 'are', 'playing', 'in', 'the', 'snow'], 'in', ['front', 'of', 'their', 'ranch-style', 'home', 'in']]\n",
+ "[['in', 'front', 'of', 'their', 'ranch-style', 'home'], 'in', ['Nashville.', '\"People', \"don't\", 'understand', 'that', 'part']]\n",
+ "[['Jr.', 'said,', 'referring', 'to', 'the', 'scene'], 'in', ['the', 'photo.', '\"It\\'s', 'real', 'normal,', 'yeah,']]\n",
+ "[['Perhaps', 'nothing', 'short', 'of', \"Craig's\", 'materializing'], 'in', ['his', 'snug', 'powder-blue', 'bathing', 'trunks', 'from']]\n",
+ "[['that', 'anticipation.', 'But', 'there', 'he', 'was'], 'in', ['jeans,', 'his', 'arm', 'in', 'a', 'sling']]\n",
+ "[['he', 'was', 'in', 'jeans,', 'his', 'arm'], 'in', ['a', 'sling', 'from', 'recent', 'shoulder', 'surgery.']]\n",
+ "[['was,', 'of', 'course,', 'unfairly', 'attractive', 'anyway,'], 'in', ['his', 'craggy,', 'lived-in,', 'blue-eyed', 'way,', 'but']]\n",
+ "[['up', 'when', 'his', \"publicist's\", 'assistant', 'brought'], 'in', ['a', 'cup', 'of', 'tea.', 'He', 'apologized']]\n",
+ "[['as', 'if', 'he', 'were', 'not', 'sitting'], 'in', ['a', 'soulless', 'conference', 'room,', 'which', 'he']]\n",
+ "[['posters', 'of', 'himself', 'as', 'James', 'Bond'], 'in', ['his', \"publicist's\", 'office', 'here,', 'he', 'grimaced']]\n",
+ "[['then,', '\"There\\'s', 'not', 'a', 'skin-care', 'product'], 'in', ['the', 'world', 'that', 'would', 'have', 'made']]\n",
+ "[['a', 'sharp-lapeled', 'pornography', 'baron', 'from', 'Manchester'], 'in', ['the', 'BBC', 'miniseries', '\"Our', 'Friends', 'in']]\n",
+ "[['in', 'the', 'BBC', 'miniseries', '\"Our', 'Friends'], 'in', ['the', 'North\";', 'a', 'college', 'professor', 'pursued']]\n",
+ "[['professor', 'pursued', 'by', 'a', 'male', 'stalker'], 'in', ['\"Enduring', 'Love\";', 'a', 'builder', 'sleeping', 'with']]\n",
+ "[['sleeping', 'with', 'his', \"girlfriend's\", 'sexagenarian', 'mother'], 'in', ['\"The', 'Mother\";', 'a', 'drug-dealing', 'businessman', 'in']]\n",
+ "[['in', '\"The', 'Mother\";', 'a', 'drug-dealing', 'businessman'], 'in', ['\"Layer', 'Cake\";', 'a', 'killer', 'full', 'of']]\n",
+ "[['of', 'murderous', 'rage', 'and', 'heartbreaking', 'tenderness'], 'in', ['\"Infamous\";', 'and', 'the', 'poet', 'Ted', 'Hughes']]\n",
+ "[['\"Infamous\";', 'and', 'the', 'poet', 'Ted', 'Hughes'], 'in', ['\"Sylvia.\"', '\"Everybody', 'said,', \"'Oh,\", \"aren't\", 'you']]\n",
+ "[['writers', 'possibly', 'had', 'not', 'seen', 'Craig'], 'in', ['his', 'other', 'films,', 'sniped', 'that', 'he']]\n",
+ "[['Martin.', 'But', 'from', 'the', 'first', 'scene'], 'in', ['\"Casino', 'Royale\"', '(2006),', 'in', 'which', 'Bond']]\n",
+ "[['first', 'scene', 'in', '\"Casino', 'Royale\"', '(2006),'], 'in', ['which', 'Bond', 'brutally', 'kills', 'a', 'man']]\n",
+ "[['Royal', 'Navy', 'commando,', 'said', 'recently', '--'], 'in', ['this', 'film', 'he', 'focused', 'on', 'building']]\n",
+ "[['over', 'brawn.', '(Craig', 'was', 'recently', 'quoted'], 'in', ['The', 'Times', 'of', 'London', 'as', 'saying,']]\n",
+ "[['you', \"can't\", 'have', 'a', 'character', 'fall'], 'in', ['love', 'so', 'madly', 'as', 'they', 'did']]\n",
+ "[['love', 'so', 'madly', 'as', 'they', 'did'], 'in', ['the', 'last', 'movie', 'and', 'not', 'finish']]\n",
+ "[['Marc', 'Forster,', 'set', 'out', 'to', 'fill'], 'in', ['the', 'gaps', 'in', 'the', 'script,', 'left']]\n",
+ "[['out', 'to', 'fill', 'in', 'the', 'gaps'], 'in', ['the', 'script,', 'left', 'incomplete', 'because', 'of']]\n",
+ "[['\"Quantum,\"', 'Craig', 'is', 'appearing', 'this', 'fall'], 'in', ['\"Defiance\"', '(set', 'to', 'open', 'Dec.', '31),']]\n",
+ "[['a', 'trio', 'of', 'freedom-fighting', 'Jewish', 'brothers'], 'in', ['World', 'War', 'II.', 'Defying', 'the', 'Nazis']]\n",
+ "[['unlikely', 'community', 'of', 'tough,', 'armed', 'refugees'], 'in', ['the', 'punishing', 'Belarussian', 'forest.', 'Craig', 'plays']]\n",
+ "[['The', 'actors', 'had', 'to', 'speak', 'Russian'], 'in', ['a', 'number', 'of', 'scenes;', 'they', 'also']]\n",
+ "[['had', 'to', 'live', 'more', 'or', 'less'], 'in', ['the', 'woods,', 'in', 'sometimes', 'extreme', 'frigid']]\n",
+ "[['more', 'or', 'less', 'in', 'the', 'woods,'], 'in', ['sometimes', 'extreme', 'frigid', 'conditions,', 'for', 'three']]\n",
+ "[['all', 'its', 'ambivalence', 'and', 'inner', 'conflict,'], 'in', ['tandem', 'with', 'playing', 'the', 'self-assured', 'Bond.']]\n",
+ "[['be', 'just', 'one', 'thing,\"', 'Zwick', 'said'], 'in', ['a', 'telephone', 'interview.', '\"What', 'you', 'have']]\n",
+ "[['who', 'considers', 'himself', 'that.', 'He', 'began'], 'in', ['the', 'theater', 'and', 'did', 'all', 'sorts']]\n",
+ "[['all', 'sorts', 'of', 'ensemble', 'work,', 'and'], 'in', ['some', 'ways', 'this', 'was', 'a', 'territory']]\n",
+ "[['some', 'ways', 'this', 'was', 'a', 'territory'], 'in', ['which', \"he's\", 'more', 'comfortable', 'than', 'in']]\n",
+ "[['in', 'which', \"he's\", 'more', 'comfortable', 'than'], 'in', ['being', 'the', 'star', \"who's\", 'out', 'in']]\n",
+ "[['in', 'being', 'the', 'star', \"who's\", 'out'], 'in', ['front', 'of', 'the', 'movie.\"', 'Craig', 'grew']]\n",
+ "[['of', 'the', 'movie.\"', 'Craig', 'grew', 'up'], 'in', ['Liverpool', 'and', 'spent', 'much', 'of', 'his']]\n",
+ "[['time', 'watching', 'movies,', 'sometimes', 'by', 'himself,'], 'in', ['a', 'small', 'cinema', 'down', 'the', 'street']]\n",
+ "[['seek', 'his', 'fortune', 'as', 'an', 'actor'], 'in', ['London.', 'He', 'worked', 'with', 'the', 'National']]\n",
+ "[['fortunate', 'to', 'land', 'this', 'amazing', 'role'], 'in', ['a', 'huge', 'franchise,\"', 'he', 'said.', '\"It\\'s']]\n",
+ "[['he', 'said.', '\"It\\'s', 'set', 'me', 'up'], 'in', ['a', 'really', 'good', 'way', 'for', 'life,']]\n",
+ "[['early', 'marriage,', 'genuinely', 'seems', 'more', 'interested'], 'in', ['talking', 'about', 'other', 'topics', '--', 'the']]\n",
+ "[['he', 'likes', '--', 'than', 'he', 'does'], 'in', ['talking', 'about', 'himself.', 'But', 'he', 'mentioned']]\n",
+ "[['Satsuki', 'Mitchell,', 'with', 'whom', 'he', 'lives'], 'in', ['Los', 'Angeles', 'and', 'London.', 'He', 'wears']]\n",
+ "[['not', 'long', 'ago', 'from', 'his', 'home'], 'in', ['London.', 'But', 'he', 'chose', 'something', 'even']]\n",
+ "[['has', 'any', 'sort', 'of', 'filmic', 'life'], 'in', ['it', 'whatsoever.\"', 'That', 'was', 'then.', 'Now,']]\n",
+ "[['to', 'open', 'on', 'Dec.', '5,', 'right'], 'in', ['time', 'for', 'the', 'Hollywood', 'awards', 'season.']]\n",
+ "[['still', 'exerted', 'on', 'the', 'public', 'imagination'], 'in', ['1977,', 'when', 'David', 'Frost', 'paid', 'him']]\n",
+ "[['him', '($1', 'million,', 'ultimately)', 'to', 'sit'], 'in', ['front', 'of', 'a', 'television', 'camera', 'and']]\n",
+ "[['the', 'reasons', 'behind', 'his', 'ignominious', 'resignation'], 'in', ['1974.', 'With', 'a', 'cobbled-together', 'production', 'team,']]\n",
+ "[['resounding', 'success', 'of', '\"Frost/Nixon\"', 'was', 'due'], 'in', ['part', 'to', 'its', 'implicit', 'analogy', 'between']]\n",
+ "[['all', 'the', 'people', 'I', 'most', 'admire'], 'in', ['the', 'world', 'seem', 'to', 'be', 'interested.']]\n",
+ "[['by', 'David', 'Frost', 'and', 'Richard', 'Nixon'], 'in', ['1977?\"\\'', 'he', 'noted,', '\"they', 'just', 'walk']]\n",
+ "[['had', 'so', 'memorably', 'played', 'Tony', 'Blair'], 'in', ['\"The', 'Queen.\"', 'And,', 'Howard', 'said,', 'there']]\n",
+ "[['there', 'had', 'never', 'been', 'any', 'doubt'], 'in', ['his', 'own', 'mind', 'that', 'Langella', '\"would']]\n",
+ "[['doing', 'the', 'role', 'would', 'be', 'walking'], 'in', [\"Frank's\", 'shadow.\"', 'But', 'there', 'were', 'other']]\n",
+ "[['the', 'interviews', 'themselves,', 'that', 'developed', 'largely'], 'in', ['a', 'single', 'room.', 'And', 'the', \"story's\"]]\n",
+ "[['came', 'with', 'the', 'two', 'antagonists', 'immobilized'], 'in', ['matching', 'easy', 'chairs.', 'Howard', 'was', 'not']]\n",
+ "[['tight', 'quarters', 'and', 'the', 'intensity,', 'particularly'], 'in', ['the', 'second', 'half,', 'are', 'a', 'huge']]\n",
+ "[['through', 'the', 'reaction', 'of', 'the', 'people'], 'in', ['the', 'corners.\"', 'To', 'inhabit', 'those', 'corners,']]\n",
+ "[['to', 'become', 'his', 'chief', 'of', 'staff'], 'in', ['California.', 'On', 'the', 'opposing', 'side', 'are']]\n",
+ "[['the', 'memories', 'of', 'the', 'actual', 'players'], 'in', ['the', 'drama.', 'Frost,', 'whose', 'current', 'interview']]\n",
+ "[['did', 'our', 'homework.', \"There's\", 'a', 'picture'], 'in', ['my', 'office', 'of', 'our', 'briefing', 'books']]\n",
+ "[[\"Morgan's\", 'most', 'fanciful', 'invention,', 'the', 'scene'], 'in', ['which', 'a', 'drunken', 'Nixon', 'calls', 'Frost']]\n",
+ "[['which', 'a', 'drunken', 'Nixon', 'calls', 'Frost'], 'in', ['the', 'middle', 'of', 'the', 'night', 'and']]\n",
+ "[['\"These', 'were', 'all', 'people', 'that', 'were'], 'in', ['the', 'room', 'at', 'the', 'same', 'time,\"']]\n",
+ "[['can', 'have.', 'You', 'could', 'fall', 'helplessly'], 'in', ['love', 'with', 'a', 'vampire,', 'which', 'is']]\n",
+ "[['kill', 'myself.\"', \"There's\", 'no', 'denying', 'that'], 'in', ['the', 'case', 'of', '\"Twilight\"', 'the', 'stakes']]\n",
+ "[['speak)', 'are', 'high.', 'The', 'four', 'novels'], 'in', [\"Meyer's\", 'horror/romance', 'series', 'for', 'young', 'adults']]\n",
+ "[['1.3', 'million', 'on', 'its', 'first', 'day'], 'in', ['bookstores', 'in', 'August.', 'And', 'fans', 'are']]\n",
+ "[['on', 'its', 'first', 'day', 'in', 'bookstores'], 'in', ['August.', 'And', 'fans', 'are', 'on', 'the']]\n",
+ "[['own', 'trailers', 'and', 'posters.', \"It's\", 'stimulating,'], 'in', ['a', 'way.\"', 'A', 'particular', 'hazard', 'with']]\n",
+ "[['rein', 'on', 'his', 'impulses,', 'which', 'include,'], 'in', ['addition', 'to', 'the', 'usual', 'ones,', 'a']]\n",
+ "[['know,', 'feel', 'about', 'this', 'unnerving', 'kink'], 'in', ['his', 'personality,', 'but', 'soon', 'decides', 'that']]\n",
+ "[['their', 'fatal', 'attraction', 'stays', '(at', 'least'], 'in', ['the', 'first', 'novel)', 'unconsummated.', 'Meyer', 'goes']]\n",
+ "[['out', 'there', 'for', 'every', 'shy', 'Bella'], 'in', ['the', 'world.', 'The', 'perennially', 'overcast', 'weather']]\n",
+ "[['he', 'was', 'raised,', 'as', 'it', 'happens,'], 'in', ['a', 'family', 'of', '\"good\"', 'vampires,', 'who']]\n",
+ "[['eschew', 'the', 'consumption', 'of', 'human', 'blood'], 'in', ['favor', 'of', 'the', 'nourishing', '(though', 'less']]\n",
+ "[['the', 'way,', 'and', 'Edward,', 'less', 'grounded'], 'in', ['reality,', 'is', 'a', 'fantasy', 'incarnation', 'of']]\n",
+ "[['at', 'that', 'age,', 'even', 'when', \"you're\"], 'in', ['college.\"', 'But', 'Langan,', 'who', 'considers', '\"Twilight\"']]\n",
+ "[['paragon', 'of', 'masculine', 'self-control', 'is', 'not,'], 'in', ['fact,', 'human', 'and', 'drinks', 'blood.', 'Over']]\n",
+ "[['a', 'fair', 'number', 'of', 'youthful', 'vampires'], 'in', ['film', 'and', 'fiction,', 'and', 'some', 'have']]\n",
+ "[['romantic', 'ideal.', 'But', 'the', 'young', 'lovers'], 'in', ['Kathryn', \"Bigelow's\", 'superb', '1987', 'film,', '\"Near']]\n",
+ "[['are', 'many', 'of', 'the', 'teenage', 'bloodsuckers'], 'in', ['the', 'lame', '\"Lost', 'Boys\"', '(1987),', 'a']]\n",
+ "[['There', 'is', 'a', 'broodingly', 'handsome', 'vampire'], 'in', ['the', 'lurid', 'new', 'HBO', 'series,', '\"True']]\n",
+ "[['way', 'to', 'approach', 'this', 'strange', 'turn'], 'in', ['pop', 'culture,', 'because', 'it', 'looks', 'as']]\n",
+ "[['is', 'appropriately', 'ominous.', 'Describing', 'the', 'shoot'], 'in', ['Washington,', 'Hardwicke', 'said', 'the', 'weather', 'was']]\n",
+ "[['(2005),', 'while', \"Rosenberg's\", 'background', 'is', 'mostly'], 'in', ['television,', 'as', 'a', 'writer', 'and', 'producer']]\n",
+ "[['but', 'which,', 'she', 'said,', 'has', 'something'], 'in', ['common', 'with', '\"Twilight\"', 'nonetheless:', \"it's\", 'about']]\n",
+ "[['oddly', 'timeless', 'atmosphere', 'of', 'the', 'book,'], 'in', ['which', 'e-mail', 'notes', 'are', 'sometimes', 'sent']]\n",
+ "[['culture', 'and', 'idioms,\"', 'Rosenberg', 'said,', '\"but'], 'in', [\"'Twilight'\", 'some', 'of', 'that', 'feels', 'incongruous.']]\n",
+ "[['rarely', 'be', 'heard', 'with', 'any', 'clarity'], 'in', ['a', 'fantasy', 'universe', 'of', 'perpetual', 'neither-here-nor-thereness.']]\n",
+ "[['it.', 'New', 'laptops', 'that', 'boot', 'up'], 'in', ['30', 'seconds?', 'Too', 'slow', 'for', 'me.']]\n",
+ "[['want', 'is', 'a', 'machine', \"that's\", 'ready'], 'in', ['about', 'a', 'second,', 'just', 'like', 'my']]\n",
+ "[['When', 'the', 'entire', 'globe', 'is', 'engulfed'], 'in', ['an', 'economic', 'crisis,', 'measuring', 'the', 'seconds']]\n",
+ "[['by', 'many', 'computer', 'users,', 'as', 'reflected'], 'in', ['much', 'online', 'discussion', 'of', 'the', 'issue.']]\n",
+ "[['Rather,', 'it', 'reflects', 'an', 'important', 'shift'], 'in', ['computing,', 'as', 'we', 'increasingly', 'rely', 'on']]\n",
+ "[['(suspend-to-disk),', 'but', 'from', 'standby', 'mode', '(suspend-to-RAM),'], 'in', ['which', 'the', 'last', 'session', 'is', 'stored']]\n",
+ "[['which', 'the', 'last', 'session', 'is', 'stored'], 'in', ['memory.', 'Network', 'connections', 'are', 'lost,', 'however,']]\n",
+ "[['lost,', 'however,', 'and', 'holding', 'the', 'data'], 'in', ['memory', 'drains', 'the', 'battery.', 'One', 'manufacturer']]\n",
+ "[['create', 'the', 'category', 'is', 'Asus,', 'based'], 'in', ['Taiwan.', 'To', 'achieve', 'faster', 'boot', 'times,']]\n",
+ "[['that', 'it', 'says', 'can', 'boot', 'up'], 'in', ['as', 'few', 'as', 'eight', 'seconds,', 'depending']]\n",
+ "[['a', 'test', 'drive.', 'I', 'found', 'that,'], 'in', ['Express', 'Gate', 'mode,', 'it', 'took', 'only']]\n",
+ "[['versions', 'of', 'Linux', 'that', 'boot', 'up'], 'in', ['only', 'five', 'seconds,', 'instead', 'of', 'the']]\n",
+ "[['feat', 'at', 'the', 'Linux', 'Plumbers', 'Conference'], 'in', ['September', 'with', 'an', 'Asus', 'Eee', 'PC']]\n",
+ "[['A', 'Dell', 'spokesman', 'said', 'the', 'laptops'], 'in', ['the', 'laboratory', 'were', 'getting', '\"almost', 'four']]\n",
+ "[['will', 'go', 'dark,', 'but', \"it's\", 'not'], 'in', ['standby', 'mode', '--', \"it's\", 'in', 'a']]\n",
+ "[['not', 'in', 'standby', 'mode', '--', \"it's\"], 'in', ['a', '\"low-power', 'state,\"', 'as', 'Dell', 'terms']]\n",
+ "[['networks,', 'while', 'it', 'continuously', 'loads', 'e-mail'], 'in', ['the', 'background.', 'With', 'a', 'touch,', 'the']]\n",
+ "[['a', 'touch,', 'the', 'screen', 'lights', 'up'], 'in', ['1', 'to', '2', 'seconds,', 'Dell', 'says,']]\n",
+ "[['They', 'are', 'the', 'only', 'animal', 'species'], 'in', ['which', 'the', 'male', 'gives', 'birth', 'to']]\n",
+ "[['her', 'eggs.', 'The', 'eggs', 'then', 'hatch'], 'in', ['the', \"father's\", 'pouch,', 'where', 'the', 'young']]\n",
+ "[['brother.', 'When', 'we', 'were', '5,', 'living'], 'in', ['a', 'small', 'apartment', 'in', 'Portland,', 'Ore.,']]\n",
+ "[['5,', 'living', 'in', 'a', 'small', 'apartment'], 'in', ['Portland,', 'Ore.,', 'my', 'mother', 'made', 'our']]\n",
+ "[['whenever', 'we', 'played', 'house,', 'babies', 'came'], 'in', ['twos.', 'Emma', 'jammed', 'her', 'thumbs', 'under']]\n",
+ "[['her', 'armpits', 'and', 'pumped', 'her', 'arms'], 'in', ['excited', 'flutters', 'before', 'crouching', 'gently', 'above']]\n",
+ "[['few', 'years', 'later', 'we', 'were', 'living'], 'in', ['an', 'apartment', 'complex', 'with', 'a', 'swimming']]\n",
+ "[['pool,', 'and', 'that', 'summer', 'we', 'lived'], 'in', ['our', 'swimsuits,', 'which', 'were', 'practically', 'worn']]\n",
+ "[['another', 'building', 'would', 'show', 'up,', 'towels'], 'in', ['hand,', 'interrupting', 'our', 'games', 'with', 'their']]\n",
+ "[['what', 'they', 'are?\"', '\"What?\"', '\"Baked', 'beans'], 'in', ['human', 'skin,\"', 'she', 'said,', 'her', 'cheeks']]\n",
+ "[['an', 'envy', 'of', 'boys', 'already', 'lurk'], 'in', [\"Emma's\", 'subconscious?', 'Was', 'her', 'mind', 'already']]\n",
+ "[['come:', 'How', 'would', 'Eli', 'be', 'viewed'], 'in', ['society?', 'How', 'would', 'he', 'raise', 'a']]\n",
+ "[['family?', \"Eli's\", 'gender', 'transition', 'has', 'occurred'], 'in', ['many', 'stages.', 'And', 'while', 'some', 'aspects']]\n",
+ "[['Some', 'transgender', 'men', 'have', 'hysterectomies', 'early'], 'in', ['their', 'transitions,', 'eliminating', 'all', 'reminders', 'of']]\n",
+ "[['such', 'surgery', 'is', 'necessary', 'or', 'defer'], 'in', ['the', 'hope', 'that', 'they', 'might', 'someday']]\n",
+ "[['bear', 'children', 'themselves.', 'Eli', 'has', 'confided'], 'in', ['me', 'his', 'reservations', 'about', 'sacrificing', 'this']]\n",
+ "[['only', 'for', 'women', '--', 'an', 'understanding,'], 'in', ['fact,', 'that', 'not', 'all', 'people', 'with']]\n",
+ "[['the', 'testosterone', 'now', 'so', 'that', 'maybe'], 'in', ['five', 'years', 'he', 'can', 'try', 'to']]\n",
+ "[['a', 'half', 'years', 'ago,', 'I', 'sat'], 'in', ['my', \"college's\", 'health', 'services', 'complex', 'awaiting']]\n",
+ "[['nurse', 'told', 'me', 'to', 'check', 'back'], 'in', ['a', 'week', 'if', 'my', 'period', \"didn't\"]]\n",
+ "[['the', 'same', 'time,', 'my', 'twin', 'sat'], 'in', ['the', 'waiting', 'room', 'of', 'the', 'Callen-Lorde']]\n",
+ "[['of', 'the', 'Callen-Lorde', 'Community', 'Health', 'Center'], 'in', ['Manhattan,', 'facing', 'the', 'decision', 'of', 'whether']]\n",
+ "[['ask', 'for', 'his', 'weekly', 'hormone', 'shot'], 'in', ['the', 'thigh', 'or', 'the', 'backside,', 'depending']]\n",
+ "[['give', 'it', 'up.', 'We', 'were', 'both'], 'in', ['awe', 'of', 'the', 'power', 'of', 'hormone']]\n",
+ "[['but', 'we', 'were', 'learning', 'a', 'lesson'], 'in', ['sacrifice.', 'A', 'year', 'after', 'my', 'pregnancy']]\n",
+ "[['found', 'myself', 'staring', 'at', 'an', 'advertisement'], 'in', ['a', 'public', 'bathroom', 'for', 'a', 'local']]\n",
+ "[['him', 'mine.', 'They', 'could', 'be', 'implanted'], 'in', ['a', 'female', 'partner', 'or', 'surrogate,', 'or,']]\n",
+ "[['a', 'female', 'partner', 'or', 'surrogate,', 'or,'], 'in', ['the', 'event', 'we', 'do', 'one', 'day']]\n",
+ "[['one', 'day', 'become', 'like', 'sea', 'horses,'], 'in', ['him.', \"There's\", 'something', 'reassuring', 'in', 'the']]\n",
+ "[['horses,', 'in', 'him.', \"There's\", 'something', 'reassuring'], 'in', ['the', 'possibility,', 'however', 'remote.', 'In', 'our']]\n",
+ "[['binary.', 'We', 'exclaim', 'over', 'gay', 'penguins'], 'in', ['the', 'Central', 'Park', 'Zoo.', 'We', 'note']]\n",
+ "[['Zoo.', 'We', 'note', 'patterns', 'of', 'grieving'], 'in', ['animals', 'from', 'geese', 'to', 'elephants', 'to']]\n",
+ "[['to', 'help', 'locate', 'our', 'own', 'mourning'], 'in', ['a', 'larger', 'continuum', 'of', 'emotional', 'response.']]\n",
+ "[['bowl', 'now', 'sits', 'on', 'a', 'table'], 'in', [\"Eli's\", 'room,', 'holding', 'his', 'syringes', 'and']]\n",
+ "[['Obama', 'takes', 'the', 'oath', 'of', 'office'], 'in', ['January,', 'he', 'may', 'have', 'a', 'shiny']]\n",
+ "[['was', 'ordered', 'for', 'William', 'Howard', 'Taft'], 'in', ['1909.', 'President', 'Taft', 'rode', 'in', 'a']]\n",
+ "[['Taft', 'in', '1909.', 'President', 'Taft', 'rode'], 'in', ['a', 'stock', 'White', 'steam', 'car', 'or']]\n",
+ "[['but', 'the', 'next', 'president', 'will', 'travel'], 'in', ['a', 'fortress-like', 'vehicle', 'that', 'was', 'mostly']]\n",
+ "[['ultra-armored', 'limousines', 'that', 'entered', 'presidential', 'service'], 'in', ['2001,', 'only', 'educated', 'guesses', 'can', 'be']]\n",
+ "[['vehicles', 'as', 'part', 'of', 'my', 'interest'], 'in', ['what', 'are', 'called', 'professional', 'cars,', 'which']]\n",
+ "[['what', 'was', 'used', 'on', 'presidential', 'limousines'], 'in', ['the', '1980s', 'and', \"'90s.\", 'While', 'I']]\n",
+ "[['footage', 'of', 'a', 'trip', 'to', 'Pakistan'], 'in', ['March', '2000,', 'it', 'appeared', 'as', 'though']]\n",
+ "[['disappear,', 'to', 'be', 'destroyed', 'or', 'used'], 'in', ['Secret', 'Service', 'training.', 'The', 'Department', 'of']]\n",
+ "[[\"agency's\", 'disposal', 'methods', 'have', 'been', 'detailed'], 'in', ['a', 'document', 'entitled', '\"Bureau', 'of', 'Diplomatic']]\n",
+ "[['same', 'spirit,', 'the', 'Clinton', 'Presidential', 'Library'], 'in', ['Little', 'Rock,', 'Ark.,', 'was', 'not', 'given']]\n",
+ "[['Christine', 'Mouw,', 'the', 'library', 'curator,', 'said'], 'in', ['an', 'interview.', '\"We\\'ve', 'had', 'requests', 'from']]\n",
+ "[['Ro80', 'featured', 'the', 'first', 'Wankel', 'engine'], 'in', ['a', 'mass-produced', 'car.', 'Potential', 'game-changers', 'in']]\n",
+ "[['in', 'a', 'mass-produced', 'car.', 'Potential', 'game-changers'], 'in', ['the', 'auto', 'industry', 'have', 'often', 'ended']]\n",
+ "[['Citroen', 'DS', 'can', 'be', 'found', 'only'], 'in', ['the', 'automotive', 'fossil', 'record.', 'Carmakers', 'have']]\n",
+ "[['innovate.', 'But', 'for', 'a', 'brief', 'time'], 'in', ['the', 'late', '1960s', 'and', 'early', '1970s,']]\n",
+ "[['if', 'real', 'innovation', 'was', 'taking', 'hold'], 'in', ['the', 'form', 'of', 'a', 'new', 'powerplant']]\n",
+ "[['a', 'rounded', 'triangular', '\"rotor\"', 'that', 'spun'], 'in', ['an', 'oval', 'combustion', 'chamber.', 'As', 'the']]\n",
+ "[['combustion', 'chamber.', 'As', 'the', 'rotor', 'moved'], 'in', ['its', 'eccentric', 'orbit', 'around', 'a', 'central']]\n",
+ "[['brisk.', 'Soon,', 'however,', 'NSU', 'was', 'dealing'], 'in', ['damage', 'control.', 'In', 'late', '1968,', 'the']]\n",
+ "[['In', 'neglecting', 'to', 'test', 'the', 'cars'], 'in', ['real-world', 'stop-and-start', 'driving', 'conditions,', 'NSU', 'snatched']]\n",
+ "[['NSU', 'eventually', 'merged', 'with', 'Volkswagen.', 'However,'], 'in', ['a', 'protracted', 'deal', 'involving', 'a', 'cast']]\n",
+ "[['Mazda', 'decided', 'that', 'its', 'future', 'lay'], 'in', ['differentiating', 'itself', 'from', 'Toyota', 'and', 'Nissan.']]\n",
+ "[['rotary-powered', 'Mazda', 'to', 'make', 'an', 'impact'], 'in', ['the', 'United', 'States', 'was', 'the', 'RX-2,']]\n",
+ "[['United', 'States', 'was', 'the', 'RX-2,', 'introduced'], 'in', ['1970.', 'The', 'RX-2', 'was', 'a', 'small']]\n",
+ "[['hired', 'for', 'its', 'Wankel', 'development', 'program'], 'in', ['1971.', 'In', 'a', 'recent', 'interview,', 'Batten']]\n",
+ "[['said.', 'Batten', 'reckons', 'that', 'the', 'advantages'], 'in', ['packaging', 'and', 'smoothness', \"weren't\", 'enough', 'to']]\n",
+ "[['also', 'planned', 'to', 'use', 'the', 'Wankel'], 'in', ['mainstream', 'cars.', 'Batten', 'recalls', 'that', 'as']]\n",
+ "[['Mercedes-Benz', 'expressed', 'an', 'interest,', 'teasing', 'enthusiasts'], 'in', ['1970', 'with', 'the', 'brilliant', 'C111-II', 'research']]\n",
+ "[['specialty', 'cars,', 'while', 'using', 'piston', 'engines'], 'in', ['the', 'rest', 'of', 'its', 'line.', \"Mazda's\"]]\n",
+ "[['pinnacle', 'with', 'the', 'Renesis', 'engine', 'introduced'], 'in', ['the', '2003', 'RX-8,', 'the', 'most', 'powerful,']]\n",
+ "[['Wankel', 'cars', 'seldom', 'appear', 'for', 'sale'], 'in', ['the', 'United', 'States.', 'The', 'Ro80', 'is']]\n",
+ "[['is', 'somewhat', 'popular', 'as', 'a', 'collectible'], 'in', ['Britain,', 'though', 'many', 'have', 'been', 'refitted']]\n",
+ "[['2007,', 'a', 'seller', 'at', 'an', 'auction'], 'in', ['Australia', 'turned', 'down', 'an', '$83,000', 'bid.']]\n",
+ "[['the', 'former', 'Federal', 'Reserve', 'chairman,', 'acknowledged'], 'in', ['a', 'congressional', 'hearing', 'last', 'month', 'that']]\n",
+ "[['that', 'he', 'had', 'made', 'an', '\"error\"'], 'in', ['assuming', 'that', 'the', 'markets', 'would', 'properly']]\n",
+ "[['no', 'idea', 'a', 'financial', 'disaster', 'was'], 'in', ['the', 'making.', \"What's\", 'more,', 'he', 'said']]\n",
+ "[['left', 'the', 'impression', 'that', 'no', 'one'], 'in', ['the', 'world', 'could', 'have', 'predicted', 'the']]\n",
+ "[['well', 'before', 'home', 'prices', 'started', 'falling'], 'in', ['2006,', 'lots', 'of', 'people', 'were', 'worried']]\n",
+ "[['I', 'clearly', 'remember', 'a', 'taxi', 'driver'], 'in', ['Miami', 'explaining', 'to', 'me', 'years', 'ago']]\n",
+ "[['there', 'would', 'surely', 'be', 'a', 'glut'], 'in', ['the', 'market', 'and,', 'eventually,', 'a', 'disaster.']]\n",
+ "[['if', 'they', 'cannot', 'express', 'these', 'doubts'], 'in', ['a', 'formal', 'way', 'that', 'conforms', 'with']]\n",
+ "[['predictions.', 'They', 'tended', 'to', 'be', 'technical'], 'in', ['nature,', 'did', 'not', 'offer', 'a', 'scenario']]\n",
+ "[['confidence,', 'and', 'tended', 'to', 'come', 'late'], 'in', ['the', 'housing', 'boom.', 'A', 'search', 'of']]\n",
+ "[['as', 'a', 'sign', 'that', 'we', 'are'], 'in', ['a', 'house-price', '\\'bubble.\"\\'', 'But', 'the', 'paper']]\n",
+ "[['against', 'such', 'a', 'strong', 'conclusion', 'and'], 'in', ['favor', 'of', 'further', 'research.\"', 'One', 'of']]\n",
+ "[['of', 'the', 'New', 'York', 'bank,', 'who,'], 'in', ['turn,', 'is', 'vice', 'chairman', 'of', 'the']]\n",
+ "[['the', 'bubbles', 'I', 'believed', 'were', 'developing'], 'in', ['the', 'stock', 'and', 'housing', 'markets,', 'I']]\n",
+ "[['caused', 'our', 'current', 'crisis.', 'In', '2005,'], 'in', ['the', 'second', 'edition', 'of', 'my', 'book']]\n",
+ "[['I', 'wrote', 'that', '\"significant', 'further', 'rises'], 'in', ['these', 'markets', 'could', 'lead,', 'eventually,', 'to']]\n",
+ "[['declines,\"', 'and', 'that', 'this', 'might', '\"result'], 'in', ['a', 'substantial', 'increase', 'in', 'the', 'rate']]\n",
+ "[['might', '\"result', 'in', 'a', 'substantial', 'increase'], 'in', ['the', 'rate', 'of', 'personal', 'bankruptcies,', 'which']]\n",
+ "[['and', 'said', 'that', 'this', 'could', 'result'], 'in', ['\"another,', 'possibly', 'worldwide,', 'recession.\"', 'I', 'distinctly']]\n",
+ "[['such', 'criticism', 'came.', 'I', 'gave', 'talks'], 'in', ['2005', 'at', 'both', 'the', 'Office', 'of']]\n",
+ "[['at', 'the', 'Federal', 'Deposit', 'Insurance', 'Corp.,'], 'in', ['which', 'I', 'argued', 'that', 'we', 'were']]\n",
+ "[['which', 'I', 'argued', 'that', 'we', 'were'], 'in', ['the', 'middle', 'of', 'a', 'dangerous', 'housing']]\n",
+ "[['from', 'fellow', 'behavioral', 'economists', 'was', 'important'], 'in', ['my', 'daring', 'to', 'talk', 'about', 'speculative']]\n",
+ "[['about', 'investment', 'prospects.', 'I', 'find', 'that'], 'in', ['casual', 'conversation,', 'many', 'of', 'my', 'mainstream']]\n",
+ "[['of', 'economics.', 'Economists', \"aren't\", 'generally', 'trained'], 'in', ['psychology,', 'and', 'so', 'want', 'to', 'divert']]\n",
+ "[['that', 'people', 'are', 'making', 'huge', 'errors'], 'in', ['judgment', 'is', 'not', 'appealing.', 'In', 'addition,']]\n",
+ "[['for', 'the', 'National', 'Retail', 'Federation,', 'said'], 'in', ['a', 'statement', 'last', 'month.', 'To', 'meet']]\n",
+ "[['wholesale-retail', 'sector', 'to', 'be', 'the', 'weakest'], 'in', ['17', 'years.', 'At', 'a', 'time', 'when']]\n",
+ "[['work', 'force', 'can', 'be', 'made', 'later'], 'in', ['the', 'season,\"', 'he', 'said.', '\"Even', 'in']]\n",
+ "[['in', 'the', 'season,\"', 'he', 'said.', '\"Even'], 'in', ['dining,', 'hotels', 'and', 'call', 'centers,', 'they']]\n",
+ "[['surveys', 'done', 'by', 'the', 'company,', 'managers'], 'in', ['general', 'are', 'planning', 'to', 'hire', 'fewer']]\n",
+ "[['additional', 'hours.', '\"More', 'people', 'are', 'interested'], 'in', ['doing', 'overtime', 'this', 'year,', 'so', 'businesses']]\n",
+ "[['year,', 'so', 'businesses', 'are', 'waiting', 'later'], 'in', ['the', 'season', 'to', 'hire,\"', 'Boyer', 'said.']]\n",
+ "[['at', 'the', 'Container', 'Store,', 'said', 'locations'], 'in', ['Manhattan;', 'White', 'Plains,', 'N.Y.;', 'and', 'Paramus,']]\n",
+ "[['year,', 'partly', 'because', 'people', 'who', 'live'], 'in', ['smaller', 'spaces', 'need', 'more', 'storage', 'capacity.']]\n",
+ "[['need', 'more', 'storage', 'capacity.', 'But', 'stores'], 'in', ['other', 'parts', 'of', 'the', 'country', 'with']]\n",
+ "[['have', '13.\"', 'Emmanuel', 'Tam,', 'who', 'lives'], 'in', ['New', \"York's\", 'Harlem', 'neighborhood', 'and', 'was']]\n",
+ "[['job', 'as', 'a', 'media', 'literacy', 'instructor'], 'in', ['the', 'Bronx,', 'says', 'that', 'there', 'is']]\n",
+ "[['go', 'out', 'every', 'day', 'and', 'put'], 'in', ['applications.\"', 'Although', 'Tam', 'expected', 'a', 'competitive']]\n",
+ "[['same', 'pool', 'of', 'workers', 'they', 'used'], 'in', ['previous', 'holiday', 'seasons,', 'but', 'new', 'job']]\n",
+ "[['one', 'language,', 'for', 'example,', 'or', 'experience'], 'in', ['customer', 'service,', 'said', 'Rosaleena', 'Marcellus,', 'vice']]\n",
+ "[['Lead,', 'a', 'management', 'consulting', 'firm', 'based'], 'in', ['Cincinnati.', 'Applicants', 'may', 'also', 'need', 'to']]\n",
+ "[['flexible', 'about', 'scheduling', 'than', 'they', 'were'], 'in', ['previous', 'years.', '\"You', 'need', 'to', 'have']]\n",
+ "[['the', 'human', 'resources', 'firm', 'Aon', 'Consulting'], 'in', ['Chicago', 'who', 'works', 'with', 'retailers', 'on']]\n",
+ "[['selection.', '\"You', \"don't\", 'want', 'to', 'go'], 'in', ['with', 'a', 'really', 'complex', 'schedule,', 'because']]\n",
+ "[['their', 'bets', 'by', 'applying', 'for', 'jobs'], 'in', ['a', 'variety', 'of', 'environments', 'and', 'industries']]\n",
+ "[['percent,', 'according', 'to', 'a', 'report', 'released'], 'in', ['October', 'by', 'Forrester,', 'the', 'technology', 'research']]\n",
+ "[['retailing,', 'said:', '\"This', 'is', 'one', 'sector'], 'in', ['retail', 'that', 'should', 'be', 'looking', 'for']]\n",
+ "[['for', 'workers.', 'DialAmerica,', 'a', 'teleservices', 'company'], 'in', ['Mahwah,', 'N.J.,', 'expects', 'its', 'business', 'to']]\n",
+ "[['this', 'quarter.', 'The', \"company's\", 'clients', 'are'], 'in', ['a', 'variety', 'of', 'industries,', 'but', 'about']]\n",
+ "[['returns?', 'If', 'you', 'happen', 'to', 'be'], 'in', ['Alaska,', 'know', 'that', 'the', 'doors', 'of']]\n",
+ "[['for', 'food,', 'beer,', 'wine', 'and', '--'], 'in', ['between', 'updates', 'on', 'giant', 'televisions', '--']]\n",
+ "[['\"victory', 'celebration.\"', 'At', 'the', 'same', 'hour'], 'in', ['Washington', '--', '7', 'p.m.,', 'East', 'Coast']]\n",
+ "[['Obama,', 'if', \"there's\", 'a', 'donkey', 'braying'], 'in', ['the', 'land,', 'that', 'would', 'be', 'Eeyore.']]\n",
+ "[['high,\"', 'he', 'said.', '\"We', 'think', \"it's\"], 'in', ['the', 'best', 'interest', 'to', 'be', 'with']]\n",
+ "[['does', 'so.', '\"I', 'cannot', 'take', 'comfort'], 'in', ['the', 'polls,\"', 'said', 'Waldman,', 'who,', 'with']]\n",
+ "[['gather', 'with', 'Obama', 'supporters', 'that', 'evening'], 'in', ['Grant', 'Park.', 'Referring', 'to', 'the', 'tight']]\n",
+ "[['Park.', 'Referring', 'to', 'the', 'tight', 'races'], 'in', ['2000', 'and', '2004,', 'she', 'said:', '\"It\\'s']]\n",
+ "[['a', 'million', 'times', 'burned.', \"I'll\", 'be'], 'in', ['Chicago', 'because', 'I', 'either', 'want', 'to']]\n",
+ "[['money-raising', 'cookies', 'and', 'knocked', 'on', 'doors'], 'in', ['Pennsylvania', 'for', 'Obama.', '\"Our', 'kids', 'need']]\n",
+ "[['of', 'organizers', 'of', 'Tuesday', \"night's\", 'events'], 'in', ['Wasilla', 'and', 'Washington', 'seemed', 'unassailable.', 'Perhaps']]\n",
+ "[[\"one's\", 'glass', 'at', 'an', 'event', '--'], 'in', ['shapes', 'like', 'lipstick', 'and', 'high-heeled', 'shoes.']]\n",
+ "[['of', 'the', 'Congressional', 'Black', 'Caucus,', 'sees'], 'in', ['Obama', 'the', 'fulfillment', 'of', 'a', 'dream']]\n",
+ "[['guest', 'lists.', 'The', 'marquee', 'bipartisan', 'party'], 'in', ['New', 'York', 'is', 'likely', 'to', 'be']]\n",
+ "[['and', 'Jim', 'Nelson', '(Democrat),', 'the', 'editors'], 'in', ['chief,', 'respectively,', 'of', 'Glamour', 'and', 'GQ.']]\n",
+ "[['risk', '--', 'by', 'parking', 'your', 'portfolio'], 'in', ['the', 'safety', 'of', 'cash', 'during', 'times']]\n",
+ "[['--', 'rise', 'significantly,', 'and', 'to', 'stay'], 'in', ['cash', 'until', 'they', 'come', 'back', 'down.']]\n",
+ "[['produce', 'the', 'bulk', 'of', 'its', 'gains'], 'in', ['just', 'a', 'few', 'explosive', 'sessions.', 'Miss']]\n",
+ "[['Consider', 'someone', 'who', 'was', 'fully', 'invested'], 'in', ['stocks', 'over', 'the', 'last', 'decade', '--']]\n",
+ "[['the', \"market's\", 'declines', 'are', 'also', 'concentrated'], 'in', ['just', 'a', 'few', 'sessions.', 'For', 'example,']]\n",
+ "[['For', 'example,', 'a', 'portfolio', 'fully', 'invested'], 'in', ['stocks', 'during', 'all', 'but', 'the', '20']]\n",
+ "[['much', 'less', 'risk.', 'This', 'rough', 'equivalence'], 'in', ['returns', 'has', 'prevailed', 'in', 'recent', 'years.']]\n",
+ "[['rough', 'equivalence', 'in', 'returns', 'has', 'prevailed'], 'in', ['recent', 'years.', 'Over', 'the', 'last', 'decade,']]\n",
+ "[['the', 'periods', 'of', 'greatest', 'volatility', 'are'], 'in', ['large', 'part', 'predictable.', 'This', 'means', 'that']]\n",
+ "[['University', 'who', 'was', 'the', 'Nobel', 'laureate'], 'in', ['economics', 'in', '2003', 'for', 'his', 'work']]\n",
+ "[['was', 'the', 'Nobel', 'laureate', 'in', 'economics'], 'in', ['2003', 'for', 'his', 'work', 'along', 'these']]\n",
+ "[['what', 'was', 'then', 'its', 'highest', 'level'], 'in', ['five', 'years,', 'greatly', 'increasing', 'the', 'likelihood']]\n",
+ "[['losses', 'of', 'the', 'last', 'decade', 'occurred'], 'in', ['the', 'subsequent', 'six', 'weeks,', 'along', 'with']]\n",
+ "[['shorter-term', 'gyrations,', 'and', 'therefore', \"aren't\", 'interested'], 'in', ['market-timing', 'approaches', 'whose', 'major', 'benefit', 'is']]\n",
+ "[['five', 'core', 'values', 'to', 'entrench', 'innovation'], 'in', ['the', 'corporate', 'mind-set:', 'questioning,', 'risk-taking,', 'openness,']]\n",
+ "[['urges', 'setting', 'aside', 'certain', 'efficiency', 'measures'], 'in', ['favor', 'of', 'what', 'she', 'calls', '\"green-thumb']]\n",
+ "[['off.', '\"Innovation', 'has', 'to', 'be', 'embedded'], 'in', ['the', 'daily', 'operation,', 'in', 'the', 'entire']]\n",
+ "[['be', 'embedded', 'in', 'the', 'daily', 'operation,'], 'in', ['the', 'entire', 'work', 'force,\"', 'says', 'Jon']]\n",
+ "[['the', 'company.', '\"A', 'large', \"acquirer's\", 'interest'], 'in', ['a', 'startup', 'or', 'smaller', 'company', 'is']]\n",
+ "[['startup', 'or', 'smaller', 'company', 'is', 'binary'], 'in', ['nature:', 'They', 'either', 'want', 'you', 'or']]\n",
+ "[['and', 'co-founder', 'of', 'Genius.com', 'Inc.,', 'based'], 'in', ['San', 'Mateo,', 'Calif.,', 'says', 'that', 'innovation']]\n",
+ "[['that', 'innovation', '\"has', 'a', 'bad', 'name'], 'in', ['down', 'times\"', 'but', 'that', '\"bad', 'times']]\n",
+ "[['the', 'mind', 'and', 'the', 'best-focused', 'minds'], 'in', ['the', 'down', 'times', 'are', 'looking', 'for']]\n",
+ "[['adds.', '\"You', 'always', 'have', 'to', 'keep'], 'in', ['mind', 'the', 'bigger', 'picture', \"that's\", 'coming']]\n",
+ "[['picture', \"that's\", 'coming', 'down', 'the', 'road'], 'in', ['two', 'or', 'three', 'years.', '\"The', 'last']]\n",
+ "[['dollars', 'had', 'gone', 'down', 'the', 'drain'], 'in', ['a', 'futile', 'effort', 'to', 'develop', '\"pen']]\n",
+ "[['managed', 'to', 'revitalize', 'the', 'entire', 'industry'], 'in', ['a', 'matter', 'of', 'months', 'by', 'transforming']]\n",
+ "[['sweeping', 'down', 'the', 'dramatic', 'lobby', 'staircase'], 'in', ['a', 'form-fitting,', 'stone-colored', 'gown.', '\"In', 'those']]\n",
+ "[['clothing', 'stores,', 'and', 'well-to-do', 'snowbirds', 'came'], 'in', ['the', 'winter', 'to', 'roost.', '\"Everyone', 'who']]\n",
+ "[['what', 'is', 'the', 'most', 'important', 'landmark'], 'in', ['the', 'popular', \"imagination?'\", 'it', 'would', 'be']]\n",
+ "[['billion', 'to', 'buy', 'and', 'restore', 'it'], 'in', ['the', 'conviction', 'that', 'it', 'can.', 'Its']]\n",
+ "[['Ian', 'Schrager', 'generation.', '\"In', 'its', 'day'], 'in', ['the', \"'50s\", 'and', \"'60s,\", 'the', 'Fontainebleau']]\n",
+ "[['Fontainebleau', 'was', 'state', 'of', 'the', 'art'], 'in', ['glamour,\"', 'said', 'Jeffrey', 'Beers,', 'the', 'New']]\n",
+ "[['\"We', 'would', 'like', 'to', 'restore', 'that'], 'in', ['spirit.\"', 'When', 'the', 'refurbished', 'resort', 'is']]\n",
+ "[['places', 'like', 'this', 'can', 'you', 'go'], 'in', ['America', 'that', 'are', 'not', 'in', 'the']]\n",
+ "[['go', 'in', 'America', 'that', 'are', 'not'], 'in', ['the', 'desert?\"', 'said', 'Jeffrey', 'Soffer,', 'executive']]\n",
+ "[['Resorts,', 'which', 'is', 'building', 'a', 'Fontainebleau'], 'in', ['Las', 'Vegas.', 'Indeed,', 'as', 'he', 'strolled']]\n",
+ "[['was', 'obvious', 'the', 'resort', 'had', 'much'], 'in', ['common', 'with', 'over-the-top', 'hotels', 'on', 'the']]\n",
+ "[['of', 'the', \"Fontainebleau's\", 'largest', 'competitor,', 'Loews'], 'in', ['South', 'Beach.', 'There', 'are', 'also', 'shops,']]\n",
+ "[['acres.', 'The', 'three-year', 'renovation', 'was', 'conceived,'], 'in', ['part,', 'to', 'lure', 'back', 'fashionable', 'crowds,']]\n",
+ "[['time', 'for', 'tourism.', 'Hotel', 'occupancy', 'rates'], 'in', ['Miami-Dade', 'County', 'were', 'down', 'by', '6']]\n",
+ "[['County', 'were', 'down', 'by', '6', 'percent'], 'in', ['September', 'from', 'a', 'year', 'earlier,', 'and']]\n",
+ "[['said', 'John', 'Lancet,', 'a', 'senior', 'executive'], 'in', ['Miami', 'for', 'HVS,', 'a', 'national', 'hotel']]\n",
+ "[['The', 'hotel', 'has', 'some', '$30', 'million'], 'in', ['bookings', 'through', 'early', 'next', 'year,', 'said']]\n",
+ "[['of', 'Fontainebleau', 'Resorts,', 'who', 'was', 'brought'], 'in', ['by', 'the', 'new', 'owners', 'to', 'oversee']]\n",
+ "[['the', '$500', 'million', 'face-lift', 'was', 'made'], 'in', ['anticipation', 'that', 'the', 'city', 'would', 'legalize']]\n",
+ "[['free-form', 'elliptical', 'shape', 'completed', 'by', 'Lapidus'], 'in', ['1954.', 'Its', 'original', 'curvaceous', 'outlines', 'were']]\n",
+ "[['covered', 'the', 'wall', 'at', 'the', 'staircase'], 'in', ['gold', 'tile', 'and', 'added', 'a', 'light']]\n",
+ "[['to', 'nowhere', 'is', 'back,', 'the', 'jewel'], 'in', ['a', 'set', 'piece', 'expected', 'to', 'draw']]\n",
+ "[['Those', 'who', 'stayed', 'at', 'the', 'hotel'], 'in', ['Miami', \"Beach's\", 'golden', 'age', 'recall', 'a']]\n",
+ "[['a', 'resort', 'that', 'Lapidus,', 'who', 'died'], 'in', ['2001', 'at', '98,', 'had', 'envisioned', 'as']]\n",
+ "[['and', 'former', 'associate', 'of', 'Lapidus.', 'Sheathed'], 'in', ['slinky', 'gowns,', '\"they', 'would', 'stop', 'at']]\n",
+ "[['jewelry', 'and', 'wave', 'at', 'their', 'husbands'], 'in', ['the', 'lobby', 'below,\"', 'she', 'said.', 'Michelle']]\n",
+ "[['Oka,', 'was', 'mayor', 'of', 'Miami', 'Beach'], 'in', ['the', 'late', \"'50s\", 'and', 'early', \"'60s\"]]\n",
+ "[['Bond', 'sprang', 'from', 'the', 'high', 'dive'], 'in', ['\"Goldfinger.\"', '\"The', 'floor', 'was', 'like', 'a']]\n",
+ "[['who', 'moved', 'to', 'Miami', 'from', 'Brooklyn'], 'in', ['the', \"'60s,\", 'visited', 'on', 'his', 'honeymoon.']]\n",
+ "[['wine', 'company', 'executive.', '\"I', 'sat', 'down'], 'in', ['the', 'seat', 'and', 'I', 'gave', 'him']]\n",
+ "[['up', 'the', 'drive', 'with', 'a', 'glass'], 'in', ['his', 'hand,\"', 'she', 'said.', '\"We', 'had']]\n",
+ "[['\"We', 'had', 'a', 'more', 'glamorous', 'lifestyle'], 'in', ['those', 'days,\"', 'she', 'added', 'wistfully.', '\"But']]\n",
+ "[['Nichols', 'said.', '\"You', \"don't\", 'just', 'go'], 'in', ['there', 'and', 'take', 'off', 'the', 'eyebrows.\"']]\n",
+ "[['\"Morris', 'Lapidus', 'had', 'real', 'passion,\"', 'but'], 'in', ['its', 'current', 'incarnation,', '\"irony', 'has', 'trumped']]\n",
+ "[['of', 'the', 'original', 'has', 'been', 'resurrected'], 'in', ['three', 'ballrooms,', 'lavish', 'restaurants', 'and', 'five']]\n",
+ "[['saw', 'it', 'I', 'thought', 'I', 'was'], 'in', ['the', 'wrong', 'hotel,\"', 'he', 'said.', '\"I']]\n",
+ "[['to', 'spot', 'fraud', 'and', 'other', 'problems'], 'in', ['a', 'loan', 'application.', 'A', 'decade', 'of']]\n",
+ "[['boom,', 'Cooper', 'says', 'she', 'found', 'herself'], 'in', ['a', 'vise.', 'Brokers', 'squeezed', 'her', 'from']]\n",
+ "[['WaMu', 'chief', 'executive', 'who', 'was', 'ousted'], 'in', ['mid-September.', 'WaMu', 'was', 'seized', 'by', 'federal']]\n",
+ "[['WaMu', 'was', 'seized', 'by', 'federal', 'regulators'], 'in', ['late', 'September,', 'the', 'biggest', 'bank', 'failure']]\n",
+ "[['late', 'September,', 'the', 'biggest', 'bank', 'failure'], 'in', ['the', \"nation's\", 'history.', 'It', 'was', 'sold']]\n",
+ "[['she', 'says.', 'Cooper', 'started', 'at', 'WaMu'], 'in', ['2003', 'and', 'lasted', 'three', 'and', 'a']]\n",
+ "[['month', 'because', 'he', 'closed', '$3.5', 'million'], 'in', ['loans', 'that', 'month.\"', 'Although', 'Cooper', \"couldn't\"]]\n",
+ "[['a', 'formal', 'letter', 'of', 'complaint', 'placed'], 'in', ['her', 'personnel', 'file.', 'Cooper', 'said', 'the']]\n",
+ "[['Four', 'months', 'later,', 'the', 'loan', 'was'], 'in', ['default,', 'she', 'says.', 'The', 'borrower', 'had']]\n",
+ "[['\"but', 'I', 'said,', \"'No,\", 'I', 'put'], 'in', ['the', 'system', 'that', 'I', 'am', 'not']]\n",
+ "[['often', 'approved', 'by', 'her', 'superiors.', 'One'], 'in', ['particular', 'came', 'back', 'to', 'haunt', 'WaMu.']]\n",
+ "[['one', 'street', 'address', 'while', 'documents', 'deeper'], 'in', ['the', 'file', 'showed', 'a', 'different', 'address.']]\n",
+ "[['recalls.', '\"I', 'looked', 'the', 'address', 'up'], 'in', ['our', 'system', 'and', 'could', 'not', 'find']]\n",
+ "[['the', 'California', 'property', 'had', 'found', 'everything'], 'in', ['order', 'and', 'in', 'agreement', 'with', 'the']]\n",
+ "[['had', 'found', 'everything', 'in', 'order', 'and'], 'in', ['agreement', 'with', 'the', 'original', 'appraisal.', '\"I']]\n",
+ "[['you', 'fight,', 'the', 'more', 'you', 'get'], 'in', ['trouble,\"', 'she', 'says.', 'She', 'was', 'written']]\n",
+ "[['her', 'off,', 'she', 'applied', 'for', 'work'], 'in', ['its', 'retail', 'banking', 'division.', 'She', 'was']]\n",
+ "[['suspects,', 'because', 'of', 'the', 'critical', 'letters'], 'in', ['her', 'personnel', 'file.', \"Cooper's\", 'biggest', 'regret,']]\n",
+ "[['Grossmann,', 'is', 'lead', 'counsel', 'for', 'shareholders'], 'in', ['the', 'suit.', 'He', 'said:', '\"Killinger', 'pocketed']]\n",
+ "[['being', 'able', 'to', 'put', 'a', 'person'], 'in', ['their', 'dream', 'home,\"', 'she', 'says.', '\"But']]\n",
+ "[['Row,', 'each', 'nursing', 'a', 'cold', 'beer'], 'in', ['a', 'foam', 'hugger.', 'A', 'Frisbee', 'flies']]\n",
+ "[['encompass', 'any', 'rapid', 'consumption', 'of', 'alcohol'], 'in', ['private', 'before', 'venturing', 'out', 'to', 'venues']]\n",
+ "[['levels', 'have', 'declined', 'slightly', 'from', 'peaks'], 'in', ['the', 'early', '1980s,', 'surveys', 'find', 'that']]\n",
+ "[['surveys', 'find', 'that', 'more', 'than', '8'], 'in', ['10', 'college', 'students', 'drink', 'and', 'that']]\n",
+ "[['college', 'students', 'drink', 'and', 'that', '4'], 'in', ['10', 'are', 'binge', 'drinkers', '(meaning', 'that']]\n",
+ "[['10', 'are', 'binge', 'drinkers', '(meaning', 'that'], 'in', ['the', 'previous', 'two', 'weeks', 'a', 'man']]\n",
+ "[['had', 'consumed', 'at', 'least', 'five', 'drinks'], 'in', ['a', 'sitting,', 'or', 'a', 'woman', 'four).']]\n",
+ "[['sitting,', 'or', 'a', 'woman', 'four).', 'Here'], 'in', ['Gainesville,', 'binge', 'drinking', 'remains', 'ritualized', 'behavior']]\n",
+ "[['this', \"year's\", 'best', 'party', 'school,', 'few'], 'in', ['this', 'classic', 'college', 'town', 'find', 'it']]\n",
+ "[['outlandish', 'that', 'the', 'Gators', 'have', 'placed'], 'in', ['the', 'top', '20', 'four', 'years', 'running.']]\n",
+ "[['year,', 'they', 'see', 'its', 'tragic', 'consequences'], 'in', ['the', 'form', 'of', 'alcohol', 'poisonings,', 'drunken-driving']]\n",
+ "[['assume,', 'that', 'alcohol', 'is', 'a', 'reality'], 'in', ['the', 'lives', 'of', '18-,', '19-', 'and']]\n",
+ "[['1,700', 'college', 'students', 'die', 'each', 'year'], 'in', ['alcohol-related', 'incidents,', 'more', 'than', '599,000', 'are']]\n",
+ "[['had', 'blacked', 'out', 'from', 'heavy', 'drinking'], 'in', ['the', 'past', 'year,', 'half', 'said', 'they']]\n",
+ "[['drinking', 'among', 'college', 'students', 'actually', 'peaked'], 'in', ['1984', 'and', 'has', 'fallen', 'since,', 'albeit']]\n",
+ "[['Vietnam.', 'Studies', 'soon', 'showed', 'an', 'increase'], 'in', ['traffic', 'accidents', 'among', 'teenagers,', 'and', 'by']]\n",
+ "[['who', 'assumed', 'the', 'presidency', 'at', 'Florida'], 'in', ['2004.', 'In', 'August,', 'Machen', 'and', 'his']]\n",
+ "[['Patricia', 'Telles-Irvin,', 'bluntly', 'rejected', 'the', 'initiative'], 'in', ['an', 'op-ed', 'piece', 'in', 'The', 'St.']]\n",
+ "[['the', 'initiative', 'in', 'an', 'op-ed', 'piece'], 'in', ['The', 'St.', 'Petersburg', 'Times.', 'There', 'was']]\n",
+ "[['Gators', 'won', 'the', 'NCAA', 'football', 'championship'], 'in', ['2006', 'and', 'back-to-back', 'basketball', 'championships', 'in']]\n",
+ "[['in', '2006', 'and', 'back-to-back', 'basketball', 'championships'], 'in', ['2006', 'and', '2007.', 'The', 'quarterback', 'Tim']]\n",
+ "[['flagship', 'university', 'is', 'becoming', 'more', 'selective'], 'in', ['its', 'admissions.', 'With', 'a', 'lottery-financed', 'scholarship']]\n",
+ "[['years', 'ago,', 'admitting', 'fewer', 'than', '4'], 'in', ['10', 'applicants.', 'The', 'percentage', 'of', 'freshmen']]\n",
+ "[['to', '70', 'percent,', 'from', '16', 'percent'], 'in', ['1993.', 'Machen', 'had', 'not', 'planned', 'on']]\n",
+ "[['graduate', 'education', 'and', 'academic', 'ranking.', 'But'], 'in', ['his', 'first', 'two', 'years', 'in', 'Gainesville,']]\n",
+ "[['But', 'in', 'his', 'first', 'two', 'years'], 'in', ['Gainesville,', 'six', 'students', 'died', 'in', 'alcohol-related']]\n",
+ "[['years', 'in', 'Gainesville,', 'six', 'students', 'died'], 'in', ['alcohol-related', 'incidents', '--', 'one', 'from', 'alcohol']]\n",
+ "[['--', 'one', 'from', 'alcohol', 'poisoning,', 'two'], 'in', ['falls,', 'two', 'in', 'traffic', 'accidents', 'and']]\n",
+ "[['alcohol', 'poisoning,', 'two', 'in', 'falls,', 'two'], 'in', ['traffic', 'accidents', 'and', 'one', 'in', 'a']]\n",
+ "[['two', 'in', 'traffic', 'accidents', 'and', 'one'], 'in', ['a', 'fight.', 'As', 'he', 'met', 'their']]\n",
+ "[['me', 'want', 'to', 'take', 'some', 'effort'], 'in', ['this', 'area.', 'It', \"wasn't\", 'anything', 'I']]\n",
+ "[['white', 'flag.', '\"The', 'ones', 'who', 'are'], 'in', ['danger', 'of', 'being', 'habitually', 'affected', 'by']]\n",
+ "[['percent', 'last', 'spring', 'from', '57', 'percent'], 'in', ['fall', '2004', '--', 'as', 'the', 'university']]\n",
+ "[['at', 'the', 'University', 'of', 'Florida.', 'But'], 'in', ['September,', 'the', 'trustees', 'clarified', 'long-standing', 'prohibitions']]\n",
+ "[['that', 'has', 'become', 'all', 'the', 'rage'], 'in', ['campaigns', 'against', 'binge', 'drinking.', 'The', 'university']]\n",
+ "[['during', 'this', \"year's\", 'Ole', 'Miss', 'weekend'], 'in', ['September,', 'which', 'was', 'muted', 'by', 'the']]\n",
+ "[['called', 'Gotham,', 'one', 'of', '32', 'bars'], 'in', ['the', 'compact', 'downtown', 'district.', 'To', 'maximize']]\n",
+ "[['their', 'backs', 'for', 'a', 'perp', 'walk'], 'in', ['front', 'of', 'their', 'friends.', 'When', 'the']]\n",
+ "[['at', 'the', 'Swamp', 'one', 'Wednesday', 'night'], 'in', ['mid-September,', 'they', 'hauled', 'out', '10', 'underage']]\n",
+ "[['David', 'N.', 'Khey,', 'a', 'doctoral', 'student'], 'in', ['criminology,', 'has', 'calculated', 'that', 'at', 'least']]\n",
+ "[['Florida', 'students', 'who', 'arrived', 'as', 'freshmen'], 'in', ['2004', 'had', 'an', 'arrest', 'record', 'by']]\n",
+ "[['\"It\\'s', 'effortless', 'to', 'get', 'a', 'drink'], 'in', ['a', 'bar,\"', 'says', 'Lydia', 'A.', 'Snyder,']]\n",
+ "[['ID', 'and', 'got', 'turned', 'away', 'once'], 'in', ['five', 'years.\"', 'For', 'others,', 'the', 'threat']]\n",
+ "[['record', 'is', 'sufficient', 'to', 'deter', 'them'], 'in', ['public,', 'and', 'so', 'they', 'pre-game', 'instead,']]\n",
+ "[['complains', 'Anthony,', '22,', 'a', 'junior', 'majoring'], 'in', ['advertising.', 'Telles-Irvin,', 'the', 'vice', 'president', 'for']]\n",
+ "[['For', 'their', 'wedding', 'at', 'Oz', 'Farm'], 'in', ['Mendocino', 'County,', 'Calif.,', 'Kate', 'Schatz', 'and']]\n",
+ "[['the', 'bats.', '\"There', 'were', 'eight', 'bats'], 'in', ['our', 'cabin', 'and', 'we', 'had', 'no']]\n",
+ "[['lamp', 'on,', 'so', 'they', 'were', 'flying'], 'in', ['our', 'faces.', 'We', 'opened', 'the', 'window']]\n",
+ "[['products,', 'seems', 'to', 'be', 'spurring', 'interest'], 'in', ['farms', 'as', 'the', 'ideal', 'venue', 'for']]\n",
+ "[[\"Harland's\", 'Creek', 'Farm,', 'a', 'historic', 'site'], 'in', ['Pittsboro,', 'N.C.,', 'which', 'she', 'is', 'preparing']]\n",
+ "[['2', 'percent', 'of', 'all', 'farming', 'operations'], 'in', ['the', 'country,', 'were', 'open', 'to', 'the']]\n",
+ "[['country,', 'were', 'open', 'to', 'the', 'public'], 'in', ['2004,', 'offering', 'weddings,', 'lodging,', 'hayrides', 'and']]\n",
+ "[['\"It\\'s', 'kind', 'of', 'an', 'earthy', 'crowd,'], 'in', ['their', '20s', 'and', '30s,', 'educated,', 'who']]\n",
+ "[['the', 'environment.', 'Millie', 'Martini', 'Bratten,', 'editor'], 'in', ['chief', 'of', 'Brides', 'magazine,', 'said', 'that']]\n",
+ "[['majority', 'of', 'weddings', 'still', 'take', 'place'], 'in', ['traditional', 'sites', 'like', 'restaurants', 'and', 'country']]\n",
+ "[['magazine', 'regularly', 'receives', 'wedding', 'submissions', 'set'], 'in', ['farms', 'and', 'ranches.', '\"People', 'want', 'a']]\n",
+ "[['any', 'way', 'they', 'wanted,', 'sing', 'karaoke'], 'in', ['the', 'barn', 'as', 'late', 'as', 'they']]\n",
+ "[['Kentucky', 'Derby-style', 'garden', 'party', 'with', 'women'], 'in', ['hats', 'and', 'chiffon', 'and', 'men', 'in']]\n",
+ "[['in', 'hats', 'and', 'chiffon', 'and', 'men'], 'in', ['seersucker', 'suits.', 'The', 'couple', 'staged', 'their']]\n",
+ "[['grew', 'up', 'on', 'his', \"grandparents'\", 'farm'], 'in', ['Arkansas', 'and', 'Goodfellow,', '31,', 'a', 'baker,']]\n",
+ "[['Goodfellow,', '31,', 'a', 'baker,', 'spent', 'summers'], 'in', ['farm', 'camps', 'and', 'visiting', 'family', 'in']]\n",
+ "[['in', 'farm', 'camps', 'and', 'visiting', 'family'], 'in', ['North', 'Dakota.', 'Winborn', 'is', 'an', 'expert']]\n",
+ "[['chicken', 'coop', 'builder', 'who', 'raised', 'chickens'], 'in', ['the', \"couple's\", 'backyard', 'when', 'they', 'lived']]\n",
+ "[['the', \"couple's\", 'backyard', 'when', 'they', 'lived'], 'in', ['Dallas.', '\"People', 'would', 'joke,', \"'You'll\", 'have']]\n",
+ "[['were', 'having', 'a', 'relatively', 'upscale', 'wedding'], 'in', ['that', 'location.\"', 'They', 'asked,', '\"\\'Do', 'I']]\n",
+ "[['sunscreen', 'packets', 'and', 'bug', 'spray', 'cans'], 'in', ['stainless', 'steel', 'buckets.', '\"Anybody', 'who', 'would']]\n",
+ "[['a', 'social-justice', 'foundation,', 'married', 'last', 'month'], 'in', ['the', 'redwood', 'grove', 'at', 'Oz', 'Farm.']]\n",
+ "[['grove', 'at', 'Oz', 'Farm.', 'They', 'said'], 'in', ['an', 'interview', 'that', 'some', 'of', 'the']]\n",
+ "[['passed', 'on', 'the', 'offer', 'to', 'stay'], 'in', ['the', \"farm's\", 'cabins', 'and', 'instead', 'booked']]\n",
+ "[['at', 'home', 'on', 'a', 'Saturday', 'morning'], 'in', ['2005,', 'poring', 'over', 'dozens', 'of', 'files.']]\n",
+ "[[\"aren't\", 'the', 'small,', 'hand-held', 'versions', 'seen'], 'in', ['war', 'movies,', 'but', '3-foot-long,', '36-pound', 'aluminum']]\n",
+ "[['bathing', 'a', 'square', 'mile', 'of', 'battlefield'], 'in', ['bright', 'or', 'infrared', 'light.', 'They', 'are']]\n",
+ "[['infrared', 'light.', 'They', 'are', 'essential', 'tools'], 'in', ['the', 'U.S.', 'arsenal.', 'Early', 'versions', 'of']]\n",
+ "[['versions', 'of', 'the', 'devices', 'were', 'used'], 'in', ['Vietnam,', 'and', 'they', 'have', 'been', 'used']]\n",
+ "[['off', 'nearby', 'ordnance,', 'burn', 'a', 'hole'], 'in', ['the', 'hull', 'of', 'a', 'warship', 'or']]\n",
+ "[['the', 'skin', 'of', 'an', 'airplane', 'high'], 'in', ['the', 'sky,', 'according', 'to', 'his', 'lawyers.']]\n",
+ "[['has', 'more', 'than', '180,000', 'troops', 'deployed'], 'in', ['Iraq', 'and', 'Afghanistan,', \"Dye's\", 'contentions', 'may']]\n",
+ "[['Alliant', 'Techsystems', 'of', 'Eden', 'Prairie,', 'Minn.,'], 'in', ['2001', 'and', 'is', 'now', 'called', 'ATK']]\n",
+ "[['that', 'consistently', 'perform', 'exactly', 'to', 'design'], 'in', ['the', 'battlefield,\"', 'the', 'company', 'says', 'in']]\n",
+ "[['in', 'the', 'battlefield,\"', 'the', 'company', 'says'], 'in', ['a', 'statement.', 'Although', 'the', 'Justice', 'Department']]\n",
+ "[['has', 'signed', 'on', 'as', 'a', 'plaintiff'], 'in', [\"Dye's\", 'lawsuit', '--', 'which', 'seeks', 'to']]\n",
+ "[['made', 'by', 'the', 'Department', 'of', 'Justice'], 'in', ['the', 'ongoing', 'lawsuit', 'to', 'be', 'wholly']]\n",
+ "[['that', 'spending.', 'A', 'report', 'to', 'Congress'], 'in', ['March', 'by', 'the', \"department's\", 'own', 'inspector']]\n",
+ "[['between', 'resources', 'and', 'oversight,', 'which', 'results'], 'in', ['a', 'corresponding', 'increase', 'in', 'risk', 'for']]\n",
+ "[['which', 'results', 'in', 'a', 'corresponding', 'increase'], 'in', ['risk', 'for', 'fraud,', 'waste', 'and', 'abuse.\"']]\n",
+ "[['Should', 'the', 'government', 'win', 'at', 'trial'], 'in', ['the', 'lawsuit', 'against', 'ATK,', 'it', 'may']]\n",
+ "[['ATK,', 'which', 'has', 'a', 'huge', 'complex'], 'in', ['the', 'open', 'spaces', 'of', 'northern', 'Utah,']]\n",
+ "[['its', 'students;', 'the', 'company,', 'like', 'others'], 'in', ['the', 'industry,', 'often', 'joined', 'with', 'universities']]\n",
+ "[['shipping', 'flares', 'with', 'the', 'new', 'igniter'], 'in', ['2000,', 'according', 'to', 'government', 'court', 'filings.']]\n",
+ "[['reliability', 'at', 'Eglin', 'Air', 'Force', 'Base'], 'in', ['Florida', 'in', 'June', '2000,', 'launching', 'them']]\n",
+ "[['Eglin', 'Air', 'Force', 'Base', 'in', 'Florida'], 'in', ['June', '2000,', 'launching', 'them', 'from', 'warplanes.']]\n",
+ "[['report', 'of', 'a', 'potential', 'problem', 'surfaced'], 'in', ['2005,', 'after', 'the', 'U.S.', 'government', 'and']]\n",
+ "[['named', 'manager', 'of', \"ATK's\", 'flare', 'program'], 'in', ['Utah,', 'to', 'figure', 'out', 'what', 'was']]\n",
+ "[['college', 'and', 'after', 'a', 'three-year', 'stint'], 'in', ['the', 'Army', 'as', 'a', 'mechanic.', 'Fixing']]\n",
+ "[['fall', 'that', 'critical', 'piece', 'of', 'plastic'], 'in', ['the', 'igniter', 'could', 'survive.', 'Dye', 'thought']]\n",
+ "[['five', 'flares', 'to', 'a', 'testing', 'site'], 'in', [\"ATK's\", 'complex.', 'They', 'dropped', 'a', 'flare']]\n",
+ "[['of', '24', 'years,', 'Elizabeth,', 'live', 'here'], 'in', ['North', 'Ogden,', 'about', '50', 'miles', 'north']]\n",
+ "[['those', 'projects.', 'And', 'on', 'that', 'Saturday'], 'in', ['2005,', 'his', 'project', 'was', 'reviewing', 'the']]\n",
+ "[['printout', 'of', 'an', 'e-mail', 'message', 'sent'], 'in', ['2000', 'by', 'Ray', 'W.', 'Beus,', 'then']]\n",
+ "[['I', 'can', 'foresee\"', 'the', 'plastic', 'restraint'], 'in', ['the', 'igniter', 'breaking,', 'he', 'wrote,', '\"resulting']]\n",
+ "[['the', 'igniter', 'breaking,', 'he', 'wrote,', '\"resulting'], 'in', ['complete', 'ignition', 'of', 'the', 'flare.\"', 'Beus']]\n",
+ "[['I', 'did', 'not', 'include', 'this', 'comment/recommendation'], 'in', ['the', 'memo', 'although', 'I', 'would', 'like']]\n",
+ "[['of', 'documents', 'to', 'distribute', 'to', 'everyone'], 'in', ['the', 'war', 'room.', 'Dye', 'said', 'he']]\n",
+ "[['&', 'Cohen,', 'a', 'law', 'firm', 'specializing'], 'in', ['whistle-blower', 'cases.', 'He', 'filled', 'out', 'an']]\n",
+ "[['firm', 'filed', 'a', 'complaint', 'under', 'seal'], 'in', ['April', '2006.', 'Within', 'a', 'month,', 'despite']]\n",
+ "[['the', 'game', 'of', 'looking', 'my', 'bosses'], 'in', ['the', 'eye,\"', 'Dye', 'said,', 'even', 'though']]\n",
+ "[['shipping', 'flares', 'with', 'the', 'new', 'igniter'], 'in', ['2000,', 'the', 'company', 'did', 'not', 'advise']]\n",
+ "[['that', 'the', 'igniter', 'was', 'the', 'standard'], 'in', ['the', 'United', 'States', 'and', 'had', 'been']]\n",
+ "[['time', 'the', 'flares', 'were', 'delivered', 'and'], 'in', ['any', 'event', 'did', 'not', 'include', 'a']]\n",
+ "[['ATK', 'appears', 'ready', 'to', 'wage', 'war'], 'in', ['court', 'and', 'has', 'challenged', 'each', 'claim']]\n",
+ "[['the', 'flares', 'would', 'have', 'failed.', 'And'], 'in', ['court', 'arguments', 'in', 'May,', 'an', 'ATK']]\n",
+ "[['have', 'failed.', 'And', 'in', 'court', 'arguments'], 'in', ['May,', 'an', 'ATK', 'lawyer', 'dismissed', 'the']]\n",
+ "[['the', 'thousands', 'of', 'flares', 'at', 'issue'], 'in', ['the', 'lawsuit', 'are', 'still', 'in', 'use']]\n",
+ "[['issue', 'in', 'the', 'lawsuit', 'are', 'still'], 'in', ['use', 'around', 'the', 'world;', 'the', 'U.S.']]\n",
+ "[['So', 'far,', 'ATK', 'has', 'retrofitted', 'igniters'], 'in', ['14', 'flares', 'that', 'were', 'sold', 'to']]\n",
+ "[['to', 'retrofit', 'at', 'cost', 'the', 'igniters'], 'in', ['tens', 'of', 'thousands', 'of', 'flares', 'sold']]\n",
+ "[['The', 'trial', 'is', 'set', 'to', 'begin'], 'in', ['2010.', 'Like', 'his', 'uncle,', 'his', 'grandfather']]\n",
+ "[['wind', 'into', 'electricity.', 'Across', 'the', 'road,'], 'in', ['the', 'old', 'Maytag', 'factory,', 'another', 'company']]\n",
+ "[['and', 'solar', 'panels', 'seem', 'as', 'ubiquitous'], 'in', ['campaign', 'advertisements', 'as', 'the', 'American', 'flag.']]\n",
+ "[['at', 'Maytag', 'earned', '$20', 'an', 'hour'], 'in', ['addition', 'to', 'health', 'benefits.', 'Versendaal', 'now']]\n",
+ "[['an', 'hour.', 'Still,', \"it's\", 'a', 'beginning'], 'in', ['a', 'sector', 'of', 'the', 'economy', 'that']]\n",
+ "[['City,', 'workers', 'now', 'assemble', 'wind', 'turbines'], 'in', ['a', 'former', 'pump', 'factory.', 'In', 'northwestern']]\n",
+ "[['factories', 'suffering', 'because', 'of', 'the', 'downturn'], 'in', ['the', 'auto', 'industry', 'are', 'retooling', 'to']]\n",
+ "[['energy', 'panels.', '\"The', 'green', \"we're\", 'interested'], 'in', ['is', 'cash,\"', 'says', 'Norman', 'W.', 'Johnston,']]\n",
+ "[['solar', 'cell', 'factory', 'called', 'Solar', 'Fields'], 'in', ['Toledo', 'in', '2003.', 'The', 'market', 'is']]\n",
+ "[['factory', 'called', 'Solar', 'Fields', 'in', 'Toledo'], 'in', ['2003.', 'The', 'market', 'is', 'potentially', 'enormous.']]\n",
+ "[['That', 'would', 'require', 'nearly', '$500', 'billion'], 'in', ['new', 'construction', 'and', 'add', 'more', 'than']]\n",
+ "[['the', 'Great', 'Lakes,', 'the', 'hardest-hit', 'region'], 'in', ['a', 'country', 'that', 'has', 'lost', '4']]\n",
+ "[['jobs', 'over', 'the', 'last', 'decade.', 'Throw'], 'in', ['solar', 'energy', 'along', 'with', 'generating', 'power']]\n",
+ "[['would', 'be', 'the', 'largest', 'wind', 'farm'], 'in', ['the', 'world.', 'Most', 'states', 'now', 'require']]\n",
+ "[['solar', 'and', 'other', 'alternative', 'fuels', 'competitive'], 'in', ['terms', 'of', 'the', 'cost', 'of', 'producing']]\n",
+ "[['770', 'exhibitors', 'jammed', 'a', 'convention', 'center'], 'in', ['Houston', 'for', 'the', 'annual', 'American', 'Wind']]\n",
+ "[['ago,', 'we', 'were', 'all', 'walking', 'around'], 'in', ['Birkenstocks,\"', 'says', 'John', 'M.', 'Brown,', 'managing']]\n",
+ "[['lawyers', 'and', 'bankers.\"', 'So', 'it', 'goes'], 'in', ['Iowa.', 'Perched', 'on', 'the', 'edge', 'of']]\n",
+ "[['certainly', 'some', 'of', 'the', 'best', 'wind'], 'in', ['the', 'world,\"', 'says', 'Chet', 'Culver,', \"Iowa's\"]]\n",
+ "[['Culver,', \"Iowa's\", 'governor.', 'Maytag', 'was', 'born'], 'in', ['Newton', 'more', 'than', 'a', 'century', 'ago.']]\n",
+ "[['global', 'enterprise,', 'its', 'headquarters', 'remained', 'here,'], 'in', ['the', 'center', 'of', 'the', 'state,', '35']]\n",
+ "[['on', 'our', 'barbecues.\"', 'The', 'end', 'began'], 'in', ['the', 'summer', 'of', '2005.', 'Whirlpool,', 'the']]\n",
+ "[['the', 'American', 'Wind', 'Energy', 'Association', 'show'], 'in', ['Los', 'Angeles.', 'Weeks', 'later,', 'a', 'company']]\n",
+ "[['a', 'company', 'called', 'TPI', 'Composites', 'arrived'], 'in', ['Newton', 'to', 'have', 'a', 'look.', 'Based']]\n",
+ "[['Newton', 'to', 'have', 'a', 'look.', 'Based'], 'in', ['Arizona,', 'TPI', 'makes', 'wind', 'turbine', 'blades']]\n",
+ "[['Although', 'TPI', 'was', 'considering', 'a', 'site'], 'in', ['Mexico', 'with', 'low', 'labor', 'costs,', 'Newton']]\n",
+ "[['won.', 'In', 'exchange', 'for', '$6', 'million'], 'in', ['tax', 'sweeteners,', 'TPI', 'promised', 'to', 'hire']]\n",
+ "[['290', 'by', 'mid-November.', '\"Getting', '500', 'jobs'], 'in', ['one', 'swoop', 'is', 'like', 'winning', 'the']]\n",
+ "[['Crady,', 'a', 'worker,', 'takes', 'particular', 'pleasure'], 'in', ['seeing', 'the', 'finished', 'product', 'overhead,', 'a']]\n",
+ "[['the', 'Maytag', 'plant.', '\"That\\'s', 'what', 'everyone'], 'in', ['Newton', 'was', 'waiting', 'on,\"', 'he', 'says.']]\n",
+ "[['years,\"\\'', 'she', 'says.', 'Maytag', 'is', 'gone'], 'in', ['large', 'part', 'because', 'of', 'the', 'calculus']]\n",
+ "[['mostly', 'where', 'physical', 'labor', 'is', 'cheaper,'], 'in', ['countries', 'like', 'China', 'and', 'Mexico.', 'But']]\n",
+ "[['and', 'heavy.', 'The', 'TPI', 'plant', 'is'], 'in', ['Iowa', 'largely', 'because', 'of', 'the', 'costs']]\n",
+ "[['gathering', 'force.', 'More', 'than', '$5', 'billion'], 'in', ['venture', 'capital', 'poured', 'into', 'so-called', 'clean']]\n",
+ "[['clean', 'energy', 'technology', 'industries', 'last', 'year'], 'in', ['North', 'America', 'and', 'Europe,', 'according', 'to']]\n",
+ "[['up', 'from', 'less', 'than', '2', 'percent'], 'in', ['2000.', '\"Everybody', 'involved', 'in', 'the', 'wind']]\n",
+ "[['2', 'percent', 'in', '2000.', '\"Everybody', 'involved'], 'in', ['the', 'wind', 'industry', 'is', 'in', 'a']]\n",
+ "[['involved', 'in', 'the', 'wind', 'industry', 'is'], 'in', ['a', 'massive', 'hurry', 'to', 'build', 'out']]\n",
+ "[['stuff,', 'driving', 'trucks.', 'Manufacturing', 'has', 'been'], 'in', ['decline', 'for', 'decades.', 'This', 'is', 'our']]\n",
+ "[['workers', 'remain', 'without', 'jobs,', 'or', 'stuck'], 'in', ['positions', 'paying', 'less', 'than', 'half', 'their']]\n",
+ "[['an', 'overalls', 'factory.', '\"I', 'grew', 'up'], 'in', ['southern', 'Iowa', 'with', 'nothing,\"', 'he', 'says.']]\n",
+ "[['furniture,', 'his', 'Maytag', 'refrigerator', '--', 'all'], 'in', ['an', 'effort', 'to', 'pay', 'his', 'mortgage.']]\n",
+ "[['interview.', 'His', 'unemployment', 'benefits', 'ran', 'out'], 'in', ['May.', 'He', 'no', 'longer', 'has', 'health']]\n",
+ "[['United', 'States', 'is', 'well', 'behind', 'Europe'], 'in', ['manufacturing', 'wind-power', 'gear', 'and', 'solar', 'panels,']]\n",
+ "[['large-scale', 'production.', '\"You', 'have', 'to', 'reinvest'], 'in', ['industrial', 'capacity,\"', 'says', 'Randy', 'Udall,', 'an']]\n",
+ "[['says', 'Randy', 'Udall,', 'an', 'energy', 'consultant'], 'in', ['Carbondale,', 'Colo.', '\"You', 'use', 'wind', 'to']]\n",
+ "[['a', 'wind', 'turbine', 'plant', 'was', 'coming'], 'in', ['a', 'mere', 'five', 'miles', 'from', 'his']]\n",
+ "[['stay.\"', 'Acciona', 'built', 'its', 'first', 'turbine'], 'in', ['Iowa', 'last', 'December', 'and', 'is', 'on']]\n",
+ "[['which', 'could', 'help', 'catalyze', 'increased', 'metalwork'], 'in', ['the', 'United', 'States.', '\"Michigan,', 'Ohio', '--']]\n",
+ "[['got', 'the', 'attention', 'of', 'the', 'folks'], 'in', ['the', 'auto', 'industry.', 'This', 'thing', 'has']]\n",
+ "[['skills', 'to', 'carve', 'out', 'a', 'niche'], 'in', ['solar', 'power.', 'At', 'the', 'center', 'of']]\n",
+ "[['a', 'Toledo', 'company', 'that', 'was', 'born'], 'in', ['the', '19th', 'century.', 'Half', 'of', \"Pilkington's\"]]\n",
+ "[['century.', 'Half', 'of', \"Pilkington's\", 'business', 'is'], 'in', ['the', 'automotive', 'industry.', 'In', 'the', 'last']]\n",
+ "[['that', 'business', 'is', 'down', '30', 'percent'], 'in', ['North', 'America.', 'But', 'the', 'solar', 'division,']]\n",
+ "[['to', 'play', 'the', 'same', 'enabling', 'role'], 'in', ['solar', 'power', 'that', 'Stanford', 'played', 'at']]\n",
+ "[['power.', 'By', 'licensing', 'the', 'technologies', 'spawned'], 'in', ['its', 'labs,', 'the', 'university', 'encourages', 'its']]\n",
+ "[['drawing', 'plans', 'by', 'hand', 'are', 'again'], 'in', ['demand', 'as', 'Xunlight', 'designs', 'its', 'manufacturing']]\n",
+ "[['says', 'she', 'saw', 'a', 'steep', 'drop'], 'in', ['sales', 'after', 'Maytag', 'left,', 'particularly', 'around']]\n",
+ "[['recently', 'dispatched', 'workers', 'to', 'a', 'factory'], 'in', ['China', 'for', 'training,', 'the', 'company', 'ordered']]\n",
+ "[['for', 'the', 'wind', 'industry.', '\"This', 'is'], 'in', ['its', 'infancy,\"', 'she', 'says.', '\"Automobiles,', 'washer-dryers']]\n",
+ "[['and', 'other', 'appliances', 'have', 'become', 'commodities'], 'in', ['their', 'retirement', 'phase.', \"We're\", 'in', 'the']]\n",
+ "[['commodities', 'in', 'their', 'retirement', 'phase.', \"We're\"], 'in', ['the', 'beginning', 'of', 'this.', 'How', 'our']]\n",
+ "[['--', 'a', 'person', 'or', 'a', 'scene'], 'in', ['which', 'tendencies', 'and', 'meanings', 'converge.\"', 'Reaching']]\n",
+ "[['Coetzee,', 'who', 'won', 'the', 'Nobel', 'Prize'], 'in', ['Literature', 'in', '2003,', 'explores', 'the', 'relations']]\n",
+ "[['won', 'the', 'Nobel', 'Prize', 'in', 'Literature'], 'in', ['2003,', 'explores', 'the', 'relations', 'between', 'reason']]\n",
+ "[['style,', 'constitute', 'his', 'first', 'nonfiction', 'collection'], 'in', ['eight', 'years.', 'ALICE:', 'Alice', 'Roosevelt', 'Longworth,']]\n",
+ "[['Theodore', \"Roosevelt's\", 'older', 'daughter,', 'the', 'first'], 'in', ['20', 'years,', 'is', 'based', 'on', 'her']]\n",
+ "[['his', '\"best', 'and', 'most', 'careful', 'verse'], 'in', ['almost', '30', 'years,\"', 'Stephen', 'Burt', 'wrote']]\n",
+ "[['almost', '30', 'years,\"', 'Stephen', 'Burt', 'wrote'], 'in', ['the', 'Times', 'Book', 'Review.', 'The', 'poems']]\n",
+ "[['AND', 'HEART:', 'A', 'History', 'of', 'Christianity'], 'in', ['America', '(Penguin,', '$17),', 'Garry', 'Wills', 'reconsiders']]\n",
+ "[['between', '\"head\"', '--', 'Enlightenment', 'religion,', 'embodied'], 'in', ['the', 'deism', 'of', 'Washington,', 'Jefferson', 'and']]\n",
+ "[['$15.)', \"Narayan's\", 'life', 'as', 'a', 'child'], 'in', ['Bombay', 'in', 'the', '1960s', 'was', 'colored']]\n",
+ "[['life', 'as', 'a', 'child', 'in', 'Bombay'], 'in', ['the', '1960s', 'was', 'colored', 'by', 'her']]\n",
+ "[['home', 'became', 'a', 'headquarters', 'for', 'Americans'], 'in', ['search', 'of', 'enlightenment.', 'Another', 'account', 'of']]\n",
+ "[['(Riverhead,', '$15.)', 'Auslander', 'describes', 'growing', 'up'], 'in', ['and', 'eventually', 'breaking', 'away', 'from', 'an']]\n",
+ "[['realities', 'about', 'the', 'mistreatment', 'of', 'children'], 'in', ['the', 'process.', 'THE', 'KINGDOM', 'OF', 'BONES,']]\n",
+ "[['the', 'turn', 'of', 'the', '20th', 'century'], 'in', ['England', 'and', 'America', 'in', 'a', 'book']]\n",
+ "[['20th', 'century', 'in', 'England', 'and', 'America'], 'in', ['a', 'book', 'that', '\"shows', 'the', 'occult']]\n",
+ "[['book', 'that', '\"shows', 'the', 'occult', 'mystery'], 'in', ['its', 'best', 'light,\"', 'Marilyn', 'Stasio', 'said']]\n",
+ "[['its', 'best', 'light,\"', 'Marilyn', 'Stasio', 'said'], 'in', ['the', 'Times', 'Book', 'Review.', '--', 'ELSA']]\n",
+ "[['rediscovered', 'a', 'few', 'big', 'offensive', 'threats'], 'in', [\"Saturday's\", '31-28', 'loss', 'to', 'Georgia', 'Tech.']]\n",
+ "[['nine', 'carries,', 'including', 'a', '62-yard', 'run'], 'in', ['the', 'first', 'half', 'that', 'set', 'up']]\n",
+ "[['had', '2', 'yards', 'on', 'three', 'carries'], 'in', ['the', 'past', 'two', 'games', 'combined,', 'and']]\n",
+ "[['the', 'season.', '\"That', 'put', 'us', 'back'], 'in', ['the', 'game.', 'We', 'had', 'to', 'have']]\n",
+ "[['Georgia', 'Tech', 'had', 'three', 'rushing', 'touchdowns'], 'in', ['the', 'second', 'quarter.', 'FSU', \"hadn't\", 'allowed']]\n",
+ "[['that', 'many', 'scores', 'on', 'the', 'ground'], 'in', ['a', 'half,', 'let', 'alone', 'a', 'quarter,']]\n",
+ "[['allowed', 'a', 'total', 'of', '13', 'points'], 'in', ['the', 'second', 'quarter', 'in', 'its', 'first']]\n",
+ "[['13', 'points', 'in', 'the', 'second', 'quarter'], 'in', ['its', 'first', 'seven', 'games.', 'All-around', 'kicker:']]\n",
+ "[['past', 'two', 'seasons.', 'But', 'knee', 'surgery'], 'in', ['August', 'meant', 'he', 'was', 'brought', 'along']]\n",
+ "[['streak', 'to', '48', 'straight,', 'the', 'longest'], 'in', ['the', 'nation.', 'Jesuit', 'connection:', 'Georgia', 'Tech']]\n",
+ "[['Saturday', 'at', 'Bobby', 'Dodd', 'Stadium.', '\"Back'], 'in', ['1992,', 'when', 'we', 'first', 'joined', 'the']]\n",
+ "[[\"that's\", 'when', 'Charlie', 'Ward', 'went', 'back'], 'in', ['the', 'shotgun', 'and', 'we', 'came', 'back']]\n",
+ "[['more', 'important,', 'control', 'of', 'their', 'fate'], 'in', ['the', \"ACC's\", 'Atlantic', 'Division.', 'Idle', 'Maryland']]\n",
+ "[['now', 'is', 'alone', 'at', 'the', 'top'], 'in', ['the', 'race', 'for', 'a', 'spot', 'in']]\n",
+ "[['in', 'the', 'race', 'for', 'a', 'spot'], 'in', ['the', 'league', 'championship', 'game', 'Dec.', '6']]\n",
+ "[['the', 'league', 'championship', 'game', 'Dec.', '6'], 'in', ['Tampa.', '\"Give', 'credit', 'to', 'Georgia', 'Tech,\"']]\n",
+ "[['Yellow', 'Jackets', '(7-2,', '4-2', 'for', 'first'], 'in', ['the', 'Coastal),', 'who', 'had', 'lost', '12']]\n",
+ "[['Christian', 'Ponder,', 'who', 'orchestrated', 'fourth-quarter', 'drives'], 'in', ['wins', 'against', 'Miami,', 'N.C.', 'State', 'and']]\n",
+ "[['In', 'came', 'Sims,', 'who', 'had', 'scored'], 'in', ['a', 'similar', 'spot', 'last', 'week', '(although']]\n",
+ "[['on', 'the', 'ball,', 'and', 'it', 'floated'], 'in', ['the', 'air', 'as', 'if', 'in', 'slow']]\n",
+ "[['floated', 'in', 'the', 'air', 'as', 'if'], 'in', ['slow', 'motion.', '\"Marcus', 'has', 'been', 'playing']]\n",
+ "[['said,', 'adding', 'he', 'stressed', 'ball', 'security'], 'in', ['the', 'days', 'leading', 'up', 'to', 'this']]\n",
+ "[['to', 'scoop', 'up', 'the', 'loose', 'ball'], 'in', ['the', 'end', 'zone,', 'but', 'it', 'squirted']]\n",
+ "[['not', 'to', 'let', 'Tampa', 'Bay', 'get'], 'in', ['a', 'rhythm.', 'So,', 'give', 'Tampa', 'Bay']]\n",
+ "[['of', 'five', 'when', 'Evgeny', 'Artyukhin', 'scored'], 'in', ['the', 'eighth', 'round', 'of', 'the', 'shootout']]\n",
+ "[['tied', 'the', 'score', 'with', '6:12', 'left'], 'in', ['the', 'third', 'period', 'on', 'Matt', \"Carle's\"]]\n",
+ "[['the', 'score', '1-1', 'with', '5:51', 'left'], 'in', ['the', 'second', 'period', 'with', 'his', 'sixth']]\n",
+ "[['Heatley', 'scored', 'after', 'being', 'left', 'alone'], 'in', ['front', 'of', 'the', 'net.', 'Goalie', 'Mike']]\n",
+ "[['Jussi', 'Jokinen', 'or', 'Marty', 'St.', 'Louis'], 'in', ['the', 'shootout.', 'Both', 'teams', 'had', 'seven']]\n",
+ "[['when', 'McAmmond', 'had', 'the', 'puck', 'alone'], 'in', ['front.', 'McAmmond', 'hunted', 'for', 'the', 'best']]\n",
+ "[['Tampa', 'Bay', 'had', 'the', 'territorial', 'advantage'], 'in', ['the', 'second', 'half', 'of', 'the', 'period']]\n",
+ "[['play', 'at', '24.5', 'percent.', 'It', 'cashed'], 'in', ['8:06', 'into', 'the', 'second', 'period', 'as']]\n",
+ "[['goal', 'gave', 'Ottawa', 'a', 'power-play', 'tally'], 'in', ['10', 'of', '11', 'games.', 'Vermette', 'was']]\n",
+ "[['Bay', 'missed', 'a', 'big', 'chance', 'early'], 'in', ['the', 'third', 'period', 'but', 'could', 'not']]\n",
+ "[['end', 'zone', 'celebration', \"wasn't\", 'a', 'factor'], 'in', [\"Saturday's\", 'game.', 'You', 'had', 'better', 'believe']]\n",
+ "[['the', 'Gators', 'last', 'season.', 'They', 'came'], 'in', ['evenly', 'divided', 'reps', 'on', 'weights,', 'pushups,']]\n",
+ "[['wondering', 'why', 'Florida', 'called', 'two', 'timeouts'], 'in', ['the', 'final', '44', 'seconds', 'with', 'a']]\n",
+ "[['said', 'Harvin,', 'who', 'scored', 'a', 'touchdown'], 'in', ['his', '10th', 'straight', 'game.', '\"We', 'just']]\n",
+ "[['\"We', 'just', 'wanted', 'to', 'rub', 'it'], 'in', ['a', 'little', 'bit.', 'Not', 'too', 'much,']]\n",
+ "[['off', 'the', 'field', 'as', 'a', 'winner'], 'in', ['his', 'last', 'game', 'against', 'Georgia.', 'Murphy,']]\n",
+ "[['of', 'all', 'he', 'has', 'been', 'through'], 'in', ['the', 'past', 'year.', 'His', 'mother,', 'Filomena,']]\n",
+ "[['past', 'year.', 'His', 'mother,', 'Filomena,', 'died'], 'in', ['February.', '\"This', 'was', 'the', 'game', 'that']]\n",
+ "[['pass', 'to', 'Murphy', 'with', '5:33', 'remaining'], 'in', ['the', 'third', 'quarter.', 'The', 'ankle', \"didn't\"]]\n",
+ "[['it', \"won't\", 'stop', 'him', 'from', 'playing'], 'in', ['next', \"week's\", 'Vanderbilt', 'game.', '\"I', 'just']]\n",
+ "[['the', 'final', '3:09,', 'Florida', 'redeemed', 'itself'], 'in', ['front', 'of', '84,649', 'at', 'Jacksonville', 'Municipal']]\n",
+ "[['victory', 'was', 'the', 'second-largest', 'for', 'Florida'], 'in', ['the', '86-year', 'series.', 'With', 'a', 'victory']]\n",
+ "[['that', 'entered', 'the', 'game', 'ranked', '21st'], 'in', ['the', 'nation,', 'and', 'had', 'held', 'opponents']]\n",
+ "[['asked.', '\"It', 'means', \"we're\", 'first', 'place'], 'in', ['the', 'SEC', 'East', 'all', 'by', 'ourselves.']]\n",
+ "[['a', 'four-games-to-one', 'loss', 'to', 'the', 'Phillies'], 'in', ['the', 'Fall', 'Classic', 'stop', 'him', 'from']]\n",
+ "[['his', 'excitement', 'over', 'the', \"club's\", 'future'], 'in', ['an', 'end-of-the-season', 'interview', 'unlike', 'any', 'he']]\n",
+ "[['our', 'players,', 'the', 'guys', 'who', 'work'], 'in', ['our', 'clubhouse,', 'the', 'training', 'staff,', 'the']]\n",
+ "[['the', 'other', 'day', 'we', 'ended', 'up'], 'in', ['Wilmington,', 'Del.,', 'in', 'the', 'middle', 'of']]\n",
+ "[['we', 'ended', 'up', 'in', 'Wilmington,', 'Del.,'], 'in', ['the', 'middle', 'of', 'the', 'night', 'after']]\n",
+ "[['to', 'play', 'the', 'game', 'any', 'better'], 'in', ['a', 'sense', 'of', 'hit', 'more', 'home']]\n",
+ "[['fundamentally.', \"What's\", 'striking', 'about', 'the', 'players'], 'in', ['the', 'clubhouse?', 'The', 'unity.', 'The', 'closeness.']]\n",
+ "[['all', 'the', 'right', 'internal', 'workings', 'are'], 'in', ['place', 'to', 'make', 'this', 'successful', 'for']]\n",
+ "[['surrounding', 'your', 'handling', 'of', 'the', 'bullpen'], 'in', ['Game', '5?', 'It', 'is', 'amusing.', \"That's\"]]\n",
+ "[['I', 'have', 'had', 'so', 'much', 'confidence'], 'in', ['all', 'these', 'pitchers', 'all', 'year,', 'and']]\n",
+ "[['that', 'I', 'did', 'not', 'have', 'confidence'], 'in', ['those', 'people,', 'which,', 'to', 'me,', 'is']]\n",
+ "[['Lecavalier,', 'who', 'were', 'first', 'and', 'fourth'], 'in', ['the', 'league', 'among', 'forwards', 'last', 'season']]\n",
+ "[['all', 'depends', 'on', 'where', 'we', 'are'], 'in', ['the', 'game.\"', 'The', 'main', 'cut', 'for']]\n",
+ "[['main', 'cut', 'for', 'Lecavalier', 'has', 'been'], 'in', ['penalty-kill', 'time,', 'of', 'which', 'he', 'had']]\n",
+ "[['which', 'he', 'had', 'just', '37', 'seconds'], 'in', ['his', 'previous', 'seven', 'games.', '\"Some', 'nights']]\n",
+ "[['\"But', \"I'd\", 'like', 'to', 'keep', 'them'], 'in', ['the', 'early', '20s.', 'I', 'think', 'that']]\n",
+ "[['think', 'that', 'will', 'make', 'us', 'better'], 'in', ['March', 'and', 'April.\"', 'CRAIG', 'RETURNS:', 'Ryan']]\n",
+ "[['points,', 'said', 'he', 'feels', '\"more', 'involved\"'], 'in', ['the', \"Senators'\", 'offense', 'than', 'he', 'did']]\n",
+ "[['going', 'to', 'be', 'a', 'top', 'player'], 'in', ['this', 'league.', 'It', 'takes', 'all', 'players']]\n",
+ "[['Stamkos', 'had', 'his', 'first', 'multipoint', 'game'], 'in', ['his', 'ninth', 'career', 'game.', 'It', 'took']]\n",
+ "[['pants', 'pulled', 'down', 'around', 'their', 'knees'], 'in', ['the', 'final', 'minute', 'of', \"Florida's\", '49-10']]\n",
+ "[['with', '44', 'and', '30', 'seconds', 'remaining'], 'in', ['a', 'runaway', 'game.', 'There', 'was', 'no']]\n",
+ "[['chances', 'for', 'a', 'Southeastern', 'Conference', 'title'], 'in', ['2007.', 'More', 'than', 'that,', 'they', 'lived']]\n",
+ "[['photo', 'of', 'the', 'Georgia', 'boogie', 'mounted'], 'in', ['his', 'office', 'almost', 'from', 'the', 'moment']]\n",
+ "[['Florida', \"coach's\", 'feelings', 'was', 'a', 'passage'], 'in', ['a', 'recent', 'biography', 'when', 'he', 'suggested']]\n",
+ "[['pass', 'by', 'backup', 'quarterback', 'John', 'Brantley'], 'in', ['the', 'final', 'eight', 'minutes', 'is', 'open']]\n",
+ "[['\"We', 'just', 'wanted', 'to', 'rub', 'it'], 'in', ['a', 'little', 'bit,', 'but', 'not', 'too']]\n",
+ "[['the', 'Gators', 'control', 'their', 'own', 'destiny'], 'in', ['2008.', 'A', 'victory', 'next', 'week', 'against']]\n",
+ "[['Eastern', 'Division', 'title', 'and', 'a', 'date'], 'in', ['Atlanta', 'on', 'Dec.', '6.', 'As', 'for']]\n",
+ "[['season', 'as', 'the', 'No.', '1', 'team'], 'in', ['the', 'nation.', 'Now,', 'in', 'the', 'final']]\n",
+ "[['1', 'team', 'in', 'the', 'nation.', 'Now,'], 'in', ['the', 'final', 'month', 'of', 'the', 'regular']]\n",
+ "[['they', 'are', 'not', 'even', 'No.', '1'], 'in', ['their', 'division.', 'It', 'has', 'been', 'said']]\n",
+ "[['Johnson', 'has', 'finished', 'first', 'or', 'second'], 'in', ['three', 'of', 'his', 'past', 'four', 'at']]\n",
+ "[['Atlanta,', 'it', 'appears', 'little', 'will', 'get'], 'in', ['the', 'way', 'of', 'his', 'third', 'straight']]\n",
+ "[['own', 'eccentric', 'personality', 'has', 'been', 'celebrated'], 'in', ['YouTube', 'lore.', 'But', 'with', 'No.', '6']]\n",
+ "[['previously', 'undefeated', 'Texas', 'here', 'Saturday', 'night'], 'in', ['front', 'of', 'a', 'record', 'crowd', 'of']]\n",
+ "[['his', 'team', 'from', 'a', 'novelty', 'act'], 'in', ['a', 'remote', 'college', 'town', 'to', 'the']]\n",
+ "[['the', 'first', 'time', 'with', '1:29', 'remaining'], 'in', ['the', 'game,', 'Red', 'Raiders', 'quarterback', 'Graham']]\n",
+ "[['Gideon.', 'The', 'victory', 'is', 'the', 'biggest'], 'in', ['Texas', 'Tech', 'history', 'and', 'the', 'first']]\n",
+ "[['and', 'puts', 'the', 'Red', 'Raiders', 'squarely'], 'in', ['the', 'midst', 'of', 'the', 'national', 'championship']]\n",
+ "[['Big', 'Ten)', 'and', 'muddles', 'the', 'race'], 'in', ['the', 'Big', '12', 'South', 'division.', 'It']]\n",
+ "[['Texas', \"Tech's\", 'victory', 'muddles', 'the', 'race'], 'in', ['the', 'Big', '12', 'South', 'division.', 'And']]\n",
+ "[['(9-0,', '4-0', 'Big', '12)', 'to', 'remain'], 'in', ['contention,', 'it', 'will', 'have', 'to', 'navigate']]\n",
+ "[['Harrell', 'and', 'Florida', 'quarterback', 'Tim', 'Tebow'], 'in', ['the', 'rear-view', 'mirror.', 'Texas', '(8-1,', '4-1']]\n",
+ "[['beaten', 'four', 'consecutive', 'top', '11', 'teams'], 'in', ['the', 'Associated', 'Press', 'poll', 'since', 'Notre']]\n",
+ "[['poll', 'since', 'Notre', 'Dame', 'did', 'it'], 'in', ['1943.', 'Leading', '22-6', 'at', 'halftime,', 'Texas']]\n",
+ "[['receiver', 'Jordan', 'Shipley', 'with', '10:26', 'remaining'], 'in', ['the', 'third', 'quarter.', 'But', 'less', 'than']]\n",
+ "[['line,', 'tailback', 'Chris', 'Ogbonnya', 'was', 'tackled'], 'in', ['the', 'end', 'zone', 'for', 'a', 'safety']]\n",
+ "[['a', '2-0', 'lead', 'with', '10:38', 'remaining'], 'in', ['the', 'first', 'quarter.', 'After', \"Texas'\", 'ensuing']]\n",
+ "[['29-yard', 'field', 'goal', 'with', '6:47', 'left'], 'in', ['the', 'first', 'quarter.', 'Following', 'a', '60-yard']]\n",
+ "[['line', 'and', 'meticulously', 'drove', '96', 'yards'], 'in', ['10', 'plays', 'to', 'score', 'on', 'tailback']]\n",
+ "[['lead', 'to', '19-0', 'with', '9:39', 'remaining'], 'in', ['the', 'second', 'quarter.', 'Texas', 'finally', 'scored']]\n",
+ "[['Texas', 'finally', 'scored', 'with', '5:27', 'left'], 'in', ['the', 'second', 'quarter', 'on', 'kicker', 'Hunter']]\n",
+ "[['The', 'teams', 'traded', 'field', 'goals', 'to'], 'in', ['the', 'final', '1:37', 'of', 'the', 'second']]\n",
+ "[['football.', 'And', 'we', 'need', 'to', 'trust'], 'in', ['that.', 'I', 'think', 'we', 'get', 'caught']]\n",
+ "[['really.', 'The', 'Bucs', 'offense', 'is', '13th'], 'in', ['the', 'NFL,', 'averaging', 'more', 'than', '341']]\n",
+ "[['than', '341', 'yards', 'per', 'game.', 'But'], 'in', ['red', 'zone', 'scoring,', 'Tampa', 'Bay', 'is']]\n",
+ "[['zone', 'scoring,', 'Tampa', 'Bay', 'is', '29th'], 'in', ['the', 'league', 'with', 'only', '11', 'touchdowns']]\n",
+ "[['the', 'league', 'with', 'only', '11', 'touchdowns'], 'in', ['31', 'trips,', 'a', 'percentage', 'of', '35.5.']]\n",
+ "[['Ball,', 'who', 'slipped,', 'leaving', 'Galloway', 'alone'], 'in', ['the', 'end', 'zone.', 'But', 'Garcia', 'never']]\n",
+ "[['zone.', 'So,', 'of', 'course,', 'with', 'that'], 'in', ['mind,', \"I'd\", 'like', 'to', 'let', 'coach']]\n",
+ "[['Tampa', 'Bay', 'has', 'scored', 'two', 'touchdowns'], 'in', ['nine', 'trips,', 'or', '22', 'percent', 'of']]\n",
+ "[[\"Bucs'\", 'inability', 'or', 'unwillingness', 'to', 'run'], 'in', ['the', 'red', 'zone.', 'When', 'the', 'field']]\n",
+ "[[\"hasn't\", 'played', 'since', 'tearing', 'his', 'hamstring'], 'in', ['Week', '3', 'at', 'Chicago.', 'Last', 'week,']]\n",
+ "[['limited', 'because', 'of', 'a', 'pinched', 'nerve'], 'in', ['his', 'back.', '\"We', 'had', 'fresh,', 'good']]\n",
+ "[['happen.', 'The', 'next', 'time', \"we're\", 'down'], 'in', ['the', 'red', 'zone,', 'I', 'get', 'the']]\n",
+ "[['spent', 'the', 'week', 'admitting', 'his', 'play-calling'], 'in', ['red', 'zone', 'situations', 'could', 'have', 'been']]\n",
+ "[['all', 'got', 'to', 'throw', 'our', 'hat'], 'in', ['there', 'and', 'assume', 'some', 'responsibility,', 'but']]\n",
+ "[[\"I've\", 'got', 'a', 'lot', 'of', 'confidence'], 'in', ['Jeff.', 'Hopefully', 'we', 'can', 'all', 'get']]\n",
+ "[['clicking', 'again.\"', 'Garcia', 'said', 'his', 'training'], 'in', ['the', 'West', 'Coast', 'offense', 'taught', 'him']]\n",
+ "[['check', 'down,', 'whenever', 'his', 'team', 'gets'], 'in', ['the', 'red', 'zone.', 'Coaches', 'such', 'as']]\n",
+ "[['find', 'a', 'way', 'to', 'be', 'back'], 'in', ['that', 'sort', 'of', 'mode,\"', 'Garcia', 'said.']]\n",
+ "[['think', 'with', 'how', \"we've\", 'played', 'recently'], 'in', ['the', 'red', 'zone,', \"we've\", 'missed', 'out']]\n",
+ "[['of', 'great', 'opportunities.', '\"And', 'when', \"you're\"], 'in', ['those', 'last', 'two', 'minutes,', 'it', 'is']]\n",
+ "[['weeks', 'ago,', 'after', 'his', 'a', 'concert'], 'in', ['Houston,', 'soft-rock', 'legend', 'Neil', 'Diamond', 'paid']]\n",
+ "[['Oak', 'Island,', 'a', 'small,', 'unincorporated', 'hamlet'], 'in', ['Trinity', 'Bay,', 'and', 'was', 'shocked', 'by']]\n",
+ "[['after', 'Hurricane', 'Ike', 'decimated', 'the', 'area'], 'in', ['September.', 'Left', 'in', 'the', 'aftermath:', 'heaping,']]\n",
+ "[['decimated', 'the', 'area', 'in', 'September.', 'Left'], 'in', ['the', 'aftermath:', 'heaping,', 'rotting', 'piles', 'of']]\n",
+ "[['and', 'displaced', 'residents,', 'some', 'still', 'sleeping'], 'in', ['tents', 'and', 'cars,', 'struggling', 'to', 'rebuild.']]\n",
+ "[['sales', 'at', '20', 'concerts', 'to', 'assist'], 'in', ['the', 'rebuilding', 'of', 'the', 'small', 'community,']]\n",
+ "[['a', 'few', 'miles', 'south', 'of', 'Anahuac'], 'in', ['Chambers', 'County.', 'If', 'sales', 'continue,', 'proceeds']]\n",
+ "[['by', \"year's\", 'end.', '\"These', 'people', 'are'], 'in', ['big', 'trouble', 'and', 'I', 'want', 'to']]\n",
+ "[['\"It', 'may', 'only', 'be', 'a', 'drop'], 'in', ['the', 'bucket,', 'but', \"I'm\", 'going', 'to']]\n",
+ "[[\"I'm\", 'going', 'to', 'ask', 'my', 'audiences'], 'in', ['every', 'city', 'that', 'I', 'play', 'to']]\n",
+ "[['White,', 'who', 'piqued', 'the', \"singer's\", 'interest'], 'in', ['Oak', 'Island.', 'Chambers', 'County', 'was', 'among']]\n",
+ "[['the', 'height', 'of', 'the', \"storm's\", 'line'], 'in', ['the', 'trees,', 'and', 'you', 'could', 'still']]\n",
+ "[['but', 'notice', 'that', 'people', 'were', 'living'], 'in', ['tents', 'and', 'cars', 'next', 'to', 'their']]\n",
+ "[['Agency', 'offered', 'to', 'help', 'with', 'rentals'], 'in', ['Baytown,', 'but', 'that', 'was', 'too', 'far']]\n",
+ "[['yet', 'to', 'allow', 'anyone', 'to', 'move'], 'in', ['to', 'the', 'trailers', 'that', 'were', 'recently']]\n",
+ "[['recently', 'brought', 'in,', 'Silvia', 'said.', 'So,'], 'in', ['effect,', 'people', 'were', 'still', 'sleeping', 'in']]\n",
+ "[['in', 'effect,', 'people', 'were', 'still', 'sleeping'], 'in', ['tents', 'and', 'cars', 'while', 'trailers', 'sat']]\n",
+ "[['said.', 'Although', 'Diamond', 'recently', 'told', 'concert-goers'], 'in', ['Dallas', 'and', 'Tulsa', 'to', '\"help', 'get']]\n",
+ "[['many', 'people', 'as', 'we', 'can', 'back'], 'in', ['homes', 'as', 'quickly', 'as', 'possible.\"', 'He']]\n",
+ "[['He', 'preyed', 'upon', 'older', 'women,', 'some'], 'in', ['their', '70s,', 'one', 'as', 'old', 'as']]\n",
+ "[['a', 'crime', 'scene.', 'Then', 'a', 'sergeant'], 'in', ['the', 'Houston', 'Police', \"Department's\", 'homicide', 'division,']]\n",
+ "[['DNA', 'to', 'solve', 'a', 'crime', 'mystery'], 'in', ['England.', 'Yarbrough', 'called', 'the', 'pioneering', 'scientist,']]\n",
+ "[['--', 'the', 'first', 'based', 'on', 'DNA'], 'in', ['a', 'Harris', 'County', 'proceeding.', '\"It\\'s', 'hard']]\n",
+ "[['there', 'were', 'no', 'law-enforcement', 'DNA', 'labs'], 'in', ['the', 'United', 'States,\"', 'recalled', 'Rusty', 'Hardin,']]\n",
+ "[['used', 'forensically', 'yet.\"', 'The', 'scientific', 'witness'], 'in', ['the', 'trial,', 'Dr.', 'C.', 'Thomas', 'Caskey,']]\n",
+ "[['to', 'end', 'a', 'string', 'of', 'crimes'], 'in', ['which', 'elderly', 'women', 'were', 'beaten', 'and']]\n",
+ "[['testified', 'that', 'Bethune,', 'who', 'was', 'suspected'], 'in', ['at', 'least', '14', 'rapes', 'as', 'well']]\n",
+ "[['diseases.\"', 'Hardin', 'said', 'he', 'had', 'confidence'], 'in', ['the', 'testimony', 'of', 'the', 'victim.', 'But']]\n",
+ "[['were', 'only', 'two', 'commercial', 'DNA', 'laboratories'], 'in', ['the', 'U.S.', 'in', '1986', 'and', 'no']]\n",
+ "[['commercial', 'DNA', 'laboratories', 'in', 'the', 'U.S.'], 'in', ['1986', 'and', 'no', 'government', 'labs.', 'Yarbrough']]\n",
+ "[['\"hits\";', 'there', 'was', 'just', 'a', 'one'], 'in', ['700', 'million', 'chance', 'that', 'someone', 'other']]\n",
+ "[['better', 'witness', 'than', 'a', 'DNA', 'expert'], 'in', ['Houston.', '\"I', 'go,', \"'Well,\", 'who', 'is']]\n",
+ "[['College', 'of', 'Medicine', 'and', 'was', 'interested'], 'in', ['getting', 'into', 'forensic', 'DNA.', 'At', 'the']]\n",
+ "[['at', 'the', 'first', 'DNA', 'cases', 'held'], 'in', ['various', 'federal', 'districts.', 'He', 'was', 'often']]\n",
+ "[['other', 'traits', 'that', 'might', 'aid', 'them'], 'in', ['the', 'apprehension', 'of', 'a', 'suspect.', 'State']]\n",
+ "[['we', 'were', 'tempted', 'to', 'put', 'Miami'], 'in', ['this', 'slot.', 'The', 'Dolphins', 'won', 'one']]\n",
+ "[['England', 'and', 'San', 'Diego.', 'With', 'parity'], 'in', ['the', 'NFL,', \"it's\", 'surprising', 'when', 'any']]\n",
+ "[['just', 'might', 'be', 'the', 'best', 'coach'], 'in', ['all', 'of', 'football.', 'Do', 'you', 'realize']]\n",
+ "[['football.', 'Do', 'you', 'realize', 'he', 'is'], 'in', ['his', '15th', 'season', 'with', 'the', 'Titans?']]\n",
+ "[['forgotten', 'Kerry', 'Collins,', 'above,', 'even', 'played'], 'in', ['the', 'league.', 'We', 'were', 'reminded', 'when']]\n",
+ "[['but', \"it's\", 'the', 'kind', 'that', 'wins'], 'in', ['the', 'playoffs.', 'Campbell', 'has', 'been', 'error-free']]\n",
+ "[['while', 'compiling', 'the', 'fifth-best', 'quarterback', 'rating'], 'in', ['the', 'NFL.', 'Meanwhile,', 'Portis', 'averages', '118']]\n",
+ "[['team', 'has', 'scored', 'more', 'than', '17'], 'in', ['a', 'game', 'against', 'Tennessee,', 'and', 'that']]\n",
+ "[['the', 'Cowboys.', 'Five', 'stories', 'to', 'watch'], 'in', ['the', 'second', 'half', '1.', 'For', 'how']]\n",
+ "[['which', 'two', 'teams', 'will', 'be', 'playing'], 'in', ['Super', 'Bow', 'XLIII', 'on', 'Feb.', '1']]\n",
+ "[['Super', 'Bow', 'XLIII', 'on', 'Feb.', '1'], 'in', ['Tampa.', 'Titans', 'vs.', 'Giants', 'The', 'Titans']]\n",
+ "[['up', 'on', 'the', 'Steelers', 'last', 'week'], 'in', ['Pittsburgh?', 'Super', 'scenario', 'Our', 'pick,', 'as']]\n",
+ "[['which', 'two', 'teams', 'will', 'be', 'playing'], 'in', ['Super', 'Bow', 'XLIII', 'on', 'Feb.', '1']]\n",
+ "[['Super', 'Bow', 'XLIII', 'on', 'Feb.', '1'], 'in', ['Tampa.', 'Titans', 'vs.', 'Giants', 'The', 'Titans']]\n",
+ "[['up', 'on', 'the', 'Steelers', 'last', 'week'], 'in', ['Pittsburgh?', 'It', 'should', 'have', 'been', 'a']]\n",
+ "[['had', 'been', 'fired', 'over', 'a', 'scandal'], 'in', ['which', '11', 'young', 'men', 'from', 'a']]\n",
+ "[['700', 'cases', 'from', 'around', 'the', 'country'], 'in', ['which', 'young', 'men', 'were', 'allegedly', 'executed']]\n",
+ "[['--', 'as', 'guerrillas', 'or', 'paramilitaries', 'killed'], 'in', ['action.', '\"If', 'we', 'end', 'up', 'proving']]\n",
+ "[['broke', 'amid', 'the', 'most', 'triumphant', 'year'], 'in', ['the', 'history', 'of', 'the', 'Colombian', 'armed']]\n",
+ "[['influential', 'rebel', 'ideologue', 'who', 'was', 'slain'], 'in', ['last', \"week's\", 'firefight', 'near', 'La', 'Macarena.']]\n",
+ "[['died', 'of', 'a', 'heart', 'attack.', 'And'], 'in', ['July,', 'army', 'intelligence', 'officers', 'pulled', 'off']]\n",
+ "[['Colombian', 'presidential', 'candidate', 'Ingrid', 'Betancourt.', 'But'], 'in', ['some', 'ways,', 'military', 'analysts', 'say,', 'the']]\n",
+ "[['the', 'government', 'put', 'too', 'much', 'faith'], 'in', ['the', 'military', 'and', 'exercised', 'too', 'little']]\n",
+ "[['the', 'habit,', 'prevalent', 'among', 'U.S.', 'commanders'], 'in', ['Vietnam,', 'of', 'measuring', 'progress', 'through', 'body']]\n",
+ "[['drugs', 'and', 'targeted', 'the', 'rebels.', 'Officers,'], 'in', ['turn,', 'have', 'come', 'under', 'fierce', 'pressure']]\n",
+ "[['week,', 'Uribe', 'scolded', 'his', 'troops', 'based'], 'in', ['southern', 'Meta', 'state', 'for', 'failing', 'to']]\n",
+ "[['Meta', 'state', 'for', 'failing', 'to', 'bring'], 'in', ['a', 'notorious', 'drug', 'trafficker', 'and', 'a']]\n",
+ "[['of', 'the', 'Center', 'for', 'International', 'Policy'], 'in', ['Washington.', '\"What\\'s', 'a', 'colonel', 'going', 'to']]\n",
+ "[['Petro,', 'an', 'opposition', 'lawmaker,', 'claimed', 'that'], 'in', ['some', 'cases', 'of', '\"false', 'positives\"', 'army']]\n",
+ "[['paramilitary', 'drug', 'trafficking', 'and', 'other', 'crimes'], 'in', ['exchange', 'for', 'the', 'bodies', 'of', 'young']]\n",
+ "[['Uribe', 'government', 'with', 'about', '$4', 'billion'], 'in', ['mostly', 'military', 'aid.', 'Restrepo', 'and', 'other']]\n",
+ "[['the', 'institution', 'is', 'losing', 'the', 'fight'], 'in', ['the', 'halls', 'of', 'justice.', '\"Society', 'sent']]\n",
+ "[['Santos,', 'who', 'may', 'run', 'for', 'president'], 'in', ['2010.', 'But', 'Santos', 'has', 'been', 'a']]\n",
+ "[['the', 'military', 'with', 'invaluable', 'intelligence.', 'Here'], 'in', ['La', 'Macarena,', 'home', 'to', 'the', \"army's\"]]\n",
+ "[['out', 'that', 'more', 'than', '800', 'guerrillas'], 'in', ['the', 'southern', 'region', 'they', 'patrol', 'have']]\n",
+ "[['been', 'waging', 'war', 'on', 'the', 'FARC'], 'in', ['southern', 'Colombia', 'for', 'the', 'past', 'four']]\n",
+ "[['The', 'message', 'that', 'the', 'economy', 'is'], 'in', ['the', 'tank', 'is', 'as', 'clear', 'on']]\n",
+ "[['other', 'big-ticket', 'items', 'as', 'it', 'is'], 'in', ['rising', 'unemployment', 'statistics', 'and', 'stock', 'price']]\n",
+ "[['drops.', 'Spending', 'took', 'its', 'biggest', 'fall'], 'in', ['four', 'years', 'in', 'September.', 'Consumer', 'confidence']]\n",
+ "[['its', 'biggest', 'fall', 'in', 'four', 'years'], 'in', ['September.', 'Consumer', 'confidence', 'is', 'at', 'an']]\n",
+ "[['He', 'said', \"he's\", 'telling', 'his', 'clients'], 'in', ['the', 'retail', 'industry', 'to', 'cut', 'prices']]\n",
+ "[['going', 'at', '4,', '5,', '6', \"o'clock\"], 'in', ['the', 'morning,\"', 'Beemer', 'said.', 'Beaumont-based', 'electronics']]\n",
+ "[['through', 'the', 'supply', 'chain', 'from', 'manufacturers'], 'in', ['Mexico,', 'he', 'said.', 'Those', 'opportunities', 'lead']]\n",
+ "[['owns', '100', 'dealerships', 'nationwide', 'and', 'nine'], 'in', ['Houston.', 'Luxury', 'models', 'are', 'at', 'lower']]\n",
+ "[['try', 'to', 'leave', 'the', 'credit', 'cards'], 'in', ['your', 'wallet.', 'And,', 'she', 'says,', 'limit']]\n",
+ "[['indicating', 'that', 'U.S.', 'retail', 'activity', 'was'], 'in', ['the', 'doldrums', 'as', 'consumers', 'seemingly', 'clutched']]\n",
+ "[['its', 'monthly', 'reading', 'of', 'citizen', 'sentiment'], 'in', ['1967.', 'The', 'index,', 'released', 'Tuesday,', 'found']]\n",
+ "[['consumers', 'decreased', 'spending', 'by', 'the', 'most'], 'in', ['28', 'years', 'and', 'disposable', 'income', 'dropped']]\n",
+ "[['that', 'American', 'voters', 'would', 'make', 'history'], 'in', ['2008.', 'Either', 'the', 'United', 'States', 'would']]\n",
+ "[['during', 'economic', 'slumps', 'and', 'only', 'once,'], 'in', ['1972,', 'has', 'the', 'party', 'in', 'charge']]\n",
+ "[['once,', 'in', '1972,', 'has', 'the', 'party'], 'in', ['charge', 'of', 'the', 'White', 'House', 'survived.']]\n",
+ "[['survived.', '\"One', 'of', 'the', 'safest', 'propositions'], 'in', ['American', 'history', 'is,', 'when', 'there', 'are']]\n",
+ "[['of', 'people,', 'then', \"it's\", 'the', 'party'], 'in', ['power', 'that', 'suffers', 'the', 'most,\"', 'said']]\n",
+ "[['wartime', 'contest', '--', 'just', 'the', 'seventh'], 'in', ['a', 'century.', 'In', 'the', 'past', 'wartime']]\n",
+ "[['times', 'they', 'ran.', 'But', 'the', 'party'], 'in', ['power', 'was', 'voted', 'out', 'of', 'office']]\n",
+ "[['power', 'was', 'voted', 'out', 'of', 'office'], 'in', ['the', 'three', 'races', 'when', 'the', 'incumbent']]\n",
+ "[['voters', 'like', 'to', 'change', 'the', 'party'], 'in', ['the', 'White', 'House', 'every', 'eight', 'years.']]\n",
+ "[[\"year's\", 'election', 'is', 'the', 'sixth', 'time'], 'in', ['the', 'post-FDR', 'era', 'of', 'term', 'limits']]\n",
+ "[['of', 'term', 'limits', 'that', 'a', 'party'], 'in', ['power', 'is', 'trying', 'to', 'win', 'the']]\n",
+ "[['is', 'trying', 'to', 'win', 'the', 'presidency'], 'in', ['three', 'straight', 'elections.', 'Only', 'once', '--']]\n",
+ "[['Only', 'once', '--', 'George', 'H.W.', 'Bush'], 'in', ['1988', '--', 'did', 'the', '\"in\"', 'party']]\n",
+ "[['contest', 'pitting', 'candidates', '25', 'years', 'apart'], 'in', ['age.', 'In', 'the', 'two', 'similar', 'generation-gap']]\n",
+ "[['H.W.', 'Bush', 'and', 'Bob', 'Dole.', 'And'], 'in', ['the', 'other', 'generational', 'shift', 'of', 'modern']]\n",
+ "[['generational', 'shift', 'of', 'modern', 'times,', 'voters'], 'in', ['1960', 'chose', 'the', \"nation's\", 'first', 'Roman']]\n",
+ "[['Hanoi.', 'The', 'generational', 'divide', 'is', 'evident'], 'in', ['the', 'electorate.', 'Obama', 'holds', 'a', 'double-digit']]\n",
+ "[['risk', 'is', 'that', 'the', 'largest', 'generation'], 'in', ['American', 'history', 'will', 'become', 'loyal', 'Democrats,']]\n",
+ "[['Franklin', 'Roosevelt', 'influenced', 'two', 'different', 'generations'], 'in', ['the', '20th', 'century.', '\"There\\'s', 'not', 'just']]\n",
+ "[['ballots', 'for', 'Republican', 'George', 'W.', 'Bush'], 'in', ['2004,', 'are', 'siding', 'with', 'Obama', 'by']]\n",
+ "[['among', 'Latinos', 'has', 'complicated', \"McCain's\", 'chances'], 'in', ['traditionally', 'Republican', 'states', 'such', 'as', 'Nevada,']]\n",
+ "[['Nevada,', 'Colorado', 'and', 'Florida.', '\"Republicans', 'are'], 'in', ['a', 'very', 'bad', 'way', '(among', 'Hispanics),\"']]\n",
+ "[['rather', 'than', 'being', 'forced', 'to', 'sit'], 'in', ['the', 'back', 'of', 'segregated', 'Houston', 'buses,']]\n",
+ "[['walk.', 'Now,', 'with', 'Obama', 'running', 'ahead'], 'in', ['polls', 'just', 'two', 'days', 'before', 'the']]\n",
+ "[['probably', 'the', 'most', 'important', 'historic', 'event'], 'in', ['my', 'lifetime', 'for', 'civil', 'rights,\"', 'the']]\n",
+ "[['turnout', 'may', 'overwhelm', 'the', 'system,', 'resulting'], 'in', ['long', 'lines', 'and', 'short-tempered', 'voters.', '\"Our']]\n",
+ "[['350,000', 'voters', 'from', '2004,', 'voter', 'registration'], 'in', ['Los', 'Angeles', 'County', 'now', 'stands', 'at']]\n",
+ "[['North', 'Carolina', 'registered', 'about', 'that', 'number'], 'in', ['2004,', 'and', 'each', 'of', '41', 'other']]\n",
+ "[['County', 'Registrar-Recorder', 'Dean', 'Logan', 'thinks', 'turnout'], 'in', ['the', 'county', 'will', 'exceed', 'the', '79.1']]\n",
+ "[['outstanding', 'absentee', 'ballots', 'should', 'turn', 'them'], 'in', ['on', 'Election', 'Day', 'at', 'their', 'polling']]\n",
+ "[['polling', 'place', 'or', 'the', \"registrar's\", 'headquarters'], 'in', ['Norwalk.', 'To', 'process', 'last-minute', 'registrations,', 'Logan']]\n",
+ "[['are', 'registered,', 'up', 'from', '16.6', 'million'], 'in', ['the', '2004', 'presidential', 'election,', 'which', 'saw']]\n",
+ "[['a', '76', 'percent', 'turnout.', '\"Voter', 'interest'], 'in', ['this', 'historic', 'election', 'is', 'enormous', 'and']]\n",
+ "[['Secretary', 'of', 'State', 'Debra', 'Bowen', 'said'], 'in', ['a', 'statement.', 'Nationwide,', 'about', '13', 'million']]\n",
+ "[['registered', 'people', 'are', 'expected', 'to', 'vote'], 'in', ['the', 'historic', 'election,', 'placing', 'additional', 'strain']]\n",
+ "[['Boyle,', 'a', 'spokeswoman', 'for', 'Common', 'Cause'], 'in', ['Washington,', 'D.C.,', 'noted', 'that', 'in', 'the']]\n",
+ "[['Cause', 'in', 'Washington,', 'D.C.,', 'noted', 'that'], 'in', ['the', 'past', 'decade,', 'the', 'country', 'has']]\n",
+ "[['he', 'allegedly', 'registered', 'himself', 'to', 'vote,'], 'in', ['2006', 'and', 'again', 'in', '2007,', 'at']]\n",
+ "[['to', 'vote,', 'in', '2006', 'and', 'again'], 'in', ['2007,', 'at', 'an', 'address', 'where', 'he']]\n",
+ "[['arrest', 'came', 'as', 'dozens', 'of', 'voters'], 'in', ['San', 'Bernardino', 'and', 'Riverside', 'counties', 'claimed']]\n",
+ "[['is', 'reviewing', '9,000', 'registration', 'affidavits', 'turned'], 'in', ['by', 'the', 'firm', 'to', 'determine', 'if']]\n",
+ "[['attorney', 'Charles', 'H.', 'Bell', 'Jr.', 'wrote'], 'in', ['a', 'letter', 'that', 'some', 'of', 'the']]\n",
+ "[['27,', 'a', 'CRP', 'solicitor', 'was', 'assaulted'], 'in', ['Simi', 'Valley', 'and', '250', 'completed', 'voter']]\n",
+ "[['California,', \"we're\", 'not', 'seeing,', 'at', 'least'], 'in', ['the', 'presidential', 'election,', 'the', 'severity', 'of']]\n",
+ "[['the', 'severity', 'of', 'dirty', 'tricks', 'occurring'], 'in', ['other', 'states,', 'but', 'they', 'are', 'popping']]\n",
+ "[['states,', 'but', 'they', 'are', 'popping', 'up'], 'in', ['some', 'of', 'the', 'other', 'campaigns', 'and']]\n",
+ "[['had', 'the', 'team', 'play', 'one', 'game'], 'in', ['10', 'days,', 'and', \"it's\", 'not', 'difficult']]\n",
+ "[['to', 'draw', 'the', 'conclusion,', 'as', 'some'], 'in', ['the', 'media', 'already', 'have,', 'that', 'Melrose']]\n",
+ "[['team.', 'We', 'saw', 'it', 'last', 'week'], 'in', ['two', 'notable', 'road', 'victories.', 'Melrose', 'must']]\n",
+ "[['because', 'Lawton,', 'who', 'joined', 'the', 'team'], 'in', ['late', 'June,', 'was', 'not', 'part', 'of']]\n",
+ "[['inexact', 'science.', 'It', 'is', 'even', 'trickier'], 'in', ['Tampa', 'Bay', 'because', 'of', 'the', 'extenuating']]\n",
+ "[['\"We', 'have', 'the', 'highest', 'voter', 'turnout'], 'in', ['young', 'people', 'that', \"we've\", 'seen', 'since']]\n",
+ "[['since', 'they', 'were', 'eligible', 'to', 'vote'], 'in', ['1972,\"', 'said', 'Donald', 'Green,', 'political', 'expert']]\n",
+ "[['was', 'commissioned', 'to', 'study', 'youth', 'voters'], 'in', ['1996,', 'when', 'young', 'voter', 'turnout', 'was']]\n",
+ "[['low.', 'The', 'youth', 'vote', 'crawled', 'upward'], 'in', ['the', 'elections', 'that', 'followed,', 'but', 'Green']]\n",
+ "[['from', 'its', 'site,', 'compared', 'to', '800,000'], 'in', ['2004.', 'Chrissy', 'Faessen,', 'deputy', 'director', 'of']]\n",
+ "[['registered', 'young', 'voters', 'cast', 'a', 'ballot'], 'in', ['2004.', 'Faessen', 'said', 'Rock', 'the', 'Vote']]\n",
+ "[['parties', 'for', 'early', 'voters', 'and', 'shuttling'], 'in', ['people', 'to', 'get', 'them', 'to', 'cast']]\n",
+ "[['coordinator', 'for', 'CalPIRG', 'at', 'Valley', 'College'], 'in', ['North', 'Hollywood.', '\"There', 'has', 'been', 'a']]\n",
+ "[['to', 'a', 'bunch', 'who', \"haven't\", 'voted'], 'in', ['years', 'and', 'are', 'now', 'going', 'to']]\n",
+ "[['voters', 'have', 'managed', 'to', 'become', 'engaged'], 'in', ['this', 'election.', 'Sam', 'Dorman,', 'managing', 'director']]\n",
+ "[['Young', 'Voters,', 'said', 'on', 'Super', 'Tuesday'], 'in', ['this', \"year's\", 'primary,', '1', 'in', '4']]\n",
+ "[['Tuesday', 'in', 'this', \"year's\", 'primary,', '1'], 'in', ['4', 'college-track', 'young', 'people', 'voted', 'compared']]\n",
+ "[['young', 'people', 'voted', 'compared', 'with', '1'], 'in', ['14', 'for', 'noncollege-going', 'youth.', '\"Just', 'like']]\n",
+ "[['campaigns', 'and', 'organizations', 'focus', 'their', 'effort'], 'in', ['the', 'most', 'accessible', 'places,', 'specifically', 'college']]\n",
+ "[['places,', 'specifically', 'college', 'campuses,\"', 'Dorman', 'said'], 'in', ['a', 'written', 'statement.', '\"However,', 'at', 'the']]\n",
+ "[['base', 'for', 'organizing,', 'empowerment,', 'and', 'activism'], 'in', ['2009', 'and', 'beyond.\"', 'LOS', 'ANGELES', '-']]\n",
+ "[['offer', '-', 'they', 'must,', 'by', 'law,'], 'in', ['California', '-', 'are', 'also', 'becoming', 'a']]\n",
+ "[['leader', 'for', 'Whole', 'Foods', 'Market,', 'based'], 'in', ['Austin,', 'Texas,', 'which', 'recently', 'introduced', 'a']]\n",
+ "[[\"I'll\", 'remember', 'next', \"time.'\", '\"We\\'re', 'all'], 'in', ['this', 'together.', 'We', 'really', 'want', 'to']]\n",
+ "[['Some', 'of', 'the', 'choices', 'include', '\"Alice'], 'in', ['Wonderland,\"', 'Kermit', 'the', 'Frog,', 'presidential', 'candidates,']]\n",
+ "[['sets', 'of', 'reusable', 'bags', 'for', '$37.95'], 'in', ['\"Ultra-Mod\"', 'black', 'and', 'white', 'and', '\"Flora']]\n",
+ "[['black', 'and', 'white', 'and', '\"Flora', 'Graphic\"'], 'in', ['red,', 'green,', 'blue,', 'yellow', 'and', 'tan.']]\n",
+ "[['Bag,', 'has', 'them', 'for', '$7', 'each'], 'in', ['natural', 'and', '\"garden', 'colors.\"', 'Woodland', 'Hills']]\n",
+ "[['handout', 'at', 'a', 'Woodland', \"Hills'\", 'Concerts'], 'in', ['the', 'Park', 'event.', '\"I\\'m', 'making', 'much']]\n",
+ "[['paper', 'bags', 'to', 'put', 'our', 'recyclables'], 'in', ['that', 'go', 'into', 'the', 'blue', 'bin.']]\n",
+ "[['On', 'a', 'sun-splashed', 'afternoon', 'that', 'was'], 'in', ['stark', 'contrast', 'to', 'the', 'monsoon-like', 'conditions']]\n",
+ "[['monsoon-like', 'conditions', 'he', 'was', 'subjected', 'to'], 'in', ['his', 'visit', 'last', 'year', 'to', 'his']]\n",
+ "[['100', 'percent,', 'so', 'taking', 'him', 'out'], 'in', ['the', 'third', 'quarter', 'was', 'precautionary.\".', 'The']]\n",
+ "[['the', 'Rams', 'here', 'a', 'year', 'ago'], 'in', ['which', 'Coen,', 'playing', 'in', 'severe', 'weather']]\n",
+ "[['year', 'ago', 'in', 'which', 'Coen,', 'playing'], 'in', ['severe', 'weather', 'conditions', 'produced', 'by', 'Hurricane']]\n",
+ "[['passes', 'for', 'the', 'second-highest', 'completion', 'percentage'], 'in', ['school', 'history', 'behind', 'Tim', \"Day's\", '89.4']]\n",
+ "[[\"Day's\", '89.4', 'percent', '(17', 'of', '19)'], 'in', ['the', '2004', 'opener', 'against', 'Delaware', 'State.']]\n",
+ "[['Coen,', 'who', 'departed', 'with', '13:10', 'left'], 'in', ['the', 'third', 'quarter', 'after', 'he', 'connected']]\n",
+ "[['sacks', 'for', '55', 'yards,', 'including', 'four'], 'in', ['the', 'first', 'half', 'on', 'Derek', 'Cassidy']]\n",
+ "[['since', 'a', '7-0', 'blanking', 'of', 'Northeastern'], 'in', ['2006', 'when', 'he', 'stymied', \"URI's\", 'two']]\n",
+ "[['night', 'with', 'a', '5-1', 'win', 'tucked'], 'in', ['their', 'pockets,', 'but', 'Marc', 'Savard', 'was']]\n",
+ "[['gloves', 'drop', 'and', 'the', 'fists', 'fly'], 'in', ['succession,', 'players', 'become', 'fans', 'as', 'well,']]\n",
+ "[['practically', 'been', 'peaceniks.', 'They', 'had', 'engaged'], 'in', ['only', 'two', 'fights', 'all', 'season', '(a']]\n",
+ "[['one', 'more', 'than', 'the', \"NHL's\", 'pacifists'], 'in', ['Detroit', 'and', 'Minnesota.', 'But', 'when', 'the']]\n",
+ "[['The', 'Bruins', 'survived', 'a', 'second-period', 'barrage'], 'in', ['which', 'Tim', 'Thomas', 'turned', 'aside', 'all']]\n",
+ "[['his', 'way.', 'Marco', 'Sturm,', 'who', 'came'], 'in', ['with', 'just', 'one', 'goal', 'this', 'season,']]\n",
+ "[['The', 'Boston', 'penalty', 'kill,', 'dead', 'last'], 'in', ['the', 'league,', 'killed', 'off', 'all', 'six']]\n",
+ "[['plays,', 'including', 'a', '45-second', 'two-man', 'advantage'], 'in', ['the', 'second', 'period.', 'But', 'they', 'turned']]\n",
+ "[['shaming', 'Dallas', 'and', 'its', 'goon', 'squad'], 'in', ['a', \"won't-back-down\", 'third', 'that', 'saw', 'the']]\n",
+ "[['who', 'threw', 'down', 'with', 'Krystofer', 'Barch'], 'in', ['the', 'only', 'clean', 'fight', 'of', 'the']]\n",
+ "[['first', 'angered', 'by', 'an', 'incident', 'early'], 'in', ['the', 'second', 'period', 'when', 'Ott', 'went']]\n",
+ "[['Dallas', 'forward', \"didn't\", 'drop', 'his', 'gloves'], 'in', ['return.', 'Thornton', 'was', 'whistled', 'for', 'a']]\n",
+ "[['took', 'our', \"player's\", 'knees', 'out.\"', 'Later'], 'in', ['the', 'period,', 'after', 'Ott', 'belted', 'Mark']]\n",
+ "[['(Patrice', 'Bergeron', 'scored', 'the', 'go-ahead', 'goal'], 'in', ['the', 'second,', 'Phil', 'Kessel', 'netted', 'his']]\n",
+ "[['his', 'seventh', 'goal', 'of', 'the', 'year'], 'in', ['the', 'third),', 'Thornton', 'and', 'Barch', 'squared']]\n",
+ "[['Savard', 'said.', '\"Nothing', 'other', 'than', 'coming'], 'in', ['and', 'helping', 'a', 'teammate.', \"He's\", 'got']]\n",
+ "[['teammate.', 'It', 'was', 'getting', 'like', 'that'], 'in', ['the', 'third.', 'Obviously,', \"they're\", 'a', 'frustrated']]\n",
+ "[['to', 'replace', 'Rodney', 'Harrison', 'at', 'safety'], 'in', ['the', 'Patriots', 'secondary', '-', 'that', 'was']]\n",
+ "[['and', 'James', 'Sanders', 'calling', 'the', 'shots'], 'in', ['the', 'secondary.', 'Communication', 'will', 'be', 'key']]\n",
+ "[['both', 'held', 'responsible', 'for', 'it.', '\"Just'], 'in', ['the', 'meetings', 'and', 'in', 'practice', 'and']]\n",
+ "[['it.', '\"Just', 'in', 'the', 'meetings', 'and'], 'in', ['practice', 'and', 'stuff,', 'I', \"didn't\", 'see']]\n",
+ "[['There', 'has', 'been', 'a', 'marked', 'difference'], 'in', ['the', 'way', 'Meriweather', 'has', 'performed', 'this']]\n",
+ "[['he', 'was', 'seeing', 'significant', 'playing', 'time'], 'in', ['the', \"team's\", 'nickel', 'and', 'dime', 'packages.']]\n",
+ "[['the', 'second-year', 'player', 'leads', 'the', 'Patriots'], 'in', ['interceptions', 'with', 'three,', 'showing', 'the', 'range']]\n",
+ "[['him', 'a', 'first-round', 'pick', '(24th', 'overall)'], 'in', ['2007.', 'Meriweather', 'also', 'has', 'shown', 'that']]\n",
+ "[['lining', 'guys', 'up.', \"You're\", 'the', 'quarterback'], 'in', ['that', 'secondary.\"', 'Communication', 'aside,', 'Woodson', 'said']]\n",
+ "[['Communication', 'aside,', 'Woodson', 'said', 'having', 'Meriweather'], 'in', ['the', 'lineup', 'could', 'benefit', 'the', 'Patriots.']]\n",
+ "[['credit,', 'he', 'took', 'an', 'active', 'role'], 'in', ['grooming', 'both', 'Sanders', 'and', 'Meriweather.', 'While']]\n",
+ "[['the', 'thing', 'that', 'he', 'mostly', 'installed'], 'in', ['me', 'is', 'play', 'every', 'play', 'like']]\n",
+ "[['Meriweather.', \"That's\", 'the', 'circle', 'of', 'life'], 'in', ['the', 'NFL.', \"Somebody's\", 'potential', 'last', 'play']]\n",
+ "[['but', 'it', 'might', 'be', 'a', 'positive'], 'in', [\"((Meriweather's))\", 'career', 'because', 'he', 'can', 'grow']]\n",
+ "[['that', 'will', 'keep', 'the', 'Red', 'Sox'], 'in', ['Fort', 'Myers,', 'Fla.,', 'for', 'at', 'least']]\n",
+ "[['best', 'spring', 'training', 'environment', 'and', 'experience'], 'in', ['all', 'of', 'major', 'league', 'baseball,\"', 'Red']]\n",
+ "[['Sox', 'have', 'minor', 'league', 'practice', 'facilities'], 'in', ['a', 'different', 'location.', 'The', 'new', 'park']]\n",
+ "[['combined-site', 'facility', 'with', 'six', 'practice', 'fields'], 'in', ['addition', 'to', 'the', 'stadium.', 'The', 'combined-site']]\n",
+ "[['The', 'combined-site', 'facility', 'played', 'a', 'role'], 'in', ['the', \"Sox'\", 'decision.', '\"It', \"wasn't\", 'by']]\n",
+ "[['will', 'move', 'into', 'the', 'new', 'facility'], 'in', ['2012.', 'The', 'new', 'stadium', 'will', 'be']]\n",
+ "[['to', 'Dee,', 'proposals', 'will', 'be', 'requested'], 'in', ['the', 'next', 'week', 'from', 'developers', 'on']]\n",
+ "[['week', 'from', 'developers', 'on', 'a', 'site'], 'in', ['southern', 'Lee', 'County.', 'The', 'Sox', 'will']]\n",
+ "[['the', 'way', 'they', 'feel', 'about', 'sports'], 'in', ['general', 'and', 'the', 'Red', 'Sox.', '\"I']]\n",
+ "[['that', \"it's\", 'the', 'best', \"he's\", 'felt'], 'in', ['three', 'years', 'in', 'terms', 'of', 'range']]\n",
+ "[['best', \"he's\", 'felt', 'in', 'three', 'years'], 'in', ['terms', 'of', 'range', 'of', 'motion', 'and']]\n",
+ "[['pain.', 'The', 'real', 'test', 'will', 'come'], 'in', ['spring', 'training.', 'The', 'other', 'speculation', 'revolves']]\n",
+ "[['hear', 'that', 'name', 'called', 'a', 'lot'], 'in', ['their', 'trade', 'talks.', 'I', 'think', 'the']]\n",
+ "[[\"aren't\", 'more', '\"swap', 'meet\"', 'type', 'deals'], 'in', ['baseball.', 'As', 'in,', '\"You', 'take', 'what']]\n",
+ "[['meet', 'at', 'this', \"week's\", 'GM', 'meetings'], 'in', ['Dana', 'Point,', 'Calif.,', 'with', 'the', 'items']]\n",
+ "[['seem', 'to', 'fit', 'as', 'third', 'basemen'], 'in', ['Minnesota,', 'but', 'what', 'could', 'go', 'back']]\n",
+ "[['tough.', 'He', 'had', 'knee', 'surgeries', 'early'], 'in', ['the', 'year', 'and', 'late', 'in', 'the']]\n",
+ "[['early', 'in', 'the', 'year', 'and', 'late'], 'in', ['the', 'year', 'and', 'he', \"wasn't\", 'around']]\n",
+ "[['outfield', 'and', 'he', 'needs', 'to', 'get'], 'in', ['shape.\"', 'Mike', 'Easler,', \"Jones's\", 'hitting', 'coach']]\n",
+ "[['many', 'guys', 'just', \"don't\", 'play', 'well'], 'in', ['a', 'certain', 'market.', 'Jones', 'is', 'a']]\n",
+ "[['good', 'example.', 'He', 'was', 'very', 'comfortable'], 'in', ['Atlanta', 'and', 'he', 'goes', 'to', 'LA']]\n",
+ "[['Paying', 'scant', 'attention?', 'Home-field', 'advantage', 'comes'], 'in', ['different', 'forms,', 'and', 'Steelers', 'quarterback', 'Ben']]\n",
+ "[['preparing', 'for', 'an', 'unusual', 'road', 'challenge'], 'in', ['tomorrow', \"night's\", 'game', 'at', 'Washington:', 'the']]\n",
+ "[['the', \"Redskins'\", 'cheerleaders.', 'Roethlisberger', 'relayed', 'that'], 'in', ['past', 'preseason', 'games,', 'the', 'cheerleaders', 'strategically']]\n",
+ "[['total', 'of', '486', 'minutes', '21', 'seconds'], 'in', ['eight', 'games.', 'They', 'have', 'led', 'for']]\n",
+ "[['reach', 'The', 'Texans', 'have', 'won', 'three'], 'in', ['a', 'row,', 'but', 'receiver', 'Andre', 'Johnson']]\n",
+ "[['can', 'set', 'two', 'NFL', 'records', 'today'], 'in', ['Minnesota,', 'as', 'he', 'looks', 'to', 'become']]\n",
+ "[['at', 'least', '10', 'receptions.', 'Having', 'played'], 'in', ['seven', 'games,', 'Johnson', 'leads', 'the', 'NFL']]\n",
+ "[['seven', 'games,', 'Johnson', 'leads', 'the', 'NFL'], 'in', ['receptions', '(56)', 'and', 'receiving', 'yards', '(772).']]\n",
+ "[['late', 'Sean', 'Taylor,', 'a', 'former', 'teammate'], 'in', ['Washington,', 'Clark', 'was', 'fined', '$5,000', 'by']]\n",
+ "[['attack,', 'the', 'Cardinals', 'lead', 'the', 'NFL'], 'in', ['points', '(28.5', 'per', 'game),', 'and', 'the']]\n",
+ "[['and', 'the', \"team's\", 'top', 'receivers', 'are'], 'in', ['position', 'to', 'reach', 'a', 'milestone.', 'Larry']]\n",
+ "[['vying', 'to', 'become', 'the', 'first', 'trio'], 'in', ['history', 'to', 'reach', '40', 'receptions', 'each']]\n",
+ "[['(36)', 'looking', 'to', 'join', 'him', 'today'], 'in', ['St.', 'Louis.', 'Plenty', 'to', 'go', 'around']]\n",
+ "[['St.', 'Louis.', 'Plenty', 'to', 'go', 'around'], 'in', ['Chicago', 'Bears', 'quarterback', 'Kyle', 'Orton', 'has']]\n",
+ "[['are', 'all', 'over', 'the', '200-yard', 'mark'], 'in', ['receiving,', 'while', 'Marty', 'Booker', '(183)', 'is']]\n",
+ "[['with', 'at', 'least', '200', 'receiving', 'yards'], 'in', ['a', 'season', 'since', '1989,', 'yet', \"they've\"]]\n",
+ "[['yet', \"they've\", 'almost', 'accomplished', 'the', 'feat'], 'in', ['seven', 'games.', 'Ring', 'master', 'The', 'Rams']]\n",
+ "[['LenDale', 'White', 'might', 'represent', 'a', 'contrast'], 'in', ['style,', 'but', 'they', 'have', 'one', 'obvious']]\n",
+ "[['but', 'they', 'have', 'one', 'obvious', 'thing'], 'in', ['common:', 'production.', 'Johnson', 'leads', 'the', 'AFC']]\n",
+ "[['common:', 'production.', 'Johnson', 'leads', 'the', 'AFC'], 'in', ['rushing', '(626', 'yards)', 'and', 'no', 'one']]\n",
+ "[['rushing', '(626', 'yards)', 'and', 'no', 'one'], 'in', ['the', 'NFL', 'has', 'scored', 'more', 'touchdowns']]\n",
+ "[['same', 'team', 'to', 'lead', 'their', 'conference'], 'in', ['rushing', 'yards', 'and', 'rushing', 'touchdowns', 'since']]\n",
+ "[['to', 'gain', 'more', 'than', '100', 'yards'], 'in', ['a', 'game', 'this', 'season,', 'and', 'have']]\n",
+ "[['league', 'and', 'team', 'sources', 'was', 'used'], 'in', ['this', 'report.', 'Value', 'of', 'the', 'four-year']]\n",
+ "[['president', 'Harry', 'Sinden', 'announced', \"O'Connell's\", 'firing'], 'in', ['March', '2006,', 'he', 'said', 'part', 'of']]\n",
+ "[['dismiss', \"O'Connell,\", 'said', 'Sinden,', 'it', 'was'], 'in', ['the', \"club's\", 'best', 'interest', 'to', 'cut']]\n",
+ "[['of', 'yesterday', 'morning,', 'Thomas', 'was', 'second'], 'in', ['the', 'NHL', 'in', 'save', 'percentage.', 'A']]\n",
+ "[['Thomas', 'was', 'second', 'in', 'the', 'NHL'], 'in', ['save', 'percentage.', 'A', 'look', 'at', 'the']]\n",
+ "[['the', 'salaries', 'of', 'the', 'top', 'seven'], 'in', ['that', 'category:', 'Save', 'pct.2008-09', 'pay2009-10', 'pay']]\n",
+ "[['For', 'the', 'least', 'expensive', 'single-game', 'tickets'], 'in', ['the', 'NBA,', 'head', 'to', 'Texas.', 'A']]\n",
+ "[['bellboy', 'snarls', 'at', 'the', 'visiting', 'quarterback'], 'in', ['the', 'World', 'MasterCard', 'ad', 'that', 'will']]\n",
+ "[['Oil', 'Stadium', 'tonight,', 'as', 'they', 'have'], 'in', ['their', 'last', 'three', 'regular-season', 'meetings', 'in']]\n",
+ "[['in', 'their', 'last', 'three', 'regular-season', 'meetings'], 'in', ['Indianapolis,', 'they', 'could', 'well', 'be', 'on']]\n",
+ "[['and', 'their', 'playoff', 'chances', 'could', 'be'], 'in', ['serious', 'jeopardy.', '\"We\\'re', 'so', 'used', 'to']]\n",
+ "[['Bob', 'Sanders,', 'who', 'should', 'be', 'back'], 'in', ['the', 'lineup', 'after', 'missing', 'five', 'games']]\n",
+ "[['you', 'have', 'to', 'go', 'through', 'eventually'], 'in', ['this', 'league,', 'and', 'everyone', 'goes', 'through']]\n",
+ "[['the', 'team', 'where', 'we', 'are,', 'right'], 'in', ['the', 'hunt', 'of', 'the', 'AFC.', '\"There']]\n",
+ "[['games', 'and', 'still', 'beat', 'the', 'Colts'], 'in', ['the', 'playoffs.', '\"NFL', 'football', 'is', 'really']]\n",
+ "[['whose', 'team', 'went', 'a', 'collective', '37-15'], 'in', ['those', 'two', 'months', 'over', 'the', 'past']]\n",
+ "[['\"You', \"don't\", 'want', 'to', 'dig', 'yourself'], 'in', ['too', 'much', 'of', 'a', 'hole,', 'but']]\n",
+ "[['whom', 'they', 'play', 'back', 'to', 'back'], 'in', ['December,', 'are', 'a', 'combined', '0-15.', '\"We']]\n",
+ "[['best', 'defender', 'last', 'year,', 'has', 'played'], 'in', ['only', 'two', 'games.', 'The', \"Colts'\", 'creed']]\n",
+ "[['lesson', 'from', 'them.', \"I've\", 'illustrated', 'them'], 'in', ['the', 'past', 'as', 'to', 'how', 'they']]\n",
+ "[['\"I', 'think', 'our', 'whole', 'team', 'is'], 'in', ['a', 'slump', 'right', 'now,\"', 'observed', 'Dungy,']]\n",
+ "[['\"It\\'s', 'a', 'team', 'game.', 'Everybody', 'is'], 'in', ['it.', 'We', 'have', 'to', 'break', 'out']]\n",
+ "[['on', 'one', 'person', 'at', 'all.', \"I'm\"], 'in', ['a', 'slump.\"', 'The', 'offense', \"doesn't\", 'look']]\n",
+ "[['Manning,', 'whose', 'rating', 'puts', 'him', '22d'], 'in', ['the', 'league,', 'has', 'been', 'throwing', 'picks']]\n",
+ "[['getting', 'open,', 'the', 'ball', 'not', 'being'], 'in', ['the', 'right', 'place.', 'Whatever', 'it', 'may']]\n",
+ "[['which', 'gave', 'up', '25', 'straight', 'points'], 'in', ['the', 'second', 'half', 'at', 'Tennessee,', \"can't\"]]\n",
+ "[['to.', 'On', 'the', \"Titans'\", 'game-tying', 'drive'], 'in', ['the', 'third', 'quarter,', 'Indianapolis', 'gave', 'them']]\n",
+ "[['out', 'of', 'control', 'as', 'it', 'did'], 'in', ['2001,', 'when', 'they', 'lost', 'five', 'straight']]\n",
+ "[['and', 'cruising,\"', 'confessed', 'Dungy.', '\"I\\'ve', 'been'], 'in', ['both', 'situations', 'and', 'this,', 'believe', 'it']]\n",
+ "[['ground', 'running', 'this', 'way', 'and', 'improved'], 'in', ['November', 'and', 'December', 'and', 'played', 'great,']]\n",
+ "[['Except', 'for', 'the', 'Titans,', 'everyone', 'else'], 'in', ['the', 'AFC', 'South', 'is', '3-4,', 'and']]\n",
+ "[['of', 'a', 'wild-card', 'spot.', 'So', 'nobody'], 'in', ['blue', 'is', 'panicking', 'just', 'yet.', '\"We']]\n",
+ "[['chance', 'to', 'be', 'playing', 'for', 'something'], 'in', ['the', 'end,\"', 'said', 'Manning.', '\"But', 'right']]\n",
+ "[['The', 'Celtics', 'had', 'an', '8-0', 'record'], 'in', ['the', 'second', 'of', 'consecutive', 'night', 'games']]\n",
+ "[['line.', '\"We', 'just', \"didn't\", 'play', 'well,'], 'in', ['any', 'aspect', 'of', 'the', 'game,\"', 'Rivers']]\n",
+ "[['were', 'decisive.', 'Things', 'continued', 'to', 'degenerate'], 'in', ['the', 'final', 'quarter.', 'Indiana', 'would', 'score']]\n",
+ "[['cut', 'into', 'the', 'lead.', 'We', 'were'], 'in', ['that', 'situation', 'a', 'lot', 'of', 'times']]\n",
+ "[['15', 'hours', 'after', 'the', 'Celtics', 'checked'], 'in', ['at', 'their', 'hotel.', '\"It', 'was', 'a']]\n",
+ "[['opener.', '\"We', 'really', 'got', 'caught', 'up'], 'in', ['yelling', 'at', 'the', 'referees,', \"didn't\", 'keep']]\n",
+ "[['us.', 'We', 'just', 'have', 'to', 'get'], 'in', ['the', 'gym', 'and', 'focus', 'on', 'the']]\n",
+ "[['next', 'three', 'days.', 'We', \"can't\", 'go'], 'in', ['to', 'Houston', '((Tuesday))', 'and', 'play', 'like']]\n",
+ "[['questions', 'about', 'players', 'turning', 'on', 'you'], 'in', ['Oakland,', 'but', 'you', \"don't\", 'believe', 'that']]\n",
+ "[['had', 'been', 'swept', 'by', 'the', 'Tigers'], 'in', ['the', 'playoffs', 'and', 'there', 'was', 'a']]\n",
+ "[['talent,', 'but', 'the', 'top', 'two', 'guys'], 'in', ['the', 'rotation,', 'CC', 'Sabathia', 'and', 'Ben']]\n",
+ "[['have', 'performed', 'at', 'a', 'high', 'level'], 'in', ['the', 'majors.', 'Certainly', 'one', 'of', 'my']]\n",
+ "[['verbally', 'undressing', 'one', 'of', 'his', 'players'], 'in', ['a', 'press', 'conference,', 'and', 'his', 'behind-the-scenes']]\n",
+ "[['himself', 'to', 'motivate', 'his', 'team,', 'things'], 'in', ['San', 'Francisco', 'just', 'became', 'a', 'whole']]\n",
+ "[['Can', 'such', 'a', 'hold-nothing-back', 'approach', 'work'], 'in', [\"today's\", 'NFL?', 'The', '49ers', 'are', 'off']]\n",
+ "[['be', 'no', 'immediate', 'on-field', 'answers.', 'But'], 'in', ['the', 'opinion', 'of', 'one', 'observer', 'close']]\n",
+ "[['of', 'control.', 'It', 'started', 'when', 'Singletary,'], 'in', ['his', 'first', 'game', 'as', 'interim', 'coach,']]\n",
+ "[['from', 'reporters', 'after', 'the', 'game.', 'Later'], 'in', ['the', 'week,', 'it', 'was', 'learned', 'that']]\n",
+ "[['former', 'linebacker', 'Chad', 'Brown,', 'who', 'played'], 'in', ['the', 'NFL', 'from', '1993-2007.', '\"I', 'think']]\n",
+ "[['Reeves', 'believes', \"there's\", 'still', 'a', 'place'], 'in', ['the', 'game', 'for', 'that', 'type', 'of']]\n",
+ "[['of', 'approach', 'was', 'easier', 'to', 'adopt'], 'in', ['the', '1980s,', 'when', 'Singletary', 'was', 'in']]\n",
+ "[['in', 'the', '1980s,', 'when', 'Singletary', 'was'], 'in', ['the', 'midst', 'of', 'his', 'Hall', 'of']]\n",
+ "[['Fame', 'playing', 'career.', '\"The', 'greatest', 'motivator'], 'in', ['that', 'period', 'of', 'time', 'was', 'fear']]\n",
+ "[['lineman', 'Mike', 'Flynn,', 'who', 'grew', 'up'], 'in', ['Agawam', 'and', 'played', 'from', '1997-2007,', 'doubts']]\n",
+ "[['he', 'said,', '\"and', 'it', 'sounds', 'good'], 'in', ['theory,', 'and', 'it', 'might', 'work', 'in']]\n",
+ "[['in', 'theory,', 'and', 'it', 'might', 'work'], 'in', ['high', 'school', 'and', 'college,', 'but', 'these']]\n",
+ "[[\"He's\", 'going', 'to', 'be', 'like', 'that'], 'in', ['San', 'Francisco.', 'If', 'it', \"doesn't\", 'work']]\n",
+ "[['a', 'few', 'guys,', 'get', 'them', 'going'], 'in', ['the', 'right', 'direction,', 'but', 'eventually', 'you']]\n",
+ "[['your', 'tone', 'and', '-', 'not', 'give'], 'in', ['to', 'the', 'player,', 'so', 'to', 'speak']]\n",
+ "[['1.', 'Are', 'the', 'Pittsburgh', 'Pirates', 'still'], 'in', ['the', 'league?;', '2.', 'Orlando', 'Cabrera', 'is']]\n",
+ "[['if', 'they', 'got', 'a', 'young', 'closer'], 'in', ['return.', 'Which', 'means', 'the', 'Sox', 'would']]\n",
+ "[['Masterson.', 'Third', 'base', 'is', 'another', 'need'], 'in', ['Cleveland,', 'with', \"Houston's\", 'Ty', 'Wigginton', 'on']]\n",
+ "[['fairly', 'well-known', 'baseball', 'people', 'with', 'experience'], 'in', ['other', 'markets,', 'according', 'to', 'a', 'major']]\n",
+ "[['The', 'Yankees', 'have', 'been', 'very', 'aggressive'], 'in', ['calling', 'teams', 'to', 'see', 'who', 'might']]\n",
+ "[['Ibanez.', 'They', 'need', 'a', 'consistent', 'hitter'], 'in', ['the', 'outfield,', 'and', 'Ibanez', 'seems', 'to']]\n",
+ "[['Braves', 'are', 'also', 'still', 'very', 'much'], 'in', ['the', 'hunt,', 'and', \"don't\", 'be', 'surprised']]\n",
+ "[[\"Angels'\", 'management', 'style', 'is', 'to', 'go'], 'in', ['hard', 'and', 'get', 'it', 'done', 'quickly,']]\n",
+ "[['seasons,', 'will', 'be', 'paid', '$18', 'million'], 'in', ['2009', 'and', 'has', 'options', 'for', '2010']]\n",
+ "[['of', 'the', 'younger', 'talent', 'they', 'lost'], 'in', ['the', 'Miguel', 'Cabrera', 'and', 'Edgar', 'Renteria']]\n",
+ "[['and', 'with', 'Jason', 'getting', 'up', 'there'], 'in', ['years,', 'I', 'think', 'the', 'best', 'bet']]\n",
+ "[['think', 'the', 'best', 'bet', 'is', 'staying'], 'in', ['Boston,\"', 'said', 'the', 'official.', '\"He\\'s', 'more']]\n",
+ "[['League.\"', 'Short', 'hops', '\"Boo:', 'A', 'Life'], 'in', ['Baseball,', 'Well-Lived,\"', 'by', 'Rick', 'Cleveland,', 'is']]\n",
+ "[['the', 'baseball', 'coach', 'at', 'Delta', 'State'], 'in', ['Mississippi', '...', 'Terry', 'Francona,', 'who', 'has']]\n",
+ "[['bands,', 'the', 'most', 'hyped', 'non-playoff', 'game'], 'in', ['league', 'history.', 'The', 'NFL', 'Network', 'devoted']]\n",
+ "[['Bradyless', 'Patriots', 'against', 'the', 'sub.-500', 'Colts'], 'in', ['Lucas', 'Oil', '(Can', 'Boyd)', 'Stadium.', 'Sorry,']]\n",
+ "[['stunned', 'by', 'the', 'San', 'Diego', 'Chargers'], 'in', ['the', 'playoffs', 'last', 'winter,', 'denying', 'us']]\n",
+ "[['for', 'another', 'conference', 'championship', 'showdown.', 'Folks'], 'in', ['Indy', 'were', 'still', 'getting', 'over', 'the']]\n",
+ "[['had', 'surgery', 'on', 'a', 'staph-infected', 'bursa'], 'in', ['his', 'left', 'knee', 'in', 'July.', \"Manning's\"]]\n",
+ "[['staph-infected', 'bursa', 'in', 'his', 'left', 'knee'], 'in', ['July.', \"Manning's\", 'recovery', 'was', 'slowed', 'by']]\n",
+ "[['learning', 'to', 'live', 'without', 'Brady,', 'depleted'], 'in', ['both', 'backfields.', 'Even', 'with', 'a', 'hoodied']]\n",
+ "[['the', 'ninth', 'meeting', 'between', 'the', 'teams'], 'in', ['the', 'last', 'six', 'seasons.', 'Belichick,', 'rarely']]\n",
+ "[['the', 'NFL', 'season,', 'and', 'with', 'that'], 'in', ['mind,', 'here', 'is', 'one', \"man's\", 'ballot']]\n",
+ "[['hired,', 'Zorn', 'has', 'the', 'Redskins', '(6-2)'], 'in', ['second', 'place', 'in', 'the', 'competitive', 'NFC']]\n",
+ "[['the', 'Redskins', '(6-2)', 'in', 'second', 'place'], 'in', ['the', 'competitive', 'NFC', 'East.', 'Top', 'rookie:']]\n",
+ "[['record', 'and', 'looks', 'like', 'a', 'star'], 'in', ['the', 'making.', 'Best', 'free', 'agent', 'signing:']]\n",
+ "[['backup', 'to', 'running', 'back', 'LaDainian', 'Tomlinson'], 'in', ['San', 'Diego', 'for', 'four', 'seasons,', 'he']]\n",
+ "[['for', 'four', 'seasons,', 'he', 'has', 'shined'], 'in', ['a', 'starring', 'role', 'with', 'the', 'Falcons']]\n",
+ "[['a', 'three-year', 'contract', 'with', '$10', 'million'], 'in', ['bonuses/guarantees', 'produced', 'for', 'the', 'Jaguars?', 'One']]\n",
+ "[['No.', '1', 'overall', 'pick', 'Alex', 'Smith'], 'in', ['San', 'Francisco,', 'he', 'tossed', '11', 'interceptions,']]\n",
+ "[['they', 'are', 'fortunate', 'to', 'be', 'playing'], 'in', ['the', 'weak', 'AFC', 'West,', 'so', 'they']]\n",
+ "[['Leibowitz', '-', 'president', 'of', '\"American', 'Football'], 'in', ['Israel\"', '-', 'called', 'a', 'significant', 'development']]\n",
+ "[['called', 'a', 'significant', 'development', 'to', 'assist'], 'in', ['the', '\"long-term', 'plan', 'to', 'build', 'tackle']]\n",
+ "[['\"long-term', 'plan', 'to', 'build', 'tackle', 'football'], 'in', ['Israel', 'from', 'the', 'ground', 'up.\"', '\"Having']]\n",
+ "[['ensure', 'a', 'smooth', 'development,\"', 'he', 'wrote'], 'in', ['an', 'e-mail.', 'The', 'league,', 'now', 'in']]\n",
+ "[['in', 'an', 'e-mail.', 'The', 'league,', 'now'], 'in', ['its', 'second', 'season,', 'will', 'have', 'five']]\n",
+ "[['season,', 'will', 'have', 'five', 'teams', '(two'], 'in', ['Jerusalem,', 'one', 'each', 'in', 'Haifa,', 'Tel']]\n",
+ "[['teams', '(two', 'in', 'Jerusalem,', 'one', 'each'], 'in', ['Haifa,', 'Tel', 'Aviv,', 'and', 'Modiin).', 'Expansion']]\n",
+ "[['scheduled', 'for', '2009', 'with', 'an', 'agreement'], 'in', ['place', 'for', 'Patriots', 'tight', 'end', 'Benjamin']]\n",
+ "[['Watson', 'to', 'sponsor', 'the', 'new', 'team'], 'in', ['Beersheva.', 'Prior', 'to', '2007,', 'the', 'only']]\n",
+ "[['2007,', 'the', 'only', 'organized', 'football', 'played'], 'in', ['Israel', 'was', 'flag', 'football,', 'with', 'about']]\n",
+ "[['the', 'Boston', 'bench', 'brief', '(74', 'games'], 'in', ['2000-01),', 'earned', 'his', '\"Iron', 'Mike\"', 'reputation']]\n",
+ "[['stern,', 'demanding,', 'oft-unpredictable', 'approach', 'with', 'players,'], 'in', ['particular', 'while', 'in', 'Philadelphia', 'and', 'Chicago']]\n",
+ "[['approach', 'with', 'players,', 'in', 'particular', 'while'], 'in', ['Philadelphia', 'and', 'Chicago', 'in', 'his', 'earlier']]\n",
+ "[['particular', 'while', 'in', 'Philadelphia', 'and', 'Chicago'], 'in', ['his', 'earlier', 'days.', 'Holding', 'court', 'with']]\n",
+ "[['asked', 'if', 'he', 'can', 'scare', 'players'], 'in', [\"today's\", 'hockey.', '\"I', \"don't\", 'know', 'if']]\n",
+ "[['to', 'develop', 'a', 'sense', 'of', 'urgency'], 'in', ['your', 'players,', 'and', 'they', 'have', 'to']]\n",
+ "[['enjoy', 'it.\"', 'How', 'about', 'Mark', 'Messier'], 'in', ['New', 'York,', 'the', 'year', '(1993-94)', 'Keenan']]\n",
+ "[['embraced', 'the', 'competition.\"', 'All', 'true', 'today'], 'in', ['Calgary,', 'said', 'Keenan,', 'where', 'he', 'has']]\n",
+ "[['where', 'he', 'has', 'a', 'built-in', 'leader'], 'in', ['Jarome', 'Iginla', 'to', 'wrap', 'both', 'arms']]\n",
+ "[['and', '((Dion))', 'Phaneuf,', 'they', 'all', 'step'], 'in', ['line.', 'You', 'get', 'that', 'kind', 'of']]\n",
+ "[['the', 'winger', 'was', 'his', 'favorite', 'non-Bruin'], 'in', ['the', 'NHL.', '\"Really?', 'I', 'thought', 'Joe']]\n",
+ "[['the', 'best', 'out', 'of', 'Jumbo', 'Joe'], 'in', ['Boston,', '\"because', \"he's\", 'a', 'pretty', 'good']]\n",
+ "[['an', 'NBA', 'champion,', 'getting', 'two', 'attempts'], 'in', ['his', 'illustrious', 'career.', 'While', 'he', 'believes']]\n",
+ "[['and', 'keep', 'playing', 'hard.', 'But', \"they're\"], 'in', ['a', 'great', 'position', 'to', 'do', 'it,']]\n",
+ "[['we', 'got', 'the', 'pieces.\"', 'Robinson', 'was'], 'in', ['Boston', 'on', 'business', 'last', 'week', 'and']]\n",
+ "[['a', 'lot', 'and', 'cheering', 'those', 'guys'], 'in', ['San', 'Antonio,\"', 'Robinson', 'said', 'of', 'his']]\n",
+ "[['no', 'longer', 'the', 'most', 'intimidating', 'force'], 'in', ['sports,', 'let', 'alone', 'basketball.', 'And', 'while']]\n",
+ "[['I', 'wanted', 'was', 'one', '((championship))', 'back'], 'in', ['the', 'day,\"', \"O'Neal\", 'said.', '\"Then', 'I']]\n",
+ "[['points,', '10.5', 'rebounds,', 'and', '1.5', 'blocks'], 'in', ['his', 'first', 'two', 'games', 'this', 'season.']]\n",
+ "[['of', 'the', 'playoffs', 'after', 'acquiring', \"O'Neal\"], 'in', ['a', 'midseason', 'deal,', 'he', 'took', 'the']]\n",
+ "[['belt', 'and', 'a', 'defensive-minded', 'new', 'coach'], 'in', ['Terry', 'Porter,', \"O'Neal\", 'feels', 'the', 'Suns']]\n",
+ "[['will', 'have', 'countless', 'opportunities', 'awaiting', 'him'], 'in', ['the', 'entertainment', 'world,', 'plus', 'TNT', 'and']]\n",
+ "[['analysis.', 'And', 'he', 'will', 'be', 'welcomed'], 'in', ['his', 'beloved', 'field', 'of', 'law', 'enforcement.']]\n",
+ "[['But', \"I'm\", 'going', 'to', 'have', 'fun'], 'in', ['my', 'after-NBA', 'life.\"', 'HANOVER,', 'N.H.', '-']]\n",
+ "[['and', 'run.', 'Chris', 'Pizzotti', 'stepped', 'back'], 'in', ['the', 'pocket,', 'surveyed', 'the', 'landscape,', 'noting']]\n",
+ "[['the', 'number', 'of', 'green', 'jerseys', 'deep'], 'in', ['coverage', 'and', 'the', 'open', 'territory', 'ahead.']]\n",
+ "[['plays', 'later,', 'the', 'senior', 'quarterback', 'gathered'], 'in', ['the', 'shotgun', 'snap', 'and', 'galloped', '11']]\n",
+ "[['attack', 'that', 'delivered', 'a', 'season-best', 'effort'], 'in', ['a', '35-7', 'Ivy', 'League', 'conquest', 'in']]\n",
+ "[['in', 'a', '35-7', 'Ivy', 'League', 'conquest'], 'in', ['front', 'of', '4,111', 'at', 'Memorial', 'Field.']]\n",
+ "[['year,', 'but', \"it's\", 'been', 'reflected', 'more'], 'in', ['the', 'passing', 'game,\"', 'said', 'Pizzotti,', 'who']]\n",
+ "[['We', 'knew', 'that', 'we', 'could', 'come'], 'in', ['and', 'establish', 'a', 'running', 'game.', 'Dartmouth']]\n",
+ "[['was', 'dropping', 'seven', 'to', 'eight', 'guys'], 'in', ['coverage.', 'I', 'had', 'nothing', 'else', 'to']]\n",
+ "[['3-1)', 'rushed', 'for', 'more', 'yards', '(183)'], 'in', ['the', 'first', '30', 'minutes', 'than', 'it']]\n",
+ "[['first', '30', 'minutes', 'than', 'it', 'had'], 'in', ['all', 'but', 'one', 'game', 'this', 'season']]\n",
+ "[['showed', 'off', 'his', 'nifty', 'running', 'skills'], 'in', ['the', 'second', 'half.', 'The', 'only', 'downer']]\n",
+ "[['quarterback', 'Alex', 'Jenny,', 'who', 'departed', 'early'], 'in', ['the', 'third', 'quarter.', 'The', 'Crimson', 'went']]\n",
+ "[['20-0', 'lead.', 'In', 'a', 'second', 'half'], 'in', ['which', 'the', 'Crimson', 'attempted', 'just', 'three']]\n",
+ "[['prize,', 'as', 'Bill', 'Rodgers', 'first', 'did'], 'in', ['1976.', 'Paula', 'Radcliffe', 'came', 'up', 'lame']]\n",
+ "[['1976.', 'Paula', 'Radcliffe', 'came', 'up', 'lame'], 'in', ['Beijing', 'and', 'placed', 'a', 'career-worst', '23d.']]\n",
+ "[['finished', 'well', 'out', 'of', 'the', 'medals'], 'in', ['the', '5,000', 'and', '10,000', 'meters', 'on']]\n",
+ "[['the', 'world', 'record-holder,', 'who', 'won', 'here'], 'in', ['2004', 'after', 'dropping', 'out', 'of', 'the']]\n",
+ "[['Kenyan', 'who', 'has', 'won', 'four', 'times'], 'in', ['Boston', 'and', 'twice', 'in', 'Chicago,', 'a']]\n",
+ "[['four', 'times', 'in', 'Boston', 'and', 'twice'], 'in', ['Chicago,', 'a', 'triumph', 'here', 'would', 'complete']]\n",
+ "[['to', 'win', 'here', 'since', 'Miki', 'Gorman'], 'in', ['1977,', 'when', '2', 'hours', '43', 'minutes']]\n",
+ "[['Lel,', 'who', 'broke', 'his', 'left', 'foot'], 'in', ['the', 'Lisbon', 'half-marathon', 'in', 'September,', 'the']]\n",
+ "[['left', 'foot', 'in', 'the', 'Lisbon', 'half-marathon'], 'in', ['September,', 'the', \"men's\", 'race', 'figures', 'to']]\n",
+ "[['male', 'to', 'win', 'since', 'Alberto', 'Salazar'], 'in', ['1982.', 'The', 'Americans', 'have', 'been', 'creeping']]\n",
+ "[['closer,', 'with', 'Meb', 'Keflezighi', 'placing', 'second'], 'in', ['2004', 'and', 'third', 'in', '2005.', 'Abdirahman,']]\n",
+ "[['placing', 'second', 'in', '2004', 'and', 'third'], 'in', ['2005.', 'Abdirahman,', 'who', 'was', 'fifth', 'in']]\n",
+ "[['in', '2005.', 'Abdirahman,', 'who', 'was', 'fifth'], 'in', ['2005,', 'would', 'have', 'a', 'decent', 'chance']]\n",
+ "[['2005,', 'would', 'have', 'a', 'decent', 'chance'], 'in', ['a', 'tactical', 'race.', '\"The', 'things', \"I've\"]]\n",
+ "[['Abdirahman,', 'whose', 'personal', 'best', 'is', '2:08:56'], 'in', ['Chicago.', '\"And', \"I'm\", 'ready.\"', 'The', 'odds']]\n",
+ "[['and', 'a', 'couple', 'of', 'Boston', 'victors'], 'in', [\"Ethiopia's\", 'Dire', 'Tune', 'and', \"Kenya's\", 'Rita']]\n",
+ "[[\"everyone's\", 'stats', 'and', 'everything', \"they've\", 'done'], 'in', ['the', 'marathon,', \"it's\", 'a', 'little', 'bit']]\n",
+ "[['Besides', 'the', 'world', 'mark', '(2:15:25', 'set'], 'in', ['2003),', 'she', 'has', 'won', 'every', 'marathon']]\n",
+ "[['at', 'Alumni', 'Stadium', 'for', 'Boston', 'College'], 'in', ['its', 'Atlantic', 'Coast', 'Conference', 'showdown', 'with']]\n",
+ "[['with', 'Clemson.', 'For', 'the', 'second', 'week'], 'in', ['a', 'row,', 'the', 'offense', 'sputtered,', 'the']]\n",
+ "[['looked', 'doomed', 'with', 'another', 'tough', 'loss'], 'in', ['a', 'game', 'they', 'had', 'to', 'win']]\n",
+ "[['crown.', 'As', 'has', 'been', 'the', 'case'], 'in', ['this', 'series,', 'the', 'outcome', \"wasn't\", 'decided']]\n",
+ "[['seconds,', 'which', 'this', 'time', 'worked', 'out'], 'in', ['the', \"Tigers'\", 'favor', 'as', 'they', 'hung']]\n",
+ "[['comeback,', 'which', 'came', 'with', 'a', 'flourish'], 'in', ['the', 'fourth', 'quarter.', 'The', 'Eagles', 'drew']]\n",
+ "[['lead', 'to', '17-14', 'with', '10:36', 'remaining'], 'in', ['the', 'fourth', 'quarter.', 'When', 'BC', 'safety']]\n",
+ "[['was', \"Crane's\", 'turn.', 'With', '2:39', 'left'], 'in', ['regulation,', 'the', '6-foot-5-inch', 'senior', 'took', 'over']]\n",
+ "[['sideline', 'pass', 'to', 'fullback', 'James', 'McCluskey'], 'in', ['front', 'of', 'the', 'Clemson', 'bench.', 'The']]\n",
+ "[['ended', 'on', 'a', '35-yard', 'Hail', 'Mary'], 'in', ['the', 'final', 'minute.', 'And', 'some', 'of']]\n",
+ "[['because', 'they', 'played', 'the', 'toughest', 'schedule'], 'in', ['the', 'Colonial', 'Athletic', 'Conference.', '\"I', 'have']]\n",
+ "[['So,', 'I', 'know', 'what', 'can', 'happen'], 'in', ['this', 'stadium.\"', 'Seeing', 'the', 'Huskies', 'convert']]\n",
+ "[['Villanova', 'responded,', 'putting', 'up', '20', 'points'], 'in', ['a', 'little', 'more', 'than', '12', 'minutes.']]\n",
+ "[['a', 'nasty', 'game.', 'But', 'I', 'thought'], 'in', ['the', 'end', 'we', 'would', 'have', 'enough']]\n",
+ "[['Huskies', 'have', 'allowed', 'all', 'season.', 'But'], 'in', ['the', 'second', 'half,', 'NU', 'found', 'a']]\n",
+ "[['of', 'times', 'he', 'said', '\"cotton-picking,\"', 'as'], 'in', ['\"cotton-picking\"', 'inches', 'from', 'a', 'win.', '\"We']]\n",
+ "[['hair', 'was', 'still', 'brown.', 'I', 'try'], 'in', ['vain', 'to', 'recall', 'the', 'key', 'points']]\n",
+ "[['vain', 'to', 'recall', 'the', 'key', 'points'], 'in', ['this', 'race.', '(Iowa', '...', 'give', 'me']]\n",
+ "[['form', 'a', 'menagerie', 'you', \"can't\", 'find'], 'in', ['a', 'rain', 'forest.', 'Remember', 'instead', 'my']]\n",
+ "[['forest.', 'Remember', 'instead', 'my', 'favorite', 'character'], 'in', ['this', 'whole', 'melodrama,', 'Levi', 'Johnston.', \"He's\"]]\n",
+ "[['he', 'always', 'assumed', 'that', 'what', 'happens'], 'in', ['Wasilla', 'stays', 'in', 'Wasilla.', 'Not', 'this']]\n",
+ "[['that', 'what', 'happens', 'in', 'Wasilla', 'stays'], 'in', ['Wasilla.', 'Not', 'this', 'time,', 'boyo.', 'Without']]\n",
+ "[['this', 'time,', 'boyo.', 'Without', 'mother', 'Palin'], 'in', ['the', 'klieg', 'lights,', 'Bristol', 'and', 'Levi']]\n",
+ "[['as', 'Levi', 'knew', 'it', 'blew', 'up'], 'in', ['his', 'face.', 'He', 'is', 'now', 'a']]\n",
+ "[['of', 'his', 'newborn', 'will', 'end', 'up'], 'in', ['People', 'magazine.', 'Whoa.', 'One', 'day,', 'Levi']]\n",
+ "[['One', 'day,', 'Levi', 'is', 'sitting', 'pretty'], 'in', ['Levi', 'World.', 'Then,', 'abracadabra,', 'Levi', 'is']]\n",
+ "[['the', 'Minneapolis', 'airport', 'meeting', 'the', 'McCains'], 'in', ['the', 'presence', 'of', 'an', 'alarming', 'number']]\n",
+ "[['of', 'an', 'alarming', 'number', 'of', 'guys'], 'in', ['dark', 'suits', 'and', 'shades.', 'Whoa', 'again.']]\n",
+ "[['the', 'altar.', 'Next', 'we', 'see', 'Levi'], 'in', ['a', 'suit,', 'seated', '-', 'no,', 'cemented']]\n",
+ "[['clearly', 'shaken', 'by', 'the', 'tectonic', 'shift'], 'in', ['his', 'life.', 'You', 'could', 'see', 'it']]\n",
+ "[['his', 'life.', 'You', 'could', 'see', 'it'], 'in', ['his', 'eyes.', 'Throughout', 'the', 'week,', 'he']]\n",
+ "[['has', 'found', 'a', 'comfy', 'new', 'home'], 'in', ['the', 'limelight,', 'much', 'as', 'Madonna', 'did']]\n",
+ "[['like', 'him', 'because', \"he's\", 'so', 'unkempt'], 'in', ['an', 'army', 'of', 'the', 'kempt.', 'What']]\n",
+ "[['a', 'Bradley', 'Fighting', 'Vehicle', 'for', '$150,000'], 'in', ['glad', 'rags', 'and', 'makeup', 'for', 'Palin.']]\n",
+ "[['Think', 'too', 'of', 'the', 'young', 'man'], 'in', ['a', 'red', 'parka', 'atop', 'a', 'snowdrift']]\n",
+ "[['Nader,', 'the', 'savant', 'who', 'told', 'us'], 'in', ['2000', 'there', 'was', 'no', 'difference', 'between']]\n",
+ "[['records', 'for', 'the', 'most', 'stump', 'speeches'], 'in', ['one', 'day,', 'across', 'Massachusetts,', 'for', 'the']]\n",
+ "[['than', 'Democrats.', 'They', 'just', 'do.', 'But'], 'in', ['a', 'portentous', 'change', 'this', 'summer,', 'Denver']]\n",
+ "[[\"I'll\", 'remember', 'Bill', \"Clinton's\", 'boffo', 'speech'], 'in', ['praise', 'of', 'Obama', 'in', 'Denver', 'because']]\n",
+ "[['boffo', 'speech', 'in', 'praise', 'of', 'Obama'], 'in', ['Denver', 'because', 'he', \"didn't\", 'mean', 'a']]\n",
+ "[['imagine', 'Bubba', 'and', 'her', 'ensconced', 'up'], 'in', ['the', 'Naval', 'Observatory', 'residence', 'of', 'the']]\n",
+ "[['him', 'the', 'most', 'intriguing', 'American', 'politician'], 'in', ['memory.', 'And', \"I'll\", 'remember', 'the', 'third']]\n",
+ "[['debate,', 'when', 'I', 'saw', 'the', 'bile'], 'in', ['John', 'McCain,', 'his', 'eyes', 'aglitter', 'and']]\n",
+ "[['eyes', 'aglitter', 'and', 'his', 'mouth', 'locked'], 'in', ['a', 'fake', 'smile,', 'I', \"hadn't\", 'seen']]\n",
+ "[['analyze', 'are', 'the', 'emotions', 'they', 'generate'], 'in', ['us.', 'Sam', 'Allis', 'can', 'be', 'reached']]\n",
+ "[['South', 'Side', 'resident', 'Conrad', 'Cochran', 'waited'], 'in', ['line', 'to', 'cast', 'his', 'very', 'first']]\n",
+ "[['Harold', 'Washington,', \"Chicago's\", 'first', 'black', 'mayor'], 'in', ['1983.', 'Now,', 'at', 'age', '89,', 'Cochran,']]\n",
+ "[['matter', 'that', 'he', 'had', 'to', 'wait'], 'in', ['a', 'three-hour-long', 'line', 'to', 'do', 'it.']]\n",
+ "[['\"It', 'means', 'change\"', \"that's\", 'been', 'long'], 'in', ['coming,', '\"and', 'now', \"it's\", 'finally', 'happening,\"']]\n",
+ "[['the', 'most', 'significant', 'black', 'political', 'figures'], 'in', ['American', 'history,', 'including', 'Dawson,', 'a', 'powerful']]\n",
+ "[['candidate;', 'and', 'Carol', 'Moseley', 'Braun,', 'who'], 'in', ['1996', 'became', 'the', 'first', 'black', 'woman']]\n",
+ "[['\"Only', 'Harlem', 'might', 'have', 'been', 'stronger\"'], 'in', ['producing', 'black', 'political', 'leaders', 'of', 'national']]\n",
+ "[['Dawson,', 'who', 'won', 'his', 'congressional', 'seat'], 'in', ['1942.', 'The', \"city's\", 'South', 'Side,', 'Michael']]\n",
+ "[['Chicago', 'has', 'occupied', 'a', 'unique', 'place'], 'in', ['African-American', 'history,', 'and', 'a', 'high', 'number']]\n",
+ "[['South', 'Side,', 'decades', 'before', 'his', 'birth'], 'in', ['Hawaii.', 'Historians', 'note', 'that,', 'beginning', 'in']]\n",
+ "[['in', 'Hawaii.', 'Historians', 'note', 'that,', 'beginning'], 'in', ['the', 'early', '1900s,', 'that', 'area', 'of']]\n",
+ "[['hostility', 'and', 'segregation', 'along', 'with', 'jobs'], 'in', [\"Chicago's\", 'factories', 'and', 'foundries.', 'Most', 'of']]\n",
+ "[['African-American', 'doctors,', 'dentists,', 'and', 'attorneys,', 'which'], 'in', ['turn', 'helped', 'create', 'the', \"city's\", 'upwardly-mobile']]\n",
+ "[['who', 'represents', 'the', 'Hyde', 'Park', 'neighborhood'], 'in', ['the', 'South', 'Side,', 'said', 'the', 'area']]\n",
+ "[['Mitchell,', 'who', 'was', 'elected', 'to', 'Congress'], 'in', ['the', '1930s.', 'Dawson,', 'she', 'said,', 'was']]\n",
+ "[['\"has', 'produced', 'the', 'preeminent', 'African-American', 'politicians'], 'in', ['the', 'country,\"', 'said', 'Preckwinkle,', 'who', 'was']]\n",
+ "[['the', 'area', 'as', 'a', 'community', 'organizer'], 'in', ['the', '1990s.', 'David', 'Axelrod,', \"Obama's\", 'chief']]\n",
+ "[['newspaper', 'when', 'Washington', 'ran', 'for', 'mayor'], 'in', ['\"a', 'very,', 'very', 'ugly', 'election\"', 'that']]\n",
+ "[['States', 'senators.', \"We've\", 'made', 'tremendous', 'progress'], 'in', ['Illinois', 'in', 'breaking', 'down', 'some', 'of']]\n",
+ "[[\"We've\", 'made', 'tremendous', 'progress', 'in', 'Illinois'], 'in', ['breaking', 'down', 'some', 'of', 'these', 'old']]\n",
+ "[['said', 'Axelrod,', 'pausing', 'between', 'campaign', 'events'], 'in', ['Florida', 'during', 'the', 'last', 'week', 'of']]\n",
+ "[['presidential', 'campaign', 'with', 'a', 'clear', 'lead'], 'in', ['the', 'polls', '-', 'but', 'not', 'so']]\n",
+ "[['the', 'results', 'signify', 'a', 'deeper', 'realignment'], 'in', ['American', 'politics.', '\"We', 'like', 'to', 'tell']]\n",
+ "[['this', 'time', 'there', 'are', 'larger', 'forces'], 'in', ['play.\"', 'And', 'while', \"Obama's\", 'lead,', 'between']]\n",
+ "[['between', 'three', 'and', 'seven', 'percentage', 'points'], 'in', ['most', 'national', 'polls,', 'is', 'big', 'enough']]\n",
+ "[['interview', 'suggesting', 'that', 'Obama', 'may', 'believe'], 'in', ['\"redistributive\"', 'economics.', 'During', 'the', 'heyday', 'of']]\n",
+ "[['a', 'mechanism', '\"spreads', 'the', 'wealth,\"', \"he's\"], 'in', ['favor', 'of', 'it.', 'Many', 'observers', 'have']]\n",
+ "[['that', 'Americans', 'want', 'more', 'economic', 'security'], 'in', ['their', 'lives,', 'including', 'guaranteed', 'healthcare,', 'pensions,']]\n",
+ "[['public', 'infrastructure.', 'And', 'the', 'McCain', 'campaign,'], 'in', ['a', 'break', 'with', 'Ronald', \"Reagan's\", 'creed']]\n",
+ "[['to', 'be', 'falling', 'on', 'deaf', 'ears;'], 'in', ['recent', 'weeks,', 'the', 'GOP', 'nominee', 'has']]\n",
+ "[['liberalism.', '\"What', \"we're\", 'going', 'to', 'see,'], 'in', ['short,', 'is', 'the', 'Gingrich', 'revolution', 'in']]\n",
+ "[['in', 'short,', 'is', 'the', 'Gingrich', 'revolution'], 'in', ['reverse', 'and', 'on', 'steroids,\"', 'Brooks', 'wrote']]\n",
+ "[['who', 'tried', 'to', 'present', 'his', 'policies'], 'in', ['modest', 'terms.', 'A', 'big', 'Obama', 'win,']]\n",
+ "[['thousands', 'of', 'African-Americans,', 'most', 'with', 'children'], 'in', ['tow,', 'waited', 'for', 'hours', 'in', 'security']]\n",
+ "[['children', 'in', 'tow,', 'waited', 'for', 'hours'], 'in', ['security', 'lines', 'to', 'enter', \"Denver's\", 'football']]\n",
+ "[['Much', 'of', 'black', \"voters'\", 'faith', 'is'], 'in', ['Obama', 'himself.', 'But', 'there', 'is', 'also']]\n",
+ "[['almost', 'all', 'assumptions', 'about', 'race', 'relations'], 'in', ['America.', 'But', 'if', 'Obama', 'were', 'to']]\n",
+ "[['-', 'black', 'hopes', 'would', 'be', 'dashed'], 'in', ['a', 'way', 'that', 'could', 'increase', 'racial']]\n",
+ "[['could', 'increase', 'racial', 'tensions,', 'at', 'least'], 'in', ['the', 'short', 'term.', 'Still,', 'the', 'legacy']]\n",
+ "[['young', 'people', 'becoming', 'a', 'driving', 'force'], 'in', ['American', 'politics?', 'Back', 'in', 'the', \"'60s,\"]]\n",
+ "[['driving', 'force', 'in', 'American', 'politics?', 'Back'], 'in', ['the', \"'60s,\", 'the', 'emerging', 'Baby', 'Boom']]\n",
+ "[['Democrats', 'and', 'Republicans,', 'while', 'turning', 'out'], 'in', ['smaller', 'numbers', 'overall.', 'Their', 'strongest', 'sentiment']]\n",
+ "[['for', 'this', \"year's\", 'Democratic', 'primaries', 'than'], 'in', ['2004,', 'no', 'one', 'is', 'sure', 'whether']]\n",
+ "[['voters', 'will', 'take', 'another', 'big', 'leap'], 'in', ['the', 'general', 'election.', '\"We\\'re', 'expecting', 'them']]\n",
+ "[['do', 'Americans', 'care', 'about', 'their', 'image'], 'in', ['the', 'world?', 'Arguably,', 'the', 'opinions', 'of']]\n",
+ "[['foreigners', 'have', 'never', 'counted', 'for', 'anything'], 'in', ['US', 'politics.', 'Some', 'of', 'the', 'most']]\n",
+ "[['of', 'the', 'most', 'unpopular', 'American', 'presidents'], 'in', ['the', 'outside', 'world', '-', 'such', 'as']]\n",
+ "[['domestic', 'flops.', 'But', 'the', 'latest', 'plunge'], 'in', [\"America's\", 'standing', 'in', 'the', 'world,', 'spurred']]\n",
+ "[['the', 'latest', 'plunge', 'in', \"America's\", 'standing'], 'in', ['the', 'world,', 'spurred', 'by', 'the', 'policies']]\n",
+ "[['to', 'share', 'the', 'costs', 'of', 'intervention'], 'in', ['Iraq.', 'Obama', 'has', 'cited', 'his', 'own']]\n",
+ "[['own', 'racial', 'background', 'and', 'time', 'spent'], 'in', ['Indonesia', 'as', 'a', 'reason', 'why', '\"the']]\n",
+ "[['allies', 'by', 'staging', 'a', 'campaign-style', 'rally'], 'in', ['Berlin,', 'attended', 'by', 'hundreds', 'of', 'thousands']]\n",
+ "[['of', 'thousands', 'of', 'adoring', 'Germans.', 'Elsewhere'], 'in', ['the', 'world,', 'from', 'Europe', 'to', 'Asia,']]\n",
+ "[['States', 'under', 'a', 'President', 'Obama.', 'But'], 'in', ['recent', 'weeks,', 'foreign', 'policy', 'has', 'taken']]\n",
+ "[['policy', 'has', 'taken', 'a', 'back', 'seat'], 'in', ['the', 'election,', 'so', 'it', 'will', 'be']]\n",
+ "[['the', 'three', 'legs,', 'but', \"they've\", 'bought'], 'in', ['strongly', 'enough', 'that', 'their', 'disagreements', 'with']]\n",
+ "[['the', 'stool', 'has', 'been', 'wobbling.', 'Back'], 'in', ['Easter', 'of', '2005,', 'the', 'president', 'and']]\n",
+ "[['rushed', 'back', 'to', 'Washington', 'to', 'intervene'], 'in', ['the', 'case', 'of', 'Terri', 'Schiavo,', 'a']]\n",
+ "[['Republicans', 'away.', 'Likewise,', 'the', 'unexpected', 'toll'], 'in', ['Iraq', 'has', 'sparked', 'concerns', 'among', 'evangelicals,']]\n",
+ "[['the', 'African-American', 'agenda,\"', 'says', 'Patterson.', 'But'], 'in', ['the', 'short', 'term,', 'he', 'said,', 'much']]\n",
+ "[['the', \"economy's\", 'weak,', \"they'll\", 'gain', 'seats'], 'in', ['Congress', 'in', 'two', 'years,\"', 'assuming', 'that']]\n",
+ "[['weak,', \"they'll\", 'gain', 'seats', 'in', 'Congress'], 'in', ['two', 'years,\"', 'assuming', 'that', 'Democrats,', 'as']]\n",
+ "[['declare', 'that', 'the', \"party's\", 'back.\"', 'But'], 'in', ['what', 'form', 'will', 'remain', 'to', 'be']]\n",
+ "[['that', 'she', 'accepted', 'bribes', 'worth', '$23,500'], 'in', ['an', 'FBI', 'undercover', 'operation.', 'Surveillance', 'photos']]\n",
+ "[['summoned', 'before', 'a', 'federal', 'grand', 'jury'], 'in', ['connection', 'with', \"Wilkerson's\", 'effort', 'to', 'secure']]\n",
+ "[['a', 'bigger', 'story,', 'a', 'generational', 'transition'], 'in', ['black', 'leadership', 'that', 'is', 'sweeping', 'the']]\n",
+ "[['Rosa', 'Parks,', 'who', 'refused', 'to', 'sit'], 'in', ['the', 'back', 'of', 'a', 'bus', 'in']]\n",
+ "[['in', 'the', 'back', 'of', 'a', 'bus'], 'in', ['Montgomery,', 'Ala.,', 'and', 'to', 'Martin', 'Luther']]\n",
+ "[['movement', 'that', 'could', 'culminate', 'with', 'Obama'], 'in', ['the', 'Oval', 'Office.', 'But,', 'suddenly', 'in']]\n",
+ "[['in', 'the', 'Oval', 'Office.', 'But,', 'suddenly'], 'in', ['Boston,', 'the', 'headiness', 'of', 'watching', \"Obama's\"]]\n",
+ "[['damning', 'photographs', 'that', 'allegedly', 'catch', 'her'], 'in', ['the', 'act', 'of', 'being', 'bribed,', 'Wilkerson']]\n",
+ "[['the', 'style', 'and', 'rhetoric', 'Obama', 'embraced'], 'in', ['his', 'historic', 'run', 'for', 'the', 'presidency.']]\n",
+ "[['heads', 'the', 'Ella', 'J.', 'Baker', 'House'], 'in', ['Dorchester,', 'Wilkerson', 'represents', '\"a', 'different', 'style']]\n",
+ "[['different', 'generation,', 'which', 'may', 'be', 'archaic'], 'in', ['terms', 'of', 'leadership', 'in', 'the', 'black']]\n",
+ "[['be', 'archaic', 'in', 'terms', 'of', 'leadership'], 'in', ['the', 'black', 'community.\"', 'After', 'Obama,', 'he']]\n",
+ "[['his.', 'The', 'fault,', 'Dianne,', 'lies', 'not'], 'in', ['the', 'stars,', 'but', 'in', 'ourselves.', 'Joan']]\n",
+ "[['lies', 'not', 'in', 'the', 'stars,', 'but'], 'in', ['ourselves.', 'Joan', 'Vennochi', 'can', 'be', 'reached']]\n",
+ "[['the', 'dimly', 'lit', 'restaurant', 'he', 'owns'], 'in', ['this', 'once-thriving', 'steel', 'town,', 'he', 'said']]\n",
+ "[['undecided', 'this', 'year.', '\"The', 'working', 'guy'], 'in', ['this', 'country', 'needs', 'a', 'break.\"', 'In']]\n",
+ "[[\"McCain's\", 'argument', 'resonates', '-', 'but', 'perhaps,'], 'in', ['this', 'economy,', 'not', 'as', 'strongly', 'as']]\n",
+ "[['are', 'much', 'harder', 'to', 'find', 'now'], 'in', ['Rochester;', 'in', 'the', 'last', 'year', 'a']]\n",
+ "[['harder', 'to', 'find', 'now', 'in', 'Rochester;'], 'in', ['the', 'last', 'year', 'a', 'sluggish', 'economy']]\n",
+ "[['rich,', 'and', 'some', 'corrective', 'action', 'is'], 'in', ['order.', '\"I', 'think', 'people', 'are', 'fed']]\n",
+ "[['works', 'at', 'a', 'sports', 'memorabilia', 'store'], 'in', ['Beaver,', 'the', 'thriving', 'and', 'picturesque', 'county']]\n",
+ "[['picturesque', 'county', 'seat.', 'He', 'once', 'believed'], 'in', ['trickle-down', 'economics.', 'When', 'Ronald', 'Reagan', 'was']]\n",
+ "[['the', 'presidency.', 'Though', 'he', 'is', 'behind'], 'in', ['the', 'polls,', 'he', 'hopes', 'to', 'pull']]\n",
+ "[['upset', 'by', 'picking', 'up', 'conservative', 'Democrats'], 'in', ['swing', 'counties', 'like', 'Beaver,', 'which', 'only']]\n",
+ "[['only', 'narrowly', 'went', 'for', 'John', 'Kerry'], 'in', ['2004.', \"McCain's\", 'focus', 'on', 'casting', 'Obama']]\n",
+ "[['casting', 'Obama', 'as', 'the', 'wealth', '\"redistributor'], 'in', ['chief\"', 'is', 'hard', 'to', 'miss', 'around']]\n",
+ "[['Muhlenberg', \"College's\", 'Institute', 'of', 'Public', 'Opinion'], 'in', ['Allentown,', 'said', 'his', 'tracking', 'polls', 'for']]\n",
+ "[['as', 'unpopular', 'here', 'as', 'it', 'is'], 'in', ['most', 'of', 'America,', 'Borick', 'said,', 'and']]\n",
+ "[['tried', 'to', 'help', 'the', 'working', 'people'], 'in', ['this', 'country,', 'but', 'he', \"didn't\", 'punish']]\n",
+ "[['is', 'anti-American.', 'Doug', 'Blaker,', 'a', 'contractor'], 'in', ['his', 'late', '40s,', 'was', 'handing', 'out']]\n",
+ "[['night', 'outside', 'the', 'Polish', 'Falcons', 'hall'], 'in', ['Ambridge,', 'an', 'ailing', 'former', 'steel', 'town.']]\n",
+ "[['prefers', \"McCain's\", 'experience', 'to', \"Obama's.\", 'But'], 'in', ['an', 'economy', 'like', 'this', 'one,', 'the']]\n",
+ "[['48-year-old', 'saleswoman', 'at', 'a', 'jewelry', 'store'], 'in', ['downtown', 'Rochester,', 'voted', 'for', 'Bill', 'Clinton']]\n",
+ "[['her,', 'she', 'said,', 'when', 'she', 'stands'], 'in', ['line', 'to', 'buy', 'hamburger', 'at', 'the']]\n",
+ "[['Hrelec', 'disagrees.', 'And', 'as', 'he', 'sat'], 'in', ['his', 'quiet', 'restaurant', 'the', 'other', 'day,']]\n",
+ "[['they', 'give', 'to', 'the', 'needy', 'people'], 'in', ['this', 'country,\"', 'he', 'said.', 'The', 'Detroit']]\n",
+ "[['restructuring', 'moves', 'by', \"Detroit's\", 'Big', 'Three'], 'in', ['the', 'face', 'of', 'intense', 'competition', 'from']]\n",
+ "[['to', 'the', 'Center', 'for', 'Automotive', 'Research'], 'in', ['Ann', 'Arbor.', 'And', 'the', 'industry', 'still']]\n",
+ "[['is', 'down', 'from', 'about', '5', 'percent'], 'in', ['previous', 'years.', 'The', 'U.S.', 'auto', \"industry's\"]]\n",
+ "[['economic', 'engine', 'for', 'the', 'country', 'is'], 'in', ['the', 'spotlight', 'now', 'as', 'GM,', 'Ford']]\n",
+ "[['worst', 'crisis', 'the', 'industry', 'has', 'faced'], 'in', ['years.', 'Sales', 'are', 'down', '13', 'percent']]\n",
+ "[['economy', 'and', 'try', 'to', 'put', 'it'], 'in', ['some', 'historical', 'perspective.', 'By', 'Alisa', 'Priddle.']]\n",
+ "[['We', 'will', 'be', 'out', 'with', 'volunteers'], 'in', ['Metro', 'Detroit,', 'too.', 'By', 'Gordon', 'Trowbridge.']]\n",
+ "[['Live,\"', 'the', '\"Duece', 'Bigelow\"', 'saga)', 'is'], 'in', ['town', 'filming', '\"Virgin', 'on', 'Bourbon', 'Street.\"']]\n",
+ "[['346-9867;', 'e-mail:', 'kenwalsh@nytimes.com.', 'INTERNATIONAL', '(Will', 'move'], 'in', ['\"i\"', 'news', 'file.)', 'ZIMBABWE-AID', '(Johannesburg,', 'South']]\n",
+ "[['the', 'use', 'of', 'international', 'aid', 'money'], 'in', ['Zimbabwe.', 'By', 'Celia', 'W.', 'Dugger.', 'CONGO-REBELS']]\n",
+ "[['the', 'Congolese', 'state', 'began', 'to', 'collapse'], 'in', ['1996,', 'it', 'set', 'off', 'a', 'regional']]\n",
+ "[['regional', 'war.', 'When', 'it', 'imploded', 'again'], 'in', ['1998,', 'it', 'dragged', 'in', 'armies', 'from']]\n",
+ "[['imploded', 'again', 'in', '1998,', 'it', 'dragged'], 'in', ['armies', 'from', 'half', 'a', 'dozen', 'African']]\n",
+ "[['intense', 'diplomatic', 'activity', 'Congo', 'has', 'seen'], 'in', ['years.', '(News', 'Analysis)', 'By', 'Jeffrey', 'Gettleman.']]\n",
+ "[['By', 'Jeffrey', 'Gettleman.', 'POLITICS', '(Will', 'move'], 'in', ['\"p\"', 'news', 'file.)', 'CAMPAIGN-OBAMA', '(Dateline', 'TK)']]\n",
+ "[['are', 'likely', 'to', 'make', 'major', 'inroads'], 'in', ['areas', 'that', 'the', 'GOP', 'has', 'had']]\n",
+ "[['as', 'VA.-CONGRESS-ELECT)', 'NATIONAL', 'GENERAL', '(Will', 'move'], 'in', ['\"a\"', 'news', 'file.)', 'GITMO-FUTURE', '(Undated)', '--']]\n",
+ "[['and', 'Margot', 'Williams.', 'FINANCIAL', '(Will', 'move'], 'in', ['\"f\"\\'', 'news', 'file.)', 'PRIVATE-EQUITY-WOES', '(Undated)', '--']]\n",
+ "[['and', 'several', 'others', 'have', 'one', 'thing'], 'in', ['common:', 'in', 'the', 'past,', 'they', 'were']]\n",
+ "[['others', 'have', 'one', 'thing', 'in', 'common:'], 'in', ['the', 'past,', 'they', 'were', 'all', 'bought']]\n",
+ "[['hole', 'for', 'many', 'Americans.', 'The', 'presidents'], 'in', ['this', 'period,', 'with', 'one', 'notable', 'exception,']]\n",
+ "[['too', 'is', 'no', 'airplane', 'read,', 'coming'], 'in', ['at', '904', 'pages,', 'but', 'he', 'covers']]\n",
+ "[['\"Walt', \"Whitman's\", 'America,\"', 'offers', 'his', 'take'], 'in', ['\"Waking', 'Giant:', 'America', 'in', 'the', 'Age']]\n",
+ "[['his', 'take', 'in', '\"Waking', 'Giant:', 'America'], 'in', ['the', 'Age', 'of', 'Jackson\"', 'at', 'a']]\n",
+ "[['mere', '466', 'pages.', 'That', 'length', 'is'], 'in', ['many', 'ways', 'a', 'virtue,', 'and', 'not']]\n",
+ "[['for', 'people', 'who', 'like', 'to', 'read'], 'in', ['bed', 'and', 'breathe', 'at', 'the', 'same']]\n",
+ "[['transformation.', 'There', 'were', 'only', '18', 'states'], 'in', ['1815', 'but', '30', 'by', '1848.', 'Florida,']]\n",
+ "[['diverse', 'as', 'immigrants', 'began', 'to', 'pour'], 'in', ['from', 'Europe', 'and', 'spread', 'out', 'across']]\n",
+ "[['And', 'yet', 'the', 'country', 'was', 'also'], 'in', ['the', 'midst', 'of', 'a', 'major', 'religious']]\n",
+ "[['much', 'more', 'diverse', 'as', 'industry', 'developed'], 'in', ['the', 'North,', 'cotton', 'spread', 'through', 'the']]\n",
+ "[['of', 'the', 'Founding', 'Fathers.', 'It', 'was'], 'in', [\"Jackson's\", 'time', 'that', 'property', 'qualifications', 'for']]\n",
+ "[['hold.', 'The', 'modern', 'two-party', 'system', 'evolved'], 'in', ['this', 'period', 'as', 'well,', 'as', 'Jackson']]\n",
+ "[['of', 'the', 'present-day', 'Democratic', 'Party.', 'And'], 'in', ['the', '1850s', 'the', 'anti-Jackson', 'Whigs', 'would']]\n",
+ "[['once', 'said', 'he', 'never', 'felt', 'frightened'], 'in', ['any', 'situation,', 'and', 'he', 'certainly', 'was']]\n",
+ "[['period.', 'And', 'he', 'describes', 'it', 'thoroughly'], 'in', ['a', 'manageable', 'amount', 'of', 'space.', 'Given']]\n",
+ "[['country', 'began', 'forging', 'a', 'separate', 'identity'], 'in', ['the', 'arts.', 'Edgar', 'Allan', 'Poe,', 'Ralph']]\n",
+ "[['William', 'Sydney', 'Mount', 'painted', 'American', 'subjects'], 'in', ['new', 'ways', 'rather', 'than', 'copying', 'European']]\n",
+ "[['index', 'cards.', 'But', '\"Waking', 'Giant\"', 'is,'], 'in', ['whole,', 'a', 'terrific', 'introduction', 'of', 'succinct']]\n",
+ "[['of', 'succinct', 'length', 'to', 'a', 'period'], 'in', ['our', 'history', 'that', 'was', 'once', 'ignored,']]\n",
+ "[['laid.', 'PUBLICATION', 'NOTES:', \"'WAKING\", 'GIANT', 'America'], 'in', ['the', 'Age', 'of', \"Jackson'\", 'By', 'David']]\n",
+ "[['year.', 'Her', 'current', 'album,', '\"Discipline,\"', 'arrived'], 'in', ['February', 'to', 'such', 'disappointing', 'sales', 'that']]\n",
+ "[['February', 'to', 'such', 'disappointing', 'sales', 'that'], 'in', ['September,', 'with', 'fewer', 'than', 'a', 'half-million']]\n",
+ "[['my', 'own', 'shots!\"', 'Her', 'first', 'tour'], 'in', ['seven', 'years', 'started', 'shakily', 'this', 'fall,']]\n",
+ "[['a', 'problem', 'for', 'a', 'performer', 'who,'], 'in', ['concert,', 'is', 'more', 'a', 'dancer', 'than']]\n",
+ "[['has', 'mounted', 'since', 'her', 'multimillion-selling', 'days'], 'in', ['the', '1980s', 'and', \"'90s,\", 'with', 'dancers,']]\n",
+ "[['angular', 'stop-and-start', 'dance', 'moves;', 'the', 'men'], 'in', ['her', 'troupe', 'spun', 'through', 'gymnastics', 'or']]\n",
+ "[['feet.', 'With', 'her', 'hair', 'pointing', 'skyward'], 'in', ['a', 'faux-Mohawk,', 'Jackson', 'appeared', 'in', 'futuristic']]\n",
+ "[['skyward', 'in', 'a', 'faux-Mohawk,', 'Jackson', 'appeared'], 'in', ['futuristic', 'sparkles,', 'in', 'a', 'skintight', 'red']]\n",
+ "[['faux-Mohawk,', 'Jackson', 'appeared', 'in', 'futuristic', 'sparkles,'], 'in', ['a', 'skintight', 'red', 'formal', 'dress,', 'in']]\n",
+ "[['in', 'a', 'skintight', 'red', 'formal', 'dress,'], 'in', ['a', 'maroon', 'bodysuit', 'with', 'glittery', 'epaulets']]\n",
+ "[['maroon', 'bodysuit', 'with', 'glittery', 'epaulets', 'and'], 'in', ['quasi-dominatrix', 'lingerie.', 'Her', 'long', 'set', 'piece']]\n",
+ "[['taken', 'from', 'the', 'audience', 'was', 'suspended'], 'in', ['a', 'leather', 'harness', 'above', 'a', 'supine']]\n",
+ "[['Jackson,', 'who', 'groped', 'between', 'his', 'legs'], 'in', ['video', 'close-ups.', 'At', 'the', 'end', 'he']]\n",
+ "[['business', 'and', 'the', 'world', 'economy.', 'But'], 'in', ['all', 'their', 'artificial', 'splendor,', 'her', 'old']]\n",
+ "[['to', 'the', 'government', 'detailing', 'their', 'progress'], 'in', ['ensuring', '\"intellectual', 'diversity,\"', 'prompted', 'universities', 'to']]\n",
+ "[['the', 'conservative', 'American', 'Enterprise', 'Institute,', 'warned'], 'in', ['The', 'Washington', 'Times', 'against', '\"the', 'liberal']]\n",
+ "[['book', '\"Closed', 'Minds?', 'Politics', 'and', 'Ideology'], 'in', ['American', 'Universities\"', '(Brookings', 'Institution', 'Press).', 'The']]\n",
+ "[['7,000', 'students', 'at', '38', 'institutions', 'published'], 'in', ['the', 'current', 'PS:', 'Political', 'Science', 'and']]\n",
+ "[['accepted', 'by', 'the', 'journal', 'to', 'run'], 'in', ['April', '2009,', 'both', 'reach', 'similar', 'conclusions.']]\n",
+ "[['have', 'frequently', 'conducted', 'research', 'on', 'politics'], 'in', ['higher', 'education,', 'write', 'in', 'that', 'second']]\n",
+ "[['on', 'politics', 'in', 'higher', 'education,', 'write'], 'in', ['that', 'second', 'study.', 'Their', 'work', 'is']]\n",
+ "[['their', 'college', 'years.', 'Still,', 'both', 'studies'], 'in', ['the', 'peer-reviewed', 'PS,', 'for', 'example,', 'found']]\n",
+ "[['PS,', 'for', 'example,', 'found', 'that', 'changes'], 'in', ['political', 'ideology', 'could', 'not', 'be', 'attributed']]\n",
+ "[['J.', 'Hewitt', 'at', 'Hamilton', 'College', 'write'], 'in', ['the', 'current', 'issue,', '\"Student', 'political', 'orientation']]\n",
+ "[['for', 'a', 'majority', 'of', 'students', 'while'], 'in', ['college,', 'and', 'for', 'those', 'that', 'do']]\n",
+ "[['Democrats', 'vastly', 'outnumber', 'Republicans', 'among', 'faculty'], 'in', ['the', 'humanities', 'and', 'social', 'sciences', 'at']]\n",
+ "[['also', 'agree', 'that', 'a', 'better', 'grounding'], 'in', ['American', 'history', 'and', 'politics', 'is', 'important.']]\n",
+ "[['promoting', 'a', 'return', 'to', 'traditional', 'courses'], 'in', ['Western', 'civilization', 'and', 'American', 'history.', 'Fritschler']]\n",
+ "[['wartime', 'era.', 'On', 'his', 'new', 'album,'], 'in', ['the', 'song', '\"Missing', 'Me', 'Some', 'You,\"']]\n",
+ "[['at', 'the', 'sky', '--', '\"stars', 'down'], 'in', ['Dixie', 'look', 'the', 'same', 'way', 'here\"']]\n",
+ "[['Dixie', 'look', 'the', 'same', 'way', 'here\"'], 'in', ['a', 'way', 'that', 'more', 'recalls', '\"Somewhere']]\n",
+ "[['my', 'soul', 'from', 'the', 'devil.\"', 'Back'], 'in', ['the', 'day', 'she', 'would', 'never', 'have']]\n",
+ "[['splashy', 'ones,', 'with', 'uptempo', 'songs', 'awash'], 'in', ['guitar', 'reverb', 'and', 'cymbal', 'whooshes,', 'akin']]\n",
+ "[['been', 'down', 'here', 'before,\"', 'Smith', 'sings'], 'in', ['\"The', 'Scream.\"', 'But', \"it's\", 'not', 'a']]\n",
+ "[['The', 'album', 'includes', 'two', 'love', 'songs'], 'in', ['which,', 'amazingly', 'enough,', 'things', 'are', 'working']]\n",
+ "[['\"This.', 'Here', 'and', 'Now.', 'With', 'You.,\"'], 'in', ['which', 'the', 'rapture', 'of', 'the', 'moment']]\n",
+ "[['was', 'nine', 'years', 'ago,', 'an', 'eternity'], 'in', ['hip-hop,', 'and', 'his', 'record-industry', 'journey', 'since']]\n",
+ "[['J', 'Dilla,', 'the', 'producer', 'who', 'died'], 'in', ['2006', 'and', 'worked', 'with', 'Q-Tip', 'on']]\n",
+ "[['share', 'a', 'mild', 'sense', 'of', 'humor'], 'in', ['their', 'music', '--', 'composed', 'and', 'improvised']]\n",
+ "[['blues', 'language.', 'These', 'similarities', 'come', 'out'], 'in', ['phrasing', 'and', 'harmonic', 'vocabulary,', 'the', 'bricks']]\n",
+ "[['bricks', 'of', 'their', 'playing.', 'But', \"it's\"], 'in', ['the', 'realm', 'of', 'sound', 'where', 'these']]\n",
+ "[['each', 'other', 'on', '\"Hemispheres.\"', 'Hall', 'started'], 'in', ['the', '1940s,', 'and', 'his', 'is', 'the']]\n",
+ "[['and', 'his', 'notes', 'last', 'longer,', 'hovering'], 'in', ['the', 'air;', 'he', 'likes', 'to', 'make']]\n",
+ "[['records.', 'Here', 'each', 'guitarist', 'spends', 'time'], 'in', ['the', \"other's\", 'extremes.', 'On', 'several', 'tracks']]\n",
+ "[['playful,', 'and', 'at', 'best', '--', 'as'], 'in', ['\"Owed', 'to', 'Freddie', 'Green,\"', 'in', 'which']]\n",
+ "[['as', 'in', '\"Owed', 'to', 'Freddie', 'Green,\"'], 'in', ['which', 'both', 'guitarists', 'improvise', 'simultaneously', 'with']]\n",
+ "[['over', 'swing', 'rhythm', '--', 'they', 'connect'], 'in', ['a', 'properly', 'complicated', 'way.', '--', 'BEN']]\n",
+ "[['MIAMI', 'The', 'most', 'important', '\"Bond', 'girl\"'], 'in', ['the', 'James', 'Bond', 'movie', 'series', \"doesn't\"]]\n",
+ "[['their', \"father's.\", 'On', 'a', 'humid', 'day'], 'in', ['Miami,', 'Broccoli', 'is', 'cucumber', 'cool', 'while']]\n",
+ "[[\"isn't\", 'pushy', 'or', 'prone', 'to', 'hyperbole'], 'in', ['interviews.', 'Blockbuster', 'confidence', 'gleaned', 'from', 'her']]\n",
+ "[['Cubby', 'Broccoli', 'died', 'of', 'heart', 'failure'], 'in', ['1996,', 'certain', 'that', 'his', 'life', 'work']]\n",
+ "[['certain', 'that', 'his', 'life', 'work', 'was'], 'in', ['good', 'hands.', '\"We', 'do', 'feel', 'very']]\n",
+ "[['made', 'caskets', 'before', 'making', 'his', 'mark'], 'in', ['the', 'movies.', '\"I', 'was', 'very', 'close']]\n",
+ "[['stage', 'version', 'of', 'the', 'fantasy', 'adventure'], 'in', ['2002.', 'The', 'musical', 'remains', 'her', 'only']]\n",
+ "[['do', 'think', 'about', 'them', 'very', 'much'], 'in', ['these', 'situations,\"', 'Broccoli', 'says.', '\"(My', 'father)']]\n",
+ "[['but', 'to', 'kind', 'of', 'saturate', 'ourselves'], 'in', ['that', 'world', 'again.', \"It's\", 'the', 'character']]\n",
+ "[['at', 'persallsptimes.com.', 'Read', 'his', 'blog,', 'Reeling'], 'in', ['the', 'Years,', 'at', 'blogs.tampabay.com/movies.', 'Bay', 'area']]\n",
+ "[['Love', 'Sponge:', 'Thanks', 'to', 'recent', 'changes'], 'in', ['the', 'Tampa', 'Bay', 'area', 'radio', 'scene,']]\n",
+ "[['are', 'using', 'nationally', 'syndicated', 'radio', 'programs'], 'in', ['the', 'middle', 'of', 'their', 'broadcast', 'day,']]\n",
+ "[['jazz', 'saxophonist', 'Koz.', 'The', 'trend', 'emerged'], 'in', ['sharp', 'relief', 'last', 'month,', 'when', 'CBS']]\n",
+ "[['smooth', 'jazz', 'station', 'WSJT-FM', '94.1,', 'bringing'], 'in', ['a', 'slate', 'of', 'shows', 'offered', 'by']]\n",
+ "[['Tampa', 'market', 'manager', 'for', 'CBS', 'Radio'], 'in', ['early', 'October,', 'said', \"he's\", 'more', 'focused']]\n",
+ "[['stations', 'owned', 'by', 'the', 'same', 'company'], 'in', ['different', 'markets.', 'DJs', 'might', 'even', 'note']]\n",
+ "[['voice', 'tracking', 'does.', '\"When', 'you', 'bring'], 'in', ['someone', 'who', 'has', 'a', 'national,', 'marquee']]\n",
+ "[['said', 'DiLoreto,', 'who', 'noted', 'that', 'increases'], 'in', ['out-of-home', 'listening', 'at', 'work', 'have', 'made']]\n",
+ "[['as', 'you', \"don't\", 'lean', 'too', 'far'], 'in', ['either', 'direction.', \"It's\", 'kind', 'of', 'like']]\n",
+ "[['slip', 'past', 'a', 'great', 'blue', 'heron'], 'in', ['a', 'cypress.', 'We', 'meander', 'around', 'a']]\n",
+ "[['for', 'moccasins', 'above', 'my', 'head,', 'just'], 'in', ['case.', 'Years', 'ago,', 'when', 'I', 'was']]\n",
+ "[['exaggerated.', 'Even', 'so,', 'watching', 'for', 'moccasins'], 'in', ['branches', 'has', 'become', 'a', 'lifelong', 'habit.']]\n",
+ "[['I', 'hope', 'to', 'see', 'a', 'moccasin'], 'in', ['a', 'tree', 'because', 'I', 'like', 'the']]\n",
+ "[['Florida', 'waterway.', 'Paddling', 'a', 'kayak', 'requires,'], 'in', ['addition', 'to', 'balance,', 'paying', 'attention.', 'You']]\n",
+ "[['continent,', 'Senor', 'Ponce', 'named', 'La', 'Florida'], 'in', ['1513.', 'According', 'to', 'some', 'accounts,', 'he']]\n",
+ "[['Leon', 'declined', 'to', 'take', 'a', 'dip'], 'in', ['Spruce', 'Creek.', 'You', \"couldn't\", 'pay', 'me']]\n",
+ "[['You', \"couldn't\", 'pay', 'me', 'to', 'swim'], 'in', ['it', 'on', 'purpose', 'either.', 'The', 'water']]\n",
+ "[['wild', 'side', 'of', 'the', 'river,', 'back'], 'in', ['the', 'trees,', 'lie', 'the', 'hidden', 'mounds']]\n",
+ "[['kayaker', 'sees', 'them', 'too.', 'Turn', 'around'], 'in', ['modern', 'Florida,', 'just', 'before', 'you', 'reach']]\n",
+ "[['any', 'other', 'president', 'before', 'him', 'nine'], 'in', ['total.', 'But', 'during', 'his', 'eight', 'years']]\n",
+ "[['total.', 'But', 'during', 'his', 'eight', 'years'], 'in', ['the', 'White', 'House,', 'U.S.', 'influence', 'in']]\n",
+ "[['in', 'the', 'White', 'House,', 'U.S.', 'influence'], 'in', ['the', 'region', 'has', 'fallen', 'sharply.', 'Both']]\n",
+ "[['and', 'what', 'challenges', 'would', 'they', 'face'], 'in', ['the', 'region?', 'Sen.', 'Obama', 'has', 'never']]\n",
+ "[['has', 'excited', 'enormous', 'interest', 'there,', 'especially'], 'in', ['countries', 'with', 'large', 'black', 'populations', 'such']]\n",
+ "[['region', 'extensively.', 'He', 'was', 'deeply', 'involved'], 'in', ['U.S.', 'policy', 'in', 'Central', 'America', 'during']]\n",
+ "[['was', 'deeply', 'involved', 'in', 'U.S.', 'policy'], 'in', ['Central', 'America', 'during', 'the', '1980s', 'when']]\n",
+ "[['aid', 'to', 'help', 'defeat', 'left-wing', 'revolutionaries'], 'in', ['El', 'Salvador', 'and', 'Nicaragua.', 'Experts', 'note']]\n",
+ "[['a', 'crisis', 'explodes.', 'Given', 'the', 'wars'], 'in', ['Iraq', 'and', 'Afghanistan,', 'as', 'well', 'as']]\n",
+ "[['America', 'the', 'attention', 'that', 'it', 'needs'], 'in', ['the', 'coming', 'few', 'years,\"', 'says', 'Susan']]\n",
+ "[['of', 'the', 'Center', 'for', 'Hemispheric', 'Policy'], 'in', ['Miami.', 'BRAZIL:', 'President', \"Bush's\", 'promotion', 'of']]\n",
+ "[['the', 'most', 'important', 'strategic', 'U.S.', 'ally'], 'in', ['the', 'region.', 'McCain', 'supports', 'lifting', 'a']]\n",
+ "[['Brazilian', 'ethanol.', 'But', 'this', 'is', 'unpopular'], 'in', [\"America's\", 'grain', 'states.', 'Obama', 'would', 'keep']]\n",
+ "[['trade', 'agreement', 'with', 'Colombia', 'currently', 'stalled'], 'in', ['Congress.', 'Obama', 'has', 'supported', 'Plan', 'Colombia,']]\n",
+ "[['the', 'importance', 'of', 'U.S.', 'aid,', 'especially'], 'in', ['the', 'wake', 'of', 'a', 'disastrous', 'hurricane']]\n",
+ "[['to', 'pressure', 'from', 'the', 'black', 'caucus'], 'in', ['Congress', 'to', 'grant', 'temporary', 'status', 'to']]\n",
+ "[['grant', 'temporary', 'status', 'to', 'undocumented', 'Haitians'], 'in', ['the', 'United', 'States.', 'After', 'Hurricanes', 'Gustav']]\n",
+ "[['has', 'not', 'taken', 'an', 'active', 'interest'], 'in', ['Haiti', 'policy.', 'MEXICO:', 'A', 'bloody', 'drug']]\n",
+ "[['policy.', 'MEXICO:', 'A', 'bloody', 'drug', 'war'], 'in', ['Mexico', 'has', 'barely', 'been', 'mentioned', 'in']]\n",
+ "[['in', 'Mexico', 'has', 'barely', 'been', 'mentioned'], 'in', ['the', 'campaign.', 'McCain', 'made', 'a', 'campaign']]\n",
+ "[['campaign.', 'McCain', 'made', 'a', 'campaign', 'stop'], 'in', ['Mexico', 'in', 'July,', 'the', 'first', 'ever']]\n",
+ "[['made', 'a', 'campaign', 'stop', 'in', 'Mexico'], 'in', ['July,', 'the', 'first', 'ever', 'by', 'a']]\n",
+ "[['President', 'Felipe', 'Calderon.', 'Falling', 'oil', 'production'], 'in', ['Mexico', 'has', 'prompted', 'urgent', 'calls', 'for']]\n",
+ "[['to', 'bolster', 'security.', 'The', 'first', '$400-million'], 'in', ['funds', 'will', 'begin', 'to', 'flow', 'before']]\n",
+ "[['total.', 'That', 'would', 'send', 'prices', 'higher'], 'in', ['the', 'United', 'States,', 'experts', 'say,', 'and']]\n",
+ "[['important', 'for', 'us', 'not', 'to', 'overreact'], 'in', ['relation', 'to', 'Chavez,\"', 'he', 'said', 'in']]\n",
+ "[['in', 'relation', 'to', 'Chavez,\"', 'he', 'said'], 'in', ['one', 'recent', 'interview.', '\"What', 'we', 'must']]\n",
+ "[['him', 'to', 'continue', 'spreading', 'anti-U.S.', 'feelings\"'], 'in', ['the', 'region', 'and', 'that', '\"we', 'are']]\n",
+ "[['region', 'and', 'that', '\"we', 'are', 'interested'], 'in', ['a', 'respectful', 'dialogue.\"', 'David', 'Adams', 'is']]\n",
+ "[['Frank', 'Sanchez,', 'former', 'Clinton', 'administration', 'official'], 'in', ['the', 'National', 'Security', 'Council', 'and', 'U.S.']]\n",
+ "[['a', 'handgun', 'The', 'weapon', 'was', 'light'], 'in', ['my', 'hands,', 'not', 'at', 'all', 'how']]\n",
+ "[['I', 'had', 'never', 'fired', 'a', 'gun'], 'in', ['my', 'life.', 'My', 'instructor', 'put', 'both']]\n",
+ "[['life.', 'My', 'target', 'was', 'fictional,', 'but'], 'in', ['my', 'mind', 'he', 'was', 'still', 'a']]\n",
+ "[['soon', \"I'll\", 'be', 'the', 'first', 'person'], 'in', ['my', 'immediate', 'family', 'and', 'circle', 'of']]\n",
+ "[['purchasing', 'a', 'gun,', 'so', 'I', 'enrolled'], 'in', ['class', 'at', 'Shooting', 'Sports', 'of', 'Tampa.']]\n",
+ "[['on', 'fire,', 'and', 'all', '15', 'people'], 'in', ['my', 'class', 'were', 'herded', 'into', 'a']]\n",
+ "[['herded', 'into', 'a', 'tiny', 'room', 'off'], 'in', ['the', 'corner', 'where', 'our', 'instructor', 'put']]\n",
+ "[['instructor', 'put', 'the', 'fear', 'of', 'God'], 'in', ['us', 'before', 'we', 'even', 'got', 'into']]\n",
+ "[['gun,\"', 'he', 'cautioned.', '\"No', 'sane', 'person'], 'in', ['the', 'world', 'would', 'ever', 'want', 'to']]\n",
+ "[['world', 'would', 'ever', 'want', 'to', 'be'], 'in', ['a', 'gunfight.\"', 'Though', 'I', 'was', 'never']]\n",
+ "[['strangers.', 'Since', 'living', 'on', 'my', 'own'], 'in', ['Florida,', 'I', 'have', 'not', 'been', 'able']]\n",
+ "[['of', 'college', 'at', 'Florida', 'A&M', 'University'], 'in', ['Tallahassee,', 'I', 'had', 'a', 'roommate', 'who']]\n",
+ "[['I', 'spent', 'a', 'lot', 'of', 'time'], 'in', ['my', 'room', 'with', 'the', 'door', 'locked.']]\n",
+ "[['But', \"I'd\", 'never', 'even', 'seen', 'one'], 'in', ['person', 'and', 'was', 'sure', 'that', '20']]\n",
+ "[['hold', 'of', 'a', 'firearm,', 'right?', 'But'], 'in', ['Florida,', 'you', 'can', 'buy', 'a', 'handgun']]\n",
+ "[['I', 'had', 'to', 'buy', '50', 'rounds'], 'in', ['class', 'to', 'get', 'through', 'my', 'target']]\n",
+ "[['the', 'trigger.', \"I'd\", 'fired', 'the', 'gun'], 'in', ['class.', 'But', 'if', 'my', 'paper', 'assailant']]\n",
+ "[['to', 'Bradenton.', 'She', 'had', 'been', 'murdered'], 'in', ['her', 'own', 'home', 'by', 'a', 'roommate']]\n",
+ "[['the', 'holiday.', 'He', 'had', 'shot', 'her'], 'in', ['the', 'face', 'just', 'under', 'her', 'cheekbone']]\n",
+ "[['because', 'he', 'was', 'no', 'longer', 'enrolled'], 'in', ['school', 'and', 'that', 'it', 'was', 'unclear']]\n",
+ "[['different', 'if', 'she', 'had', 'a', 'gun'], 'in', ['her', 'bedroom', 'or', 'in', 'one', 'of']]\n",
+ "[['a', 'gun', 'in', 'her', 'bedroom', 'or'], 'in', ['one', 'of', 'many', 'designer', 'purses?', 'I']]\n",
+ "[['never', 'owned', 'a', 'gun.', 'He', 'was'], 'in', ['the', 'Air', 'Force.', 'He', 'knew', 'how']]\n",
+ "[['use', 'a', 'gun.', 'He', 'learned', 'it'], 'in', ['basic', 'training.', 'He', 'could', 'have', 'had']]\n",
+ "[['my', 'fingerprints', 'taken', 'digitally', 'and', 'put'], 'in', ['the', 'state', 'database', 'at', 'the', 'Tampa']]\n",
+ "[['bows.', 'Sure', 'enough,', 'the', 'cello,', 'made'], 'in', ['1717', 'by', 'Antonio', 'Stradivari', 'and', 'named']]\n",
+ "[['ticked', 'by', 'Jason', 'Price,', 'a', 'partner'], 'in', ['the', 'company,', 'refreshed', 'the', 'screen', 'of']]\n",
+ "[['Even', 'more', 'nerve-racking,', 'the', 'one', 'bid'], 'in', ['hand,', 'about', '$600,000', 'higher', 'than', 'the']]\n",
+ "[['another', 'Stradivari', 'cello', 'sold', 'by', \"Sotheby's\"], 'in', ['1988,', 'failed', 'to', 'meet', 'the', 'reserve']]\n",
+ "[['million', 'to', '$1.97', 'million.', '\"We\\'re', 'down'], 'in', ['the', 'zero-second', 'range,\"', 'Price,', '32,', 'said']]\n",
+ "[['phone', 'calls', 'he', 'hoped', 'would', 'result'], 'in', ['a', 'post-auction', 'agreement', 'between', 'the', 'bidder']]\n",
+ "[['were', 'continuing.', '\"I', 'think', 'we', 'are'], 'in', ['uncharted', 'territory', 'with', 'our', 'economy,', 'and']]\n",
+ "[['its', 'own', 'ticket', 'and', 'seat.', 'Made'], 'in', ['Cremona,', 'Italy,', 'the', 'instrument', 'is', 'one']]\n",
+ "[['only', '60', 'or', 'so', 'Stradivari', 'cellos'], 'in', ['existence.', 'It', 'is', 'patterned', 'on', 'the']]\n",
+ "[['by', 'Mstislav', 'Rostropovich.', 'Fleming,', 'who', 'died'], 'in', ['1999,', 'was', 'the', 'daughter', 'of', 'the']]\n",
+ "[['femme', 'fatale.', 'She', 'bought', 'the', 'cello'], 'in', ['the', '1960s', 'and', 'used', 'it', 'to']]\n",
+ "[['top', 'and', 'head', 'not', 'been', 'replaced'], 'in', ['the', 'mid-18th-century', 'by', 'the', 'Spanish', 'luthier']]\n",
+ "[['at', 'the', 'Royal', 'College', 'of', 'Music'], 'in', ['London,', 'where', 'Fleming', 'had', 'studied', 'and']]\n",
+ "[['fantastic', 'investment.\"', '\"Nobody', 'needs', 'a', 'calf'], 'in', ['a', 'tank', 'of', 'formaldehyde', 'for', '8']]\n",
+ "[['Damien', \"Hirst's\", '\"Golden', 'Calf,\"', 'which', 'sold'], 'in', ['September', 'at', \"Sotheby's\", 'for', '$18.6', 'million.']]\n",
+ "[['played', 'publicly', 'for', 'the', 'first', 'time'], 'in', ['more', 'than', '70', 'years.', 'More', 'recently']]\n",
+ "[['Bein', '&', 'Fushi.', 'Tarisio', 'was', 'founded'], 'in', ['1999', 'by', 'Price,', 'who', 'studied', 'cello']]\n",
+ "[['who', 'studied', 'cello', 'and', 'later', 'violin-making'], 'in', ['Cremona', 'and', 'Parma;', 'Dmitry', 'Gindin,', 'a']]\n",
+ "[['private', 'sales,', 'did', 'close', 'to', '$12million'], 'in', ['gross', 'sales,', 'Price', 'said.', 'After', 'months']]\n",
+ "[['tone', 'and', 'vibrant', 'beauty', 'at', 'viewings'], 'in', ['London,', 'New', 'York,', 'Boston', 'and', 'Cremona,']]\n",
+ "[['the', 'weekend', '\"trying', 'to', 'put', 'people'], 'in', ['touch', 'and', 'make', 'things', 'happen\"', 'on']]\n",
+ "[['this', 'movie', 'during', 'its', 'run', 'here'], 'in', ['late', 'summer', 'was', 'a', 'voyage', 'to']]\n",
+ "[['of', 'place', 'one', 'might', 'have', 'found'], 'in', ['downtown', 'Manhattan', '30', 'years', 'ago:', 'a']]\n",
+ "[['a', 'romance', 'attached', 'to', 'loft', 'living'], 'in', ['those', 'days;', 'they', 'seemed', 'bohemian', 'and']]\n",
+ "[[\"'70s,\", 'it', 'was', 'painful', 'to', 'live'], 'in', ['a', 'loft,\"', 'said', 'Chuck', 'DeLaney,', 'a']]\n",
+ "[['find', 'these', 'days', '--', 'maybe', 'impossible'], 'in', ['Manhattan', '--', 'but', 'they', 'do', 'exist']]\n",
+ "[['Manhattan', '--', 'but', 'they', 'do', 'exist'], 'in', ['pockets', 'of', 'the', 'other', 'boroughs.', 'In']]\n",
+ "[['two', 'years', 'ago:', 'a', '1,100-square-foot', 'room'], 'in', ['Bushwick,', 'Brooklyn.', 'Reigelman', 'came', 'to', 'New']]\n",
+ "[['it', 'was', 'really', 'easy', 'to', 'come'], 'in', ['and', 'make', 'it', 'something', 'brand-new,', 'make']]\n",
+ "[['was', 'really', 'ours.\"', 'Reigelman', 'is', 'trained'], 'in', ['sculpture', 'and', 'industrial', 'design,', 'and', 'his']]\n",
+ "[['of', 'the', 'space.', 'Their', 'loft', 'is'], 'in', ['a', 'building', 'called', 'the', 'Tea', 'Factory,']]\n",
+ "[['this', 'sort', 'used', 'to', 'be', 'common'], 'in', ['New', 'York', 'City.', 'According', 'to', 'Mitchell']]\n",
+ "[['only', 'about', '100,000', 'manufacturing', 'jobs', 'remain'], 'in', ['the', 'city,', 'a', 'tenth', 'of', 'the']]\n",
+ "[['of', '\"Loft', 'Living:', 'Culture', 'and', 'Capital'], 'in', ['Urban', 'Change\"', '(Rutgers', 'University', 'Press,', '1989).']]\n",
+ "[['artist-in-residence', 'program', 'authorized', 'artists', 'to', 'live'], 'in', ['some', 'manufacturing', 'buildings.', 'Next,', 'the', 'city']]\n",
+ "[['another', 'who', 'both', 'lived', 'and', 'worked'], 'in', ['their', 'spaces,\"', 'said', 'Carl', 'Weisbrod,', 'the']]\n",
+ "[['or', 'third', 'generation', 'of', 'tenants', 'live'], 'in', ['these', 'lofts,', 'often', 'without', 'the', 'hardships']]\n",
+ "[['without', 'the', 'hardships', 'that', 'their', 'predecessors'], 'in', ['the', \"'70s\", 'experienced.', 'Two', 'years', 'ago,']]\n",
+ "[['Albert', 'Senavitis', 'moved', 'into', 'an', 'apartment'], 'in', ['an', 'old', 'Bushwick', 'loft', 'building', 'once']]\n",
+ "[['dead.\"', 'Asked', 'if', 'he', 'feels', 'safe'], 'in', ['the', 'neighborhood,', 'Senavitis', 'said,', '\"In', 'this']]\n",
+ "[['while', 'walking', 'to', 'a', \"friend's\", 'house'], 'in', ['a', 'far', 'corner', 'of', 'the', 'neighborhood.']]\n",
+ "[['a', '56-year-old', 'artist', 'who', 'has', 'lived'], 'in', ['New', 'York', 'for', 'several', 'decades.', 'Now,']]\n",
+ "[['of', 'textiles.', 'He', 'finds', 'tenants', 'uninterested'], 'in', ['doing', 'the', 'repairs', 'that', 'he', 'took']]\n",
+ "[['Leila', 'Abdoulaye', 'sublets', 'a', \"friend's\", 'loft'], 'in', ['an', 'old', 'piano', 'factory', 'in', 'the']]\n",
+ "[['loft', 'in', 'an', 'old', 'piano', 'factory'], 'in', ['the', 'South', 'Bronx,', 'and', 'she', 'need']]\n",
+ "[['out-of-work', 'designer', 'from', 'Iowa,', 'also', 'lives'], 'in', ['the', 'Clock', 'Tower,', 'sharing', 'a', 'bright,']]\n",
+ "[['to', 'New', 'York', 'City,', 'he', 'lived'], 'in', ['a', 'tiny', 'sublet', 'on', 'the', 'Upper']]\n",
+ "[['$100', 'a', 'year', 'since', 'he', 'moved'], 'in', ['more', 'than', 'four', 'years', 'ago,', 'but']]\n",
+ "[['places', 'appealing.', 'Ian', 'Roberts,', '28,', 'lives'], 'in', ['a', 'loft', 'on', 'McKibben', 'Street', 'in']]\n",
+ "[['in', 'a', 'loft', 'on', 'McKibben', 'Street'], 'in', ['Bushwick', '--', 'in', 'one', 'of', 'two']]\n",
+ "[['on', 'McKibben', 'Street', 'in', 'Bushwick', '--'], 'in', ['one', 'of', 'two', 'buildings', 'that', 'have']]\n",
+ "[['like', 'to', 'be', 'able', 'to', 'walk'], 'in', ['my', 'apartment,\"', 'said', 'Roberts,', 'striding', 'back']]\n",
+ "[['He', 'and', 'Jeff', 'Brown', 'have', 'lived'], 'in', ['the', 'loft', 'for', 'three', 'years.', 'They']]\n",
+ "[['by', 'an', 'audience', 'at', 'La', 'Scala'], 'in', ['Milan', 'for', 'her', 'performance', 'in', 'the']]\n",
+ "[['Scala', 'in', 'Milan', 'for', 'her', 'performance'], 'in', ['the', 'title', 'role', 'of', \"Donizetti's\", '\"Lucrezia']]\n",
+ "[['could', 'sing', 'this', 'daunting', 'role', 'impressively'], 'in', ['a', 'concert', 'performance', 'with', 'the', 'Opera']]\n",
+ "[['character', 'of', 'this', 'beautiful,', 'murderous', 'noblewoman'], 'in', ['Renaissance', 'Italy.', '\"Lucrezia', 'Borgia,\"', 'which', 'had']]\n",
+ "[['had', 'its', 'premiere', 'at', 'La', 'Scala'], 'in', ['1833,', 'is', 'considered', 'a', 'major', 'Donizetti']]\n",
+ "[['has', 'been', 'produced', 'with', 'surprising', 'infrequency'], 'in', ['America.', 'The', 'only', 'Metropolitan', 'Opera', 'production']]\n",
+ "[['The', 'only', 'Metropolitan', 'Opera', 'production', 'was'], 'in', ['1904,', 'and', 'this', 'was', 'the', \"work's\"]]\n",
+ "[['Lucrezia', 'instantly,', 'as', 'things', 'often', 'happen'], 'in', ['opera,', 'until', 'he', 'discovers', 'that', 'she']]\n",
+ "[['Lucrezia', 'Borgia,', 'who', 'willfully', 'poisons', 'rivals'], 'in', ['love', 'and', 'in', 'politics.', 'In', 'researching']]\n",
+ "[['willfully', 'poisons', 'rivals', 'in', 'love', 'and'], 'in', ['politics.', 'In', 'researching', 'the', 'veiled', 'history']]\n",
+ "[['as', 'a', 'girl,', 'trying', 'to', 'survive'], 'in', ['a', 'ferociously', 'masculine', 'world', 'in', 'which']]\n",
+ "[['survive', 'in', 'a', 'ferociously', 'masculine', 'world'], 'in', ['which', 'revenge', 'and', 'murder', 'become', '\"the']]\n",
+ "[['of', 'love,\"', 'as', 'he', 'put', 'it'], 'in', ['a', 'program', 'note.', 'This', \"doesn't\", 'seem']]\n",
+ "[['(for', 'some', 'reason),', 'decadent', 'party', 'scenes'], 'in', ['which', 'drunken', 'young', 'men', 'and', 'women']]\n",
+ "[['drunken', 'young', 'men', 'and', 'women', 'entwine'], 'in', ['twos', 'and', 'threes,', 'a', 'menacing', 'prison']]\n",
+ "[['of', 'Flash', 'Gordon.', 'When', 'Fleming', 'appears'], 'in', ['a', 'dress', 'with', 'a', 'similarly', 'gold-tinged']]\n",
+ "[['side', 'career', 'as', 'a', 'pop', 'star'], 'in', ['Italy,', 'is', 'a', 'charismatic', 'performer', 'with']]\n",
+ "[['energetic,', 'able', 'to', 'leap', 'a', 'wall'], 'in', ['a', 'single', 'bound,', 'he', 'is', 'a']]\n",
+ "[['presents', 'these', 'friends', 'as', 'lovers,', 'and'], 'in', ['fairness,', \"Donizetti's\", 'duets', 'for', 'them,', 'when']]\n",
+ "[['gesture,', 'her', 'voice', 'will', 'become', 'breathy'], 'in', ['the', 'middle', 'range', 'or', 'hard-edged', 'on']]\n",
+ "[['countries', 'to', 'take', 'an', 'expanded', 'role'], 'in', ['financing', 'the', \"IMF's\", 'activities', 'as', 'the']]\n",
+ "[['Reuters', 'quoted', 'Brown', 'as', 'telling', 'reporters'], 'in', ['the', 'Saudi', 'capital,', 'Riyadh,', 'after', 'weekend']]\n",
+ "[['$1', 'trillion', 'from', 'higher', 'oil', 'prices'], 'in', ['recent', 'years,', 'are', 'in', 'a', 'position']]\n",
+ "[['oil', 'prices', 'in', 'recent', 'years,', 'are'], 'in', ['a', 'position', 'to', 'contribute.\"', 'The', 'IMF']]\n",
+ "[['The', 'IMF', 'has', 'committed', '$30', 'billion'], 'in', ['the', 'last', 'few', 'weeks', 'in', 'bailout']]\n",
+ "[['billion', 'in', 'the', 'last', 'few', 'weeks'], 'in', ['bailout', 'packages', 'for', 'Hungary,', 'Iceland', 'and']]\n",
+ "[['as', 'a', 'result', 'of', 'the', 'turmoil'], 'in', ['the', 'global', 'markets.', 'The', 'fund,', 'a']]\n",
+ "[['group,', 'has', 'more', 'than', '$200', 'billion'], 'in', ['resources', 'and', 'can', 'draw', 'on', 'additional']]\n",
+ "[['nationalize', 'one', 'of', 'the', 'smaller', 'lenders'], 'in', ['the', 'country,', 'Banco', 'Portugues', 'de', 'Negocios.']]\n",
+ "[['override', 'its', 'mandate', 'to', 'keep', 'inflation'], 'in', ['check.', 'The', 'monetary', 'authorities', 'in', 'Beijing']]\n",
+ "[['inflation', 'in', 'check.', 'The', 'monetary', 'authorities'], 'in', ['Beijing', 'cut', 'interest', 'rates', 'on', 'Wednesday']]\n",
+ "[['on', 'Wednesday', 'for', 'the', 'third', 'time'], 'in', ['two', 'months.', 'In', 'Mumbai,', 'the', 'Reserve']]\n",
+ "[['chemical', 'that', 'has', 'contaminated', 'food', 'supplies'], 'in', ['China', 'and', 'led', 'to', 'global', 'recalls']]\n",
+ "[['be', \"China's\", 'biggest', 'food', 'safety', 'crackdown'], 'in', ['years,', 'the', 'government', 'also', 'said', 'Saturday']]\n",
+ "[['it', 'had', 'closed', '238', 'feed', 'makers'], 'in', ['a', 'series', 'of', 'nationwide', 'sweeps', 'that']]\n",
+ "[['week', 'and', 'a', 'half,', 'eggs', 'produced'], 'in', ['three', 'provinces', 'were', 'found', 'to', 'be']]\n",
+ "[['with', 'high', 'levels', 'of', 'melamine.', 'And'], 'in', ['September,', 'melamine-tainted', 'infant', 'formula', 'supplies', 'were']]\n",
+ "[['causing', 'at', 'least', 'four', 'deaths.', 'Regulators'], 'in', ['the', 'southern', 'province', 'of', 'Guangdong,', 'which']]\n",
+ "[['the', 'quality', 'of', 'feed', 'had', 'improved'], 'in', ['recent', 'years.', 'They', 'insisted', 'that', 'only']]\n",
+ "[['United', 'States', 'and', 'other', 'countries,', 'resulting'], 'in', ['contaminated', 'pet', 'food', 'supplies', 'that', 'sickened']]\n",
+ "[['to', 'the', 'largest', 'pet', 'food', 'recall'], 'in', ['American', 'history.', 'Melamine', 'dealers', 'in', 'China']]\n",
+ "[['recall', 'in', 'American', 'history.', 'Melamine', 'dealers'], 'in', ['China', 'said', 'in', 'interviews', 'last', 'year']]\n",
+ "[['history.', 'Melamine', 'dealers', 'in', 'China', 'said'], 'in', ['interviews', 'last', 'year', 'and', 'as', 'recently']]\n",
+ "[['alarmed.', 'Although', 'the', 'contaminated', 'eggs', 'found'], 'in', ['Hong', 'Kong', 'exceeded', 'the', 'government', 'limit']]\n",
+ "[['about', 'two', 'dozen', 'of', 'the', 'eggs'], 'in', ['a', 'single', 'day', 'to', 'become', 'sick,']]\n",
+ "[['mountains', 'and', 'cools,', 'snow', 'will', 'develop'], 'in', ['the', 'higher', 'elevations', 'of', 'the', 'Cascades']]\n",
+ "[['few', 'light', 'rain', 'showers', 'will', 'occur'], 'in', ['the', 'interior', 'Northwest', 'and', 'northern', 'Nevada.']]\n",
+ "[['the', 'chilly', 'side', 'for', 'runners', 'competing'], 'in', [\"Sunday's\", 'New', 'York', 'City', 'Marathon.', 'When']]\n",
+ "[['of', 'the', 'runners', 'finished', 'the', 'race'], 'in', ['Central', 'Park,', 'temperatures', 'had', 'climbed', 'into']]\n",
+ "[['that', \"runners'\", 'sweat', 'evaporates,', 'which', 'aids'], 'in', ['keeping', 'them', 'cool.', 'During', 'strenuous', 'exercising,']]\n",
+ "[['Jamin', 'bought', 'a', 'sewing', 'machine,', 'enrolled'], 'in', ['a', 'sewing', 'class', 'and', 'started', 'making']]\n",
+ "[['said', 'Jamin,', 'an', 'actress', 'who', 'lives'], 'in', ['Glendale.', '\"But', 'my', 'grandmother', 'used', 'to']]\n",
+ "[['to', 'sew', 'costumes.', 'I', 'think', \"it's\"], 'in', ['the', 'blood.\"', 'Her', 'girls', 'helped', 'design']]\n",
+ "[['design', 'the', 'dresses,', 'which', 'Jamin', 'created'], 'in', ['a', 'reversible', 'style', 'to', 'make', 'them']]\n",
+ "[['money', 'allowed', 'her', 'to', 'put', 'things'], 'in', ['motion', '--', 'writing', 'a', 'business', 'plan,']]\n",
+ "[['ago,', 'Twirly', 'Girl', 'is', 'already', 'operating'], 'in', ['the', 'black', '--', 'an', 'accomplishment', 'that']]\n",
+ "[['her', 'since', 'then,', 'it', 'has', 'filled'], 'in', ['that', 'feeling.\"', 'The', 'advice', 'and', 'support']]\n",
+ "[['nationwide.', 'The', 'Los', 'Angeles', 'chapter,', 'based'], 'in', ['Glendale,', 'has', 'just', 'one', 'paid', 'employee']]\n",
+ "[['classes.', 'The', 'free', 'newspaper', 'is', 'distributed'], 'in', ['elementary', 'schools', 'and', 'daycare', 'centers', 'in']]\n",
+ "[['in', 'elementary', 'schools', 'and', 'daycare', 'centers'], 'in', ['Santa', 'Clarita.', '--', 'Yendi', 'Serwaa,', 'who']]\n",
+ "[['footwear,', 'hair', 'accessory', 'and', 'leather-goods', 'company'], 'in', ['2006.', 'With', 'the', 'advice', 'of', 'SCORE,']]\n",
+ "[['credits', 'for', 'a', '400', 'percent', 'increase'], 'in', ['sales.', '--', 'Karen', 'Jashinsky', 'founded', 'O2']]\n",
+ "[['be', 'financed', 'is', 'set', 'to', 'begin'], 'in', ['earnest.', 'The', 'outcome', 'promises', 'to', 'have']]\n",
+ "[['again.', 'But', 'just', 'as', 'it', 'has'], 'in', ['this', 'election', 'cycle,', 'it', 'is', 'likely']]\n",
+ "[['principle,', 'will', 'shape', 'the', 'jockeying.', 'Democrats,'], 'in', ['particular,', 'who', 'have', 'traditionally', 'supported', 'limits']]\n",
+ "[['Sen.', 'John', 'F.', \"Kerry's\", 'presidential', 'campaign'], 'in', ['2004.', 'Bob', 'Kerrey,', 'the', 'Democratic', 'former']]\n",
+ "[['federal', 'races,', 'wrote', 'an', 'opinion', 'article'], 'in', ['The', 'New', 'York', 'Post', 'last', 'week']]\n",
+ "[['The', 'New', 'York', 'Post', 'last', 'week'], 'in', ['which', 'he', 'confessed', 'to', 'new-found', 'ambivalence']]\n",
+ "[['to', 'new-found', 'ambivalence', 'on', 'the', 'issue'], 'in', ['light', 'of', \"Obama's\", 'success', 'among', 'small']]\n",
+ "[['and', 'the', 'energy', 'he', 'has', 'seen'], 'in', ['this', \"year's\", 'election.', 'He', 'said', 'in']]\n",
+ "[['in', 'this', \"year's\", 'election.', 'He', 'said'], 'in', ['an', 'interview', 'that', 'part', 'of', 'his']]\n",
+ "[['he', 'said', 'he', 'believed', 'many', 'others'], 'in', ['his', 'party', 'were', 'wrestling', 'with', 'the']]\n",
+ "[['presidential', 'campaigns', 'would', 'be', 'a', 'priority'], 'in', ['their', 'administration.', 'But', 'Obama', 'apparently', 'did']]\n",
+ "[['McCain', 'opted', 'for', 'the', '$84', 'million'], 'in', ['public', 'financing.', 'But', 'the', 'survey', 'also']]\n",
+ "[['like', 'the', 'economy', 'and', 'the', 'war'], 'in', ['Iraq.', 'There', 'is', 'also', 'the', 'matter']]\n",
+ "[['the', 'lead', 'sponsor', 'of', 'a', 'measure'], 'in', ['the', 'House', 'to', 'update', 'the', 'presidential']]\n",
+ "[[\"don't\", 'really', 'know', 'what', 'might', 'materialize'], 'in', ['the', 'way', 'of', 'views', 'on', 'our']]\n",
+ "[['cause', 'for', 'McCain,', 'though', 'he', 'declined'], 'in', ['recent', 'years', 'to', 'sponsor', 'bills', 'updating']]\n",
+ "[['to', 'win', 'on', 'Tuesday,', 'the', 'resistance'], 'in', ['Democratic', 'circles', 'to', 'new', 'financing', 'rules']]\n",
+ "[['on', 'the', \"Republicans'\", 'White', 'House', 'grip'], 'in', ['2012.', 'The', 'existing', 'presidential', 'public', 'financing']]\n",
+ "[['existing', 'presidential', 'public', 'financing', 'system', 'began'], 'in', ['the', '1970s', 'after', 'the', 'Watergate', 'scandal']]\n",
+ "[['to', 'limit', 'the', 'influence', 'of', 'money'], 'in', ['politics,', 'but', 'it', 'has', 'not', 'kept']]\n",
+ "[['been', 'raised', 'by', 'the', 'presidential', 'candidates'], 'in', ['this', \"year's\", 'primary', 'and', 'general', 'elections']]\n",
+ "[['to', 'offer', 'new', 'incentives', 'to', 'participate'], 'in', ['the', 'public', 'finance', 'system', 'by', 'substantially']]\n",
+ "[['ratio', 'of', 'public', 'matching', 'funds', 'available'], 'in', ['the', 'primary,', 'eliminating', 'state-by-state', 'primary', 'spending']]\n",
+ "[['addressed', 'the', 'problem', 'of', 'big-money', 'influence'], 'in', ['politics.', 'Skeptics', 'note', 'that', 'Obama', 'raised']]\n",
+ "[['issue', 'that', 'has', 'drawn', 'increasing', 'scrutiny'], 'in', ['recent', 'weeks', 'because', 'of', 'the', 'Obama']]\n",
+ "[['to', 'the', 'government', 'detailing', 'their', 'progress'], 'in', ['ensuring', '\"intellectual', 'diversity,\"', 'prompted', 'universities', 'to']]\n",
+ "[['book', '\"Closed', 'Minds?', 'Politics', 'and', 'Ideology'], 'in', ['American', 'Universities\"', '(Brookings', 'Institution', 'Press).', 'The']]\n",
+ "[['7,000', 'students', 'at', '38', 'institutions', 'published'], 'in', ['the', 'current', 'PS:', 'Political', 'Science', 'and']]\n",
+ "[['accepted', 'by', 'the', 'journal', 'to', 'run'], 'in', ['April', '2009,', 'both', 'reach', 'similar', 'conclusions.']]\n",
+ "[['have', 'frequently', 'conducted', 'research', 'on', 'politics'], 'in', ['higher', 'education,', 'write', 'in', 'that', 'second']]\n",
+ "[['on', 'politics', 'in', 'higher', 'education,', 'write'], 'in', ['that', 'second', 'study.', 'No', 'one', 'disputes']]\n",
+ "[['their', 'college', 'years.', 'Still,', 'both', 'studies'], 'in', ['the', 'peer-reviewed', 'PS,', 'for', 'example,', 'found']]\n",
+ "[['PS,', 'for', 'example,', 'found', 'that', 'changes'], 'in', ['political', 'ideology', 'could', 'not', 'be', 'attributed']]\n",
+ "[['for', 'fuel-efficient', 'vehicles', 'approved', 'by', 'Congress'], 'in', ['September', 'and', 'administered', 'by', 'the', 'Energy']]\n",
+ "[['companies', 'or', 'to', 'play', 'a', 'part'], 'in', ['a', 'GM-Chrysler', 'merger', 'that', 'could', 'cost']]\n",
+ "[['candidate,', 'Sen.', 'Barack', 'Obama,', 'has', 'said'], 'in', ['recent', 'days', 'that', 'he', 'supports', 'increasing']]\n",
+ "[['its', 'role,', 'if', 'any.', 'Potential', 'investors'], 'in', ['the', 'deal', 'have', 'been', 'hesitant', 'to']]\n",
+ "[['the', 'release', 'of', 'the', '$25', 'billion'], 'in', ['low-interest', 'loans', 'for', 'GM,', 'Chrysler', 'and']]\n",
+ "[['sales', 'deteriorating', 'to', 'their', 'lowest', 'level'], 'in', ['15', 'years,', \"Detroit's\", 'traditional', 'Big', 'Three']]\n",
+ "[['troubles', 'led', 'GM', 'into', 'merger', 'talks'], 'in', ['September', 'with', \"Chrysler's\", 'majority', 'owner,', 'the']]\n",
+ "[['running', 'out', 'of', 'cash,', 'and', 'badly'], 'in', ['need', 'of', 'more', 'liquidity,\"', 'said', 'David']]\n",
+ "[['of', 'the', 'Center', 'for', 'Automotive', 'Research'], 'in', ['Ann', 'Arbor,', 'Mich.', '\"Releasing', 'the', '$25']]\n",
+ "[['Arbor,', 'Mich.', '\"Releasing', 'the', '$25', 'billion'], 'in', ['loans', 'is', 'a', 'necessary', 'first', 'step.\"']]\n",
+ "[['companies', 'employ', 'more', 'than', '200,000', 'workers'], 'in', ['the', 'United', 'States', 'and', 'provide', 'health']]\n",
+ "[['industry', 'is', 'growing', 'among', 'political', 'leaders'], 'in', ['states', 'with', 'heavy', 'automotive', 'employment.', 'Last']]\n",
+ "[['unable', 'to', 'reverse', 'a', 'steady', 'decline'], 'in', ['the', 'fortunes', 'at', 'the', 'company,', 'the']]\n",
+ "[['Big', 'Three.', 'While', 'overall', 'auto', 'sales'], 'in', ['the', 'United', 'States', 'are', 'down', '12.8']]\n",
+ "[['Ford.', 'Industry', 'sales', 'fell', '26.6', 'percent'], 'in', ['September,', 'but', \"October's\", 'totals', 'could', 'be']]\n",
+ "[['a', 'series', 'of', 'measures', 'on', 'Sunday'], 'in', ['response', 'to', 'a', 'rise', 'in', 'violence']]\n",
+ "[['Sunday', 'in', 'response', 'to', 'a', 'rise'], 'in', ['violence', 'by', 'extremist', 'Jewish', 'settlers', 'in']]\n",
+ "[['in', 'violence', 'by', 'extremist', 'Jewish', 'settlers'], 'in', ['the', 'West', 'Bank,', 'including', 'a', 'halt']]\n",
+ "[['two', 'dozen', 'settlements', 'immediately.', 'Militant', 'settlers'], 'in', ['the', 'southern', 'West', 'Bank', 'clashed', 'over']]\n",
+ "[['Settlers', 'also', 'have', 'damaged', 'Palestinian', 'property'], 'in', ['the', 'area', 'in', 'recent', 'days,', 'as']]\n",
+ "[['damaged', 'Palestinian', 'property', 'in', 'the', 'area'], 'in', ['recent', 'days,', 'as', 'part', 'of', 'a']]\n",
+ "[['a', 'policy', 'they', 'call', '\"price', 'tag,\"'], 'in', ['which', 'a', 'price', 'is', 'exacted', 'for']]\n",
+ "[['group', 'of', 'wild', 'people', 'who', 'behave'], 'in', ['a', 'way', 'that', 'threatens', 'proper', 'law']]\n",
+ "[['proper', 'law', 'and', 'governance,', 'not', 'only'], 'in', ['the', 'areas', 'in', 'which', 'they', 'live,']]\n",
+ "[['governance,', 'not', 'only', 'in', 'the', 'areas'], 'in', ['which', 'they', 'live,', 'but', 'also', 'in']]\n",
+ "[['in', 'which', 'they', 'live,', 'but', 'also'], 'in', ['the', 'overall', 'atmosphere', 'of', 'the', 'State']]\n",
+ "[['curbing', 'the', 'violence', 'were', 'an', 'increase'], 'in', ['law', 'enforcement', 'personnel,', 'arrests', 'and', 'timely']]\n",
+ "[['international', 'community', 'views', 'all', 'Jewish', 'construction'], 'in', ['the', 'areas', 'conquered', 'by', 'Israel', 'in']]\n",
+ "[['in', 'the', 'areas', 'conquered', 'by', 'Israel'], 'in', ['the', '1967', 'war', 'as', 'illegal;', 'the']]\n",
+ "[['It', 'found', 'widespread', 'collusion', 'among', 'officials'], 'in', ['successive', 'governments', 'to', 'spend', 'state', 'funds']]\n",
+ "[['spend', 'state', 'funds', 'to', 'build', 'outposts,'], 'in', ['contravention', 'of', 'stated', 'policy', 'and', 'law.']]\n",
+ "[['government', 'financing', 'of', 'settler', 'regional', 'councils'], 'in', ['the', 'West', 'Bank', 'and', 'said', 'that']]\n",
+ "[['incitement', 'and', 'demonization', 'against', 'the', 'settlers'], 'in', ['advance', 'of', 'the', 'national', 'elections', 'set']]\n",
+ "[['said', 'that', 'the', 'only', 'government', 'investment'], 'in', ['the', 'outposts', 'today', 'was', 'indirect,', 'in']]\n",
+ "[['in', 'the', 'outposts', 'today', 'was', 'indirect,'], 'in', ['the', 'form', 'of', 'the', 'regional', 'council']]\n",
+ "[['be', 'replaced', 'with', 'a', 'better', 'one'], 'in', ['four', 'months.\"', '\"What\\'s', 'up,', 'Lenny,\"', 'a']]\n",
+ "[['a', 'passing', 'nod', 'to', 'another', 'day'], 'in', ['the', 'financial', 'scrum,', 'the', 'greeting', 'can']]\n",
+ "[['the', 'greeting', 'can', 'also', 'be', 'interpreted'], 'in', ['these', 'uncertain', 'times', 'as', 'a', 'question']]\n",
+ "[['floor,', 'shoulder-to-shoulder', 'with', 'six', 'other', 'men'], 'in', ['a', 'booth', 'the', 'size', 'of', 'an']]\n",
+ "[['scholars', 'of', 'the', 'hurly-burly', 'floor,', 'educated'], 'in', ['reading', 'markets,', 'hunting', 'for', 'matches', 'and']]\n",
+ "[['of', 'the', 'market', 'imminent,', 'the', 'men'], 'in', ['the', 'booth', 'send', 'instant', 'messages', 'to']]\n",
+ "[['to', 'clients,', 'asking,', 'hoping,', 'for', 'interest'], 'in', ['trading', 'stock.', 'But', 'the', 'volatile', 'activity']]\n",
+ "[['trading', 'stock.', 'But', 'the', 'volatile', 'activity'], 'in', ['recent', 'weeks', 'has', 'unnerved', 'many', 'investors;']]\n",
+ "[['center', 'of', 'the', 'floor,', 'where', 'specialists'], 'in', ['individual', 'stocks', 'track', 'the', 'last', 'best']]\n",
+ "[['returns.', 'Brokers', 'gaze', 'at', 'computer', 'screens'], 'in', ['their', 'booths,', 'some', 'to', 'monitor', 'stocks,']]\n",
+ "[['has', 'been', 'beeping', 'a', 'horn', 'concealed'], 'in', ['his', 'jacket.', 'But', 'the', 'humor', 'is']]\n",
+ "[['a', 'senior', 'broker', 'who', 'started', 'here'], 'in', ['1982.', 'Moments', 'later', 'he', 'is', 'interrupted']]\n",
+ "[['this', 'week.\"', 'One', 'of', 'the', 'brokers'], 'in', ['that', 'small', 'booth,', 'Mike', 'Ackerman,', 'leads']]\n",
+ "[['balcony,', 'a', 'delegate', 'asks', 'a', 'question'], 'in', ['halting', 'English:', 'Does', 'Ackerman', 'feel', 'personally']]\n",
+ "[['gut', 'instinct.', 'They', 'do', 'not', 'deal'], 'in', ['subprime', 'mortgages;', 'they', 'do', 'not', 'get']]\n",
+ "[['back.\"', 'Tomorrow', 'the', 'market', 'will', 'plummet'], 'in', ['the', 'very', 'last', 'minutes.', 'Beaten', 'brokers']]\n",
+ "[['explosives-laden', 'truck', 'into', 'a', 'security', 'checkpoint'], 'in', ['the', 'restive', 'South', 'Waziristan', 'tribal', 'region,']]\n",
+ "[['and', 'the', 'United', 'States', 'has', 'worsened'], 'in', ['recent', 'weeks', 'after', 'a', 'string', 'of']]\n",
+ "[['after', 'a', 'string', 'of', 'American', 'strikes'], 'in', ['Pakistan', 'on', 'militant', 'hide-outs.', 'Petraeus,', 'credited']]\n",
+ "[['credited', 'with', 'turning', 'around', 'the', 'war'], 'in', ['Iraq,', 'was', 'accompanied', 'by', 'Richard', 'A.']]\n",
+ "[['militant.', 'Nazir,', 'the', \"Taliban's\", 'top', 'commander'], 'in', ['South', 'Waziristan,', 'was', 'reportedly', 'the', 'target']]\n",
+ "[['leading', 'English-language', 'newspapers,', 'reported', 'that', 'militants'], 'in', ['South', 'Waziristan', 'had', 'threatened', 'to', 'scrap']]\n",
+ "[['if', 'the', 'Pakistan', 'military', 'joins', 'Washington'], 'in', ['opposing', 'him,\"', 'Rafiq', 'said.', 'Col.', 'Moammar']]\n",
+ "[['State', 'Condoleezza', 'Rice', 'was', 'his', 'guest'], 'in', ['Libya.', 'The', 'visit', 'here', 'suggested', 'that']]\n",
+ "[['visit,', 'Gadhafi', 'pitched', 'a', 'Bedouin', 'tent'], 'in', ['a', 'Kremlin', 'garden', 'and', 'invited', 'Prime']]\n",
+ "[['his', 'period', 'of', 'ostracism,', 'visiting', 'Libya'], 'in', ['2000.', 'Gadhafi', 'was', 'expected', 'to', 'then']]\n",
+ "[['the', 'bow', 'to', 'the', 'new', 'administration'], 'in', ['Washington.\"', 'Russian', 'energy', 'companies', 'have', 'been']]\n",
+ "[['investment', 'programs.', 'In', 'a', 'bold', 'offer'], 'in', ['July,', 'for', 'example,', 'Gazprom,', 'the', 'Russian']]\n",
+ "[['all', 'of', \"Libya's\", 'natural', 'gas', 'production'], 'in', ['a', 'deal', 'that', 'could', 'help', 'Gazprom']]\n",
+ "[['Libya', 'has', 'been', 'noncommittal.', 'Now,', 'apparently'], 'in', ['an', 'effort', 'to', 'sweeten', 'the', 'deal']]\n",
+ "[['portion', 'of', \"Qaddafi's\", 'meeting', 'with', 'Putin'], 'in', ['the', 'tent', 'shown', 'on', 'Russian', 'television,']]\n",
+ "[['of', 'oil', 'and', 'gas,\"', 'Gadhafi', 'said,'], 'in', ['comments', 'translated', 'into', 'Russian', 'by', 'the']]\n",
+ "[['buying', 'licenses', 'to', 'Libyan', 'gas', 'fields'], 'in', ['joint', 'ventures', 'with', 'the', 'Italian', 'company']]\n",
+ "[['licenses', 'for', 'access', 'to', 'coveted', 'reserves'], 'in', ['Russia,', 'in', 'a', 'sign', 'of', 'how']]\n",
+ "[['access', 'to', 'coveted', 'reserves', 'in', 'Russia,'], 'in', ['a', 'sign', 'of', 'how', 'highly', 'Russia']]\n",
+ "[['analysts', 'say', 'that', 'if', 'Gazprom', 'succeeds'], 'in', ['wrapping', 'up', 'supply', 'from', 'Libya', 'and']]\n",
+ "[['idea', 'of', 'closer', 'commercial', 'ties.', '\"Unfortunately,'], 'in', ['the', 'past', 'our', 'relations', 'have', 'been']]\n",
+ "[['and', 'there', 'was', 'virtually', 'no', 'cooperation'], 'in', ['civilian', 'sectors,\"', 'he', 'said', 'at', 'a']]\n",
+ "[['that', 'such', 'cooperation', 'is', 'especially', 'important'], 'in', ['the', 'current', 'conditions.\"', 'Military', 'deals', 'were']]\n",
+ "[['Kremlin', 'sources,', 'said', 'the', 'Libyans', 'were'], 'in', ['talks', 'to', 'buy', '$2', 'billion', 'worth']]\n",
+ "[['(Monday).', 'European', 'Union', 'finance', 'ministers', 'meet'], 'in', ['Brussels', 'to', 'discuss', 'responses', 'to', 'the']]\n",
+ "[['for', 'its', 'anti-Gov.', 'Chris', 'Gregoire', 'signs'], 'in', ['Eastern', 'Washington', 'with', 'the', 'message:', '\"Don\\'t']]\n",
+ "[['with', 'the', '\"hall', 'of', 'fame\"', 'category'], 'in', ['the', 'annual', '\"Best', 'Dressed\"', 'listing,', 'initiative']]\n",
+ "[['and', 'self-promotion.', 'The', 'academic', 'credentials', 'debate'], 'in', ['the', 'Dave', 'Reichert-Darcy', 'Burner', 'race', \"can't\"]]\n",
+ "[['\"Washington\\'s', 'death-with-dignity', 'law.\"', 'I-1000', 'is', 'leading'], 'in', ['the', 'polls,', 'but', 'its', 'radio', 'spots']]\n",
+ "[['law', 'to', 'allow', 'physicians', 'to', 'assist'], 'in', ['ending', \"patients'\", 'lives.', 'The', '\"religious', 'leaders\"']]\n",
+ "[['The', 'campaign', 'has', 'openly', 'bashed', 'Catholics'], 'in', ['missives', 'to', 'liberal', 'bloggers.', 'Code', 'phrases']]\n",
+ "[['liberal', 'bloggers.', 'Code', 'phrases', 'are', 'used'], 'in', ['the', 'state', 'Voters', 'Pamphlet', 'and', 'on']]\n",
+ "[['educator', 'at', 'the', 'University', 'of', 'Sussex'], 'in', ['England,', 'gave', '$253,555.', 'Loren', 'Parks,', 'a']]\n",
+ "[['Loren', 'Parks,', 'a', 'Nevada', 'businessman,', 'put'], 'in', ['$250,000.', 'Compassion', 'in', 'Choices,', 'based', 'in']]\n",
+ "[['Nevada', 'businessman,', 'put', 'in', '$250,000.', 'Compassion'], 'in', ['Choices,', 'based', 'in', 'Denver,', 'has', 'given']]\n",
+ "[['in', '$250,000.', 'Compassion', 'in', 'Choices,', 'based'], 'in', ['Denver,', 'has', 'given', '$185,000.', 'Oregon', 'Death']]\n",
+ "[['$185,000.', 'Oregon', 'Death', 'with', 'Dignity', 'put'], 'in', ['$100,000.', 'A', 'Compassion', '&', 'Choices', 'political']]\n",
+ "[['as', 'a', 'Columbus,', 'Ohio,', 'inventor,', 'put'], 'in', ['$400,000.', 'Of', 'course,', 'ex-Gov.', 'Booth', 'Gardner']]\n",
+ "[['bring', 'terminally', 'ill', 'patients', 'and', 'families'], 'in', ['for', 'a', 'soft', 'landing.', '\"We', 'provide']]\n",
+ "[['life-limiting', 'illness', 'even', 'before', 'they', 'come'], 'in', ['to', 'hospice', 'care', '.', '.', '.']]\n",
+ "[['interns', 'provide', 'service', 'for', '189', 'people'], 'in', ['pre-hospice.', 'Providence', 'also', 'has', '29', 'patients']]\n",
+ "[['pre-hospice.', 'Providence', 'also', 'has', '29', 'patients'], 'in', ['a', \"children's\", 'program,', 'three', 'in', 'hospice']]\n",
+ "[['patients', 'in', 'a', \"children's\", 'program,', 'three'], 'in', ['hospice', 'and', '16', 'with', 'limited', 'life']]\n",
+ "[['generous', 'when', 'patients', 'are', 'formally', 'enrolled'], 'in', ['hospice.', 'It', 'provides', '$162', 'a', 'day.']]\n",
+ "[['and', 'absorbs', 'about', '$10,000', 'a', 'month'], 'in', ['charity', 'care:', 'Nobody', 'lacking', 'coverage', 'is']]\n",
+ "[['of', 'sick', 'people,', 'and', 'their', 'families,'], 'in', ['the', 'transitions', 'program.', 'A', 'real', 'meaning']]\n",
+ "[['many', 'of', \"Pakistan's\", 'secular-minded', 'elite.', 'But'], 'in', ['recent', 'weeks,', 'panic', 'has', 'found', 'its']]\n",
+ "[['Oct.', '7,', 'three', 'small', 'bombs', 'exploded'], 'in', ['juice', 'shops', 'in', 'a', 'sprawling,', 'congested']]\n",
+ "[['small', 'bombs', 'exploded', 'in', 'juice', 'shops'], 'in', ['a', 'sprawling,', 'congested', 'neighborhood', 'called', 'Garhi']]\n",
+ "[['young', 'couples', 'to', 'cuddle,', 'were', 'gutted'], 'in', ['the', 'blasts.', 'One', 'person', 'was', 'killed,']]\n",
+ "[['more', 'attacks', 'against', '\"centers', 'of', 'immorality\"'], 'in', ['the', 'city.', 'On', 'Oct.', '9,', 'Shabbir']]\n",
+ "[['that', 'I', 'can,\"', 'Labha', 'recalled,', 'sitting'], 'in', ['his', 'basement', 'office', 'on', 'a', 'recent']]\n",
+ "[['60,000', 'pornographic', 'videos', 'and', 'burned', 'them'], 'in', ['a', 'bonfire', 'as', 'the', \"city's\", 'top']]\n",
+ "[['Labha', 'said.', '\"But', 'the', 'bomb', 'blasts'], 'in', ['Garhi', 'Shahu', 'had', 'made', 'us', 'apprehensive.']]\n",
+ "[['Taliban-style', 'moral', 'policing,', 'usually', 'found', 'only'], 'in', ['more', 'restive', 'corners', 'of', 'the', 'country']]\n",
+ "[['the', 'North', 'West', 'Frontier', 'province.', 'There,'], 'in', ['cities', 'much', 'closer', 'to', 'the', 'tribal']]\n",
+ "[['attacked', 'repeatedly', 'by', 'the', 'Taliban.', 'But'], 'in', ['Lahore,', 'the', 'capital', 'of', 'Punjab', 'province,']]\n",
+ "[['well', 'as', 'a', 'thriving', 'underground', 'trade'], 'in', ['pornographic', 'movies,', 'which', 'are', 'illegal', 'here.']]\n",
+ "[['are', 'illegal', 'here.', 'The', 'small', 'stores'], 'in', ['dingy,', 'clustered', 'plazas', 'had', 'attracted', 'buyers']]\n",
+ "[['been', 'unable', 'to', 'stop', 'the', 'trade'], 'in', ['pornography.', 'But', 'the', 'specter', 'of', 'the']]\n",
+ "[['the', 'specter', 'of', 'the', 'Taliban', 'achieved'], 'in', ['a', 'day', 'what', 'the', 'police', 'had']]\n",
+ "[['was', 'contemplating', 'a', 'move', 'to', 'Dubai,'], 'in', ['the', 'United', 'Arab', 'Emirates.', 'Police', 'officials,']]\n",
+ "[['Hall', 'Road', 'episode', 'has', 'exposed', 'fissures'], 'in', ['society', 'in', 'Lahore,', 'between', 'the', \"city's\"]]\n",
+ "[['episode', 'has', 'exposed', 'fissures', 'in', 'society'], 'in', ['Lahore,', 'between', 'the', \"city's\", 'liberal', 'elite']]\n",
+ "[['Hall', 'Road,', 'said', 'the', 'threats', 'were'], 'in', ['fact', 'a', 'blessing.', '\"We', 'had', 'been']]\n",
+ "[['and', 'blogger', 'who', 'takes', 'great', 'pride'], 'in', ['his', 'city,', 'insisted', 'that', '\"Islamic', 'extremism']]\n",
+ "[['that', 'on', 'average,', 'stocks', 'performed', 'better'], 'in', ['the', 'final', 'two', 'years', 'of', 'a']]\n",
+ "[['attributed', 'to', 'maneuvering', 'by', 'the', 'party'], 'in', ['power', 'to', 'better', 'its', 'chances', 'of']]\n",
+ "[['they', 'begin', 'to', 'prime', 'the', 'pump'], 'in', ['the', 'third', 'year,', 'fostering', 'bull', 'markets,']]\n",
+ "[['But', 'as', 'with', 'its', 'older', 'cousin'], 'in', ['the', 'almanac', 'business,', 'Poor', \"Richard's,\", 'the']]\n",
+ "[['business,', 'Poor', \"Richard's,\", 'the', 'pattern', 'described'], 'in', ['the', 'book', 'has', 'not', 'always', 'panned']]\n",
+ "[['however,', 'was', 'only', 'an', 'early', 'entry'], 'in', ['a', 'long', 'tradition', 'of', 'market', 'watchers']]\n",
+ "[['results,', 'have', 'pointed', 'out', 'that', 'declines'], 'in', ['the', 'stock', 'market', 'right', 'before', 'a']]\n",
+ "[['connection', 'at', 'all.', 'Without', 'doubt,', 'declines'], 'in', ['the', 'stock', 'market', 'can', 'signal', 'broader']]\n",
+ "[['stock', 'market', 'can', 'signal', 'broader', 'problems'], 'in', ['the', 'economy,', 'and', 'the', 'performance', 'of']]\n",
+ "[['adviser', 'and', 'head', 'of', 'Birinyi', 'Associates'], 'in', ['Westport,', 'Conn.', '\"I', 'would', 'never', 'consider']]\n",
+ "[['Conn.', '\"I', 'would', 'never', 'consider', 'it'], 'in', ['terms', 'of', 'investment', 'decision-making,\"', 'he', 'said.']]\n",
+ "[['frankly', 'to', 'me,', \"it's\", 'an', 'exercise'], 'in', ['futility.\"', 'With', 'stocks', 'facing', 'their', 'worst']]\n",
+ "[['With', 'stocks', 'facing', 'their', 'worst', 'declines'], 'in', ['decades,', 'this', 'year', 'may', 'be', 'particularly']]\n",
+ "[['predict.', 'Some', 'investors', 'say', 'the', 'problems'], 'in', ['the', 'economy', 'are', 'so', 'far-reaching', 'that']]\n",
+ "[['the', 'winner', 'of', 'the', 'election', 'could,'], 'in', ['the', 'short-term', 'at', 'least,', 'hardly', 'matter']]\n",
+ "[['the', 'function', 'of', 'a', 'bay', 'leaf'], 'in', ['a', 'recipe', 'of', 'coq', 'au', 'vin.\"']]\n",
+ "[['to', 'stay', 'focused', 'on', 'the', 'problems'], 'in', ['the', 'economy,', 'including', 'the', 'credit', 'freeze']]\n",
+ "[['once', 'it', 'plays', 'out,', 'the', 'Democrats'], 'in', ['the', 'long', 'run', 'have', 'had', 'historically']]\n",
+ "[['by', 'an', 'average', 'of', '0.7', 'percent'], 'in', ['the', 'event', 'of', 'a', 'Republican', 'victory.']]\n",
+ "[['what', 'sorts', 'of', 'policies', 'you', 'bring'], 'in', ['to', 'spark', 'it', 'up,\"', 'Siegel', 'said.']]\n",
+ "[['he', 'added.', '\"It\\'s', 'not', 'something', 'used'], 'in', ['a', 'vacuum.', \"It's\", 'not', 'that', 'you']]\n",
+ "[['something', 'horrible', 'going', 'on,', 'something', 'negative'], 'in', ['this', 'global', 'crisis,', 'which', 'could', 'mean']]\n",
+ "[['and', 'wins', 'Pennsylvania,', 'it', 'will', 'be'], 'in', ['part', 'because', 'of', 'voters', 'like', 'Harry']]\n",
+ "[['who', 'supported', 'Sen.', 'Hillary', 'Rodham', 'Clinton'], 'in', ['the', 'primary', 'and', 'is', 'still', 'not']]\n",
+ "[['as', 'he', 'walked', 'his', 'miniature', 'poodle'], 'in', ['Marconi', 'Park', 'in', 'South', 'Philadelphia,', 'a']]\n",
+ "[['his', 'miniature', 'poodle', 'in', 'Marconi', 'Park'], 'in', ['South', 'Philadelphia,', 'a', 'largely', 'white,', 'Catholic,']]\n",
+ "[['polls', 'point', 'to', 'an', 'Obama', 'victory'], 'in', ['Pennsylvania,', 'with', 'Obama', 'holding', 'a', 'big']]\n",
+ "[['with', 'Obama', 'holding', 'a', 'big', 'lead'], 'in', ['Philadelphia.', 'But', 'the', 'polls', 'are', 'tightening,']]\n",
+ "[['shown', 'no', 'signs', 'of', 'letting', 'up'], 'in', ['the', 'state.', 'As', 'the', 'Republicans', 'try']]\n",
+ "[['the', 'Republicans', 'try', 'to', 'map', 'situations'], 'in', ['which', 'McCain', 'could', 'pull', 'off', 'an']]\n",
+ "[['\"I\\'m', 'spending', 'a', 'lot', 'of', 'time'], 'in', ['Philadelphia,\"', 'said', 'Robert', 'Gleason,', 'the', 'chairman']]\n",
+ "[['they', 'carried', 'none.\"', 'While', 'wealthier', 'whites'], 'in', ['Philadelphia,', 'especially', 'in', 'Center', 'City,', 'overwhelmingly']]\n",
+ "[['While', 'wealthier', 'whites', 'in', 'Philadelphia,', 'especially'], 'in', ['Center', 'City,', 'overwhelmingly', 'support', 'Obama,', 'some']]\n",
+ "[['Philadelphia,', 'McCain', 'signs', 'have', 'cropped', 'up'], 'in', ['the', 'windows', 'of', 'the', 'low', 'brick']]\n",
+ "[['and', 'a', 'lawyer', 'who', 'is', 'steeped'], 'in', ['local', 'politics.', '\"Obama', 'is', 'likely', 'to']]\n",
+ "[['to', 'significantly', 'underperform', 'Kerry', 'and', 'Gore'], 'in', ['those', 'white', 'row-house', 'wards.\"', 'The', 'Obama']]\n",
+ "[['61,', 'a', 'data', 'processor', 'who', 'lives'], 'in', ['the', 'neighborhood', 'and', 'is', 'helping', 'out']]\n",
+ "[['mate,', 'is', 'being', 'dispatched', 'to', 'speak'], 'in', ['Marconi', 'Park', 'on', 'Monday', 'night', 'for']]\n",
+ "[['doubt', 'that', 'Obama,', 'who', 'won', 'Philadelphia'], 'in', ['the', 'primary,', 'will', 'sweep', 'the', 'city']]\n",
+ "[['about', '80', 'percent', 'of', 'the', 'vote'], 'in', ['Philadelphia,', 'beating', 'President', 'Bush', 'by', '412,000']]\n",
+ "[['send', 'reinforcements.', 'Hillary', 'Clinton', 'is', 'due'], 'in', ['Pittsburgh', 'on', 'Monday;', 'former', 'President', 'Bill']]\n",
+ "[['Clinton', 'is', 'to', 'stump', 'for', 'Obama'], 'in', ['Erie', 'and', 'elsewhere', 'the', 'same', 'day.']]\n",
+ "[['made', 'three', 'in-person', 'pleas', 'to', 'voters'], 'in', ['the', 'eastern', 'part', 'of', 'the', 'state']]\n",
+ "[['said', 'McCain', 'hoped', 'to', 'do', 'better'], 'in', ['the', 'city', 'than', 'Bush', 'did,', 'and']]\n",
+ "[['keep', 'Obama', 'under', 'a', '400,000', 'margin'], 'in', ['Philadelphia.\"', '(He', 'added', 'with', 'a', 'laugh,']]\n",
+ "[['rely', 'on', 'the', \"Republicans'\", 'deepest', 'well'], 'in', ['the', 'state,', 'which,', 'until', '1992,', 'had']]\n",
+ "[['Chester', 'County,', 'is', 'closely', 'contested.', 'Elsewhere'], 'in', ['the', 'state,', 'McCain', 'needs', 'a', 'big']]\n",
+ "[['state,', 'McCain', 'needs', 'a', 'big', 'turnout'], 'in', ['Central', 'Pennsylvania', 'and', 'is', 'making', 'an']]\n",
+ "[['the', 'Obama', 'team', 'on', 'Sunday', 'sent'], 'in', ['Caroline', 'Kennedy.', 'Despite', 'the', 'frenzied', 'last-minute']]\n",
+ "[['analyst', 'at', 'Franklin', '&', 'Marshall', 'College'], 'in', ['Lancaster,', 'said', 'he', 'expected', 'Obama', 'to']]\n",
+ "[['operation,', 'scores', 'of', 'volunteers', 'were', 'hustling'], 'in', ['and', 'out', 'of', 'the', 'new', 'branch']]\n",
+ "[['57,', 'a', 'film', 'curator', 'who', 'lives'], 'in', ['Brooklyn.', 'They', 'said', 'they', 'were', 'also']]\n",
+ "[['by', 'the', 'negative', 'reaction', 'to', 'them'], 'in', ['South', 'Philadelphia.', 'Masone', 'and', 'her', 'friend,']]\n",
+ "[['friend,', 'Eileen', 'Newman,', '62,', 'who', 'works'], 'in', ['film', 'management', 'and', 'lives', 'in', 'Manhattan,']]\n",
+ "[['works', 'in', 'film', 'management', 'and', 'lives'], 'in', ['Manhattan,', 'said', 'that', 'some', 'people', 'said']]\n",
+ "[['auto', 'industry', 'employs', 'hundreds', 'of', 'thousands'], 'in', ['Michigan,', 'but', 'its', 'reach', 'is', 'broader']]\n",
+ "[['parts', 'suppliers', 'and', 'their', 'related', 'businesses'], 'in', ['the', 'United', 'States.', 'Every', 'direct', 'job']]\n",
+ "[['Every', 'direct', 'job', 'at', 'an', 'automaker'], 'in', ['the', 'U.S.', 'creates', 'five', 'more', 'jobs,']]\n",
+ "[['for', 'the', 'Center', 'for', 'Automotive', 'Research'], 'in', ['Ann', 'Arbor.', 'Two', 'of', 'the', 'five']]\n",
+ "[['Street,\"', 'McAlinden', 'said.', 'No', 'other', 'industry'], 'in', ['America', 'has', 'as', 'broad', 'and', 'significant']]\n",
+ "[['restructuring', 'by', \"Detroit's\", 'Big', 'Three', 'automakers'], 'in', ['recent', 'years', 'that', 'has', 'closed', 'factories']]\n",
+ "[['Chesbrough,', 'senior', 'economist', 'for', 'CSM', 'Worldwide'], 'in', ['Northville,', 'an', 'automotive', 'market', 'research', 'firm.']]\n",
+ "[['firm.', '\"We', \"won't\", 'see', 'a', 'turnaround'], 'in', ['the', 'economy', 'as', 'a', 'whole,\"', 'he']]\n",
+ "[['he', 'said,', '\"until', 'we', 'see', 'improvement'], 'in', ['the', 'auto', 'industry.\"', 'The', 'importance', 'of']]\n",
+ "[['Three.', 'McAlinden', 'said', 'the', 'resulting', 'drop'], 'in', ['tax', 'income', 'and', 'other', 'losses', 'over']]\n",
+ "[['far', 'exceed', 'the', 'amount', 'being', 'sought'], 'in', ['government', 'aid.', 'Jobs', 'are', 'tied', 'to']]\n",
+ "[['million', 'U.S.', 'workers', '--', 'about', '1'], 'in', ['10', '--', 'can', 'draw', 'a', 'line']]\n",
+ "[['and', 'five', 'other', 'governors', 'said', 'automakers'], 'in', ['the', 'U.S.', 'directly', 'employ', 'about', '355,000']]\n",
+ "[['at', 'the', 'factory', 'or', 'for', 'sale'], 'in', ['the', 'aftermarket,', 'which', 'includes', 'accessories', 'and']]\n",
+ "[['project', 'manager', 'for', 'CAR.', 'They', 'work'], 'in', ['all', '50', 'states,', 'including', 'nine', 'in']]\n",
+ "[['in', 'all', '50', 'states,', 'including', 'nine'], 'in', ['Alaska', 'and', '145,000', 'in', 'Michigan,', 'she']]\n",
+ "[['including', 'nine', 'in', 'Alaska', 'and', '145,000'], 'in', ['Michigan,', 'she', 'said.', 'Each', 'of', 'those']]\n",
+ "[['just', 'on', 'the', 'supplier', 'side.', 'Factoring'], 'in', ['some', 'overlap', 'in', 'the', 'retail', 'spinoff']]\n",
+ "[['supplier', 'side.', 'Factoring', 'in', 'some', 'overlap'], 'in', ['the', 'retail', 'spinoff', 'from', 'each', 'supplier']]\n",
+ "[['automaker', 'job,', 'she', 'estimates', 'total', 'employment'], 'in', ['the', 'auto', 'industry', 'at', 'a', 'minimum']]\n",
+ "[['following', 'year-end', 'declines', 'of', '3.6', 'percent'], 'in', ['2006', 'and', '2.9', 'percent', 'in', '2007.']]\n",
+ "[['percent', 'in', '2006', 'and', '2.9', 'percent'], 'in', ['2007.', 'After', 'years', 'of', 'contributing', 'about']]\n",
+ "[['Johnson,', 'chief', 'economist', 'for', 'Comerica', 'Bank'], 'in', ['Dallas.', 'Johnson', 'paints', 'a', 'dramatically', 'different']]\n",
+ "[['also', 'buy', '$15', 'billion', 'a', 'year'], 'in', ['advertising', ',', 'not', 'counting', 'the', 'huge']]\n",
+ "[['with', '85', 'percent', 'of', 'that', 'done'], 'in', ['Michigan.', 'Both', 'presidential', 'candidates', 'have', 'energy']]\n",
+ "[['where', 'the', 'country', 'needs', 'to', 'go'], 'in', ['the', 'future', 'to', 'reduce', 'oil', 'dependence,\"']]\n",
+ "[['of', 'Western', 'donors', 'to', 'invest', 'heavily'], 'in', ['rebuilding', 'the', 'economically', 'broken', 'nation', 'as']]\n",
+ "[['nation', 'as', 'long', 'as', 'Mugabe', 'is'], 'in', ['charge,', 'even', 'if', 'a', 'deadlock', 'over']]\n",
+ "[['power-sharing', 'government', 'is', 'resolved.', 'Parsons', 'said'], 'in', ['an', 'interview', 'on', 'Sunday', 'that', 'last']]\n",
+ "[['the', 'Global', 'Fund', 'deposited', '$12.3', 'million'], 'in', ['foreign', 'currency', 'into', \"Zimbabwe's\", 'Reserve', 'Bank.']]\n",
+ "[['fighting.', 'The', 'Global', 'Fund', 'has', 'brought'], 'in', ['large', 'quantities', 'of', 'medicines', 'that', 'can']]\n",
+ "[['malaria', 'among', \"Zimbabwe's\", '12', 'million', 'people'], 'in', ['the', 'World', 'Health', \"Organization's\", 'most', 'recent']]\n",
+ "[['information', 'minister,', 'Sikhanyiso', 'Ndlovu,', 'said', 'Sunday'], 'in', ['an', 'interview', 'that', 'he', 'was', 'not']]\n",
+ "[['make', 'us', 'look', 'bad', 'and', 'horrendous'], 'in', ['international', 'eyes,\"', 'he', 'said.', 'Gideon', 'Gono,']]\n",
+ "[['range', 'of', 'things,', 'according', 'to', 'reports'], 'in', [\"Zimbabwe's\", 'state-owned', 'media.', 'Gono', 'gave', 'the']]\n",
+ "[['years.', 'Eddie', 'Cross,', 'a', 'senior', 'official'], 'in', ['the', 'opposition', 'Movement', 'for', 'Democratic', 'Change,']]\n",
+ "[['be', 'allowed', 'to', 'pay', 'service', 'providers'], 'in', ['foreign', 'currency.', 'If', 'agencies', 'are', 'increasingly']]\n",
+ "[['of', 'those', 'Zimbabweans', 'who', 'are', 'most'], 'in', ['need', 'of', 'humanitarian', 'response.\"', 'A', 'third']]\n",
+ "[['12', 'million', 'is', 'now', 'hungry', 'and'], 'in', ['need', 'of', 'food', 'aid,', 'the', 'United']]\n",
+ "[['after', 'Mugabe', 'was', 'declared', 'the', 'victor'], 'in', ['a', 'discredited', 'presidential', 'runoff', 'election.', 'His']]\n",
+ "[['said', 'Roeland', 'Monasch,', \"UNICEF'S\", 'acting', 'representative'], 'in', ['Zimbabwe.', 'Monasch', 'said', 'the', 'United', \"Nations'\"]]\n",
+ "[['a', 'Global', 'Fund', 'audit', 'on', 'Tuesday'], 'in', ['Harare,', \"Zimbabwe's\", 'capital,', 'to', 'donor', 'nations']]\n",
+ "[['donor', 'nations', 'and', 'U.N.', 'agencies,', 'said'], 'in', ['the', 'interview', 'that', 'he', 'had', 'met']]\n",
+ "[['management', 'featured', 'a', 'Cameroon', 'saying:', '\"Trust'], 'in', ['Allah', 'but', 'tie', 'your', 'donkey.\"', 'The']]\n",
+ "[['provide', 'disburse', 'more', 'until', 'the', 'problems'], 'in', ['protecting', 'the', 'Global', \"Fund's\", 'donations', 'are']]\n",
+ "[['\"We', 'cannot', 'safely', 'leave', 'foreign', 'exchange'], 'in', ['Zimbabwe,\"', 'Parsons', 'said.', '\"The', 'secretariat', 'has']]\n",
+ "[['on', 'Tuesday.', 'Despite', \"Obama's\", 'dominant', 'lead'], 'in', ['Michigan', 'polls', 'last', 'week,', 'both', 'sides']]\n",
+ "[['\"Go', 'vote', 'now!\"', 'Obama', 'told', 'supporters'], 'in', ['Columbus,', 'Ohio,', 'one', 'of', 'several', 'states']]\n",
+ "[['his', 'campaign', 'believes', 'early', 'voting', 'is'], 'in', ['his', 'favor.', 'McCain', 'campaign', 'manager', 'Rick']]\n",
+ "[['that', 'he', 'sees', \"McCain's\", 'deficit', 'narrowing'], 'in', ['battleground', 'states', 'such', 'as', 'Iowa', 'and']]\n",
+ "[['said', 'a', 'series', 'of', 'Mason-Dixon', 'polls'], 'in', ['key', 'battlegrounds', 'were', 'further', 'evidence', 'the']]\n",
+ "[['nationwide,', 'and', 'small', 'but', 'significant', 'edges'], 'in', ['a', 'number', 'of', 'states', '--', 'many']]\n",
+ "[['many', 'of', 'them', 'held', 'by', 'Republicans'], 'in', ['previous', 'elections', '--', 'that', 'could', 'deliver']]\n",
+ "[['Obama', 'appears', 'poised', 'for', 'a', 'victory'], 'in', ['Michigan', '--', 'once', 'a', 'major', 'battleground']]\n",
+ "[['supporters', 'from', 'the', \"party's\", 'campaign', 'office'], 'in', ['Livonia.', '\"A', 'lot', 'of', 'people', 'want']]\n",
+ "[['passed', 'through', 'the', 'Obama', 'state', 'headquarters'], 'in', ['Detroit.', '\"We', 'are', 'seeing', 'a', 'surge']]\n",
+ "[['Detroit.', '\"We', 'are', 'seeing', 'a', 'surge'], 'in', ['volunteerism,\"', 'said', 'Nina', 'Bentley,', 'an', 'Obama']]\n",
+ "[['get', 'involved.', \"We've\", 'had', 'people', 'come'], 'in', ['for', 'the', 'first', 'time', 'in', 'the']]\n",
+ "[['come', 'in', 'for', 'the', 'first', 'time'], 'in', ['the', 'last', 'two', 'days.\"', 'Obama', 'spokesman']]\n",
+ "[['of', 'contacting', '1.5', 'million', 'Michigan', 'voters'], 'in', ['the', 'final', 'four', 'days', 'of', 'the']]\n",
+ "[['the', 'campaign.', \"Tonight's\", '\"midnight', 'madness\"', 'rally'], 'in', ['Ann', 'Arbor', 'will', 'feature', 'Gov.', 'Jennifer']]\n",
+ "[['Michigan', 'was', 'out', 'of', 'the', 'limelight'], 'in', ['an', 'election', 'centered', 'on', 'a', 'handful']]\n",
+ "[['McCain', 'was', 'to', 'hold', 'rallies', 'today'], 'in', ['Florida,', 'Virginia', 'and', 'Indiana', '--', 'all']]\n",
+ "[['--', 'all', 'carried', 'by', 'President', 'Bush'], 'in', ['2004.', 'His', 'running', 'mate,', 'Alaska', 'Gov.']]\n",
+ "[['mate,', 'Sen.', 'Joe', 'Biden,', 'planned', 'stops'], 'in', ['Missouri', 'and', 'Ohio', 'before', 'an', 'evening']]\n",
+ "[['and', 'Ohio', 'before', 'an', 'evening', 'rally'], 'in', ['Philadelphia', '--', 'making', 'Pennsylvania', 'the', 'only']]\n",
+ "[['last', 'full', 'day', 'of', 'stumping.', \"It's\"], 'in', ['Pennsylvania', 'that', 'McCain', 'hopes', 'for', 'an']]\n",
+ "[['that', 'McCain', 'hopes', 'for', 'an', 'upset'], 'in', ['a', 'traditionally', 'Democratic', 'state', 'that', 'would']]\n",
+ "[['to', 'detnews.com/elections', 'Military', 'and', 'civilian', 'deaths'], 'in', ['Iraq', 'for', 'October', 'hit', 'the', 'lowest']]\n",
+ "[['was', 'further', 'evidence', 'of', 'a', 'decline'], 'in', ['violence', 'since', 'a', 'significant', 'troop', 'increase']]\n",
+ "[['but', 'the', 'tragedy', 'of', 'one', 'family'], 'in', ['Kirkuk', 'is', 'a', 'reminder', 'of', 'just']]\n",
+ "[['reminder', 'of', 'just', 'how', 'dangerous', 'life'], 'in', ['Iraq', 'continues', 'to', 'be.', 'In', 'the']]\n",
+ "[['police', 'reports.', 'Muhammad', 'was', 'killed', 'instantly'], 'in', ['the', 'blast.', 'His', 'friend,', 'Ahmed', 'Hamid']]\n",
+ "[['to', 'play', 'soccer', 'with', 'some', 'friends'], 'in', ['the', 'lot', 'across', 'the', 'road', 'from']]\n",
+ "[['last', 'month,', 'Saad,', '21,', 'was', 'killed'], 'in', ['a', 'suicide', 'bombing', 'near', 'the', 'Kirkuk']]\n",
+ "[['that', 'he', 'had', 'moved', 'to', 'Kirkuk'], 'in', ['1987', 'to', 'flee', 'the', 'violence', 'that']]\n",
+ "[['still', 'eager', 'to', 'publicize', 'the', 'decline'], 'in', ['deaths.', '\"Thanks', 'to', 'the', 'strategic', 'partnership']]\n",
+ "[['a', 'spokesman', 'for', 'the', 'U.S.-led', 'forces'], 'in', ['Iraq,', 'said', 'at', 'a', 'news', 'conference.']]\n",
+ "[['those', 'improvements,', 'violence', 'continued', 'to', 'rage'], 'in', ['the', 'northern', 'city', 'of', 'Mosul,', 'where']]\n",
+ "[['killed', 'when', 'a', 'roadside', 'bomb', 'exploded'], 'in', ['the', 'path', 'of', 'their', 'convoy', 'in']]\n",
+ "[['in', 'the', 'path', 'of', 'their', 'convoy'], 'in', ['the', 'eastern', 'neighborhood', 'of', 'Karama', 'in']]\n",
+ "[['in', 'the', 'eastern', 'neighborhood', 'of', 'Karama'], 'in', ['Mosul,', 'said', 'a', 'security', 'official', 'who']]\n",
+ "[['news', 'media.', 'In', 'the', 'Qandeel', 'Mountains'], 'in', ['northern', 'Iraq,', 'officials', 'of', 'the', 'Kurdistan']]\n",
+ "[['of', 'their', 'fighters', 'had', 'been', 'killed'], 'in', ['attacks', 'by', 'Turkish', 'warplanes,', 'but', 'they']]\n",
+ "[['The', 'Detroit', 'News', 'Rob', 'Schneider', 'is'], 'in', ['a', 'grungy', 'back', 'alley', 'in', 'Greektown']]\n",
+ "[['is', 'in', 'a', 'grungy', 'back', 'alley'], 'in', ['Greektown', 'dressed', 'like', 'a', 'pimped-out', 'Jonas']]\n",
+ "[['(\"Step', 'Up\")', 'plays', 'Priscilla,', 'the', 'virgin'], 'in', ['the', \"film's\", 'title,', 'who', 'after', 'a']]\n",
+ "[['movie,', 'which', 'will', 'be', 'filmed', 'entirely'], 'in', ['Metro', 'Detroit', 'and', 'has', 'a', 'crew']]\n",
+ "[['crew', \"that's\", '90-percent', 'local,', 'began', 'shooting'], 'in', ['Greektown', 'last', 'week.', 'Filming', 'continues', 'for']]\n",
+ "[[\"film's\", 'producers', 'began', 'scouting', 'locations', 'here'], 'in', ['April', 'and', 'returned', 'in', 'June,', 'ultimately']]\n",
+ "[['locations', 'here', 'in', 'April', 'and', 'returned'], 'in', ['June,', 'ultimately', 'choosing', 'Detroit', 'over', 'a']]\n",
+ "[['plan', 'was', 'to', 'have', 'Greektown', 'stand'], 'in', ['for', 'New', 'Orleans,', 'though', 'the', 'script']]\n",
+ "[['was', 'eventually', 'rejiggered', 'to', 'take', 'place'], 'in', ['Detroit.', \"That's\", 'why', 'the', 'film,', 'originally']]\n",
+ "[['Oktoberfest', 'celebration', 'on', 'the', 'main', 'strip'], 'in', ['Greektown,', 'on', 'Monroe', 'Street', 'between', 'Beaubien']]\n",
+ "[['Jr.', 'says', 'will', 'get', 'product', 'placement'], 'in', ['the', 'finished', 'film.', 'In', 'addition', 'to']]\n",
+ "[['Bigalow:', 'Male', 'Gigolo,\"', '\"The', 'Animal\"', 'and'], 'in', ['most', 'Adam', 'Sandler', 'comedies.', '(He', 'usually']]\n",
+ "[['size', 'on', 'TV', 'as', 'he', 'is'], 'in', ['person,', 'praised', 'the', 'work', 'of', 'the']]\n",
+ "[[\"Davis'\", 'Naz', 'opens', 'the', 'film', 'engaged'], 'in', ['a', 'foursome;', 'yet', 'the', 'filmmakers', 'say']]\n",
+ "[['anything', 'extreme', 'is', 'kind', 'of', 'repressing'], 'in', ['some', 'way,\"', 'says', 'England-born', 'director', 'Kilner.']]\n",
+ "[['says', 'England-born', 'director', 'Kilner.', '\"Women', 'are'], 'in', ['charge', 'of', 'their', 'sexuality', 'and', 'celebrating']]\n",
+ "[['needed', 'Want', 'to', 'be', 'an', 'extra'], 'in', ['Rob', \"Schneider's\", 'movie?', \"Here's\", 'where', 'and']]\n",
+ "[['as', 'if', 'attending', 'an', 'outdoor', 'party'], 'in', ['clothes', 'without', 'noticeable', 'logos.', '8', 'a.m.-8']]\n",
+ "[['for', 'fuel-efficient', 'vehicles', 'approved', 'by', 'Congress'], 'in', ['September', 'and', 'administered', 'by', 'the', 'Energy']]\n",
+ "[['companies', 'or', 'to', 'play', 'a', 'part'], 'in', ['a', 'GM-Chrysler', 'merger', 'that', 'could', 'cost']]\n",
+ "[['candidate,', 'Sen.', 'Barack', 'Obama,', 'has', 'said'], 'in', ['recent', 'days', 'that', 'he', 'supports', 'increasing']]\n",
+ "[['its', 'role,', 'if', 'any.', 'Potential', 'investors'], 'in', ['the', 'deal', 'have', 'been', 'hesitant', 'to']]\n",
+ "[['the', 'release', 'of', 'the', '$25', 'billion'], 'in', ['low-interest', 'loans', 'for', 'GM,', 'Chrysler', 'and']]\n",
+ "[['sales', 'deteriorating', 'to', 'their', 'lowest', 'level'], 'in', ['15', 'years,', \"Detroit's\", 'traditional', 'Big', 'Three']]\n",
+ "[['industry', 'is', 'growing', 'among', 'political', 'leaders'], 'in', ['states', 'with', 'heavy', 'automotive', 'employment.', 'Last']]\n",
+ "[['at', 'a', 'rally', 'here', 'on', 'Saturday'], 'in', ['the', 'political', 'battleground', 'of', 'central', 'Florida.']]\n",
+ "[['the', 'eve', 'of', 'the', 'Pennsylvania', 'primary'], 'in', ['which', 'Clinton', 'warned', 'voters', 'not', 'to']]\n",
+ "[['the', 'country.', 'But', 'for', 'the', 'crowd'], 'in', ['Winter', 'Park,', 'Clinton', 'had', 'this', 'to']]\n",
+ "[['Obama', 'supporters', 'brought', 'up', 'about', 'Clinton'], 'in', ['Florida', 'last', 'weekend.', 'Of', '20', 'interviewed,']]\n",
+ "[['campaign', 'trail.', 'While', \"Clinton's\", 'high', 'profile'], 'in', ['Democratic', 'politics', 'has', 'been', 'fortified', 'by']]\n",
+ "[['wants', 'to', 'be', 'a', 'power', 'player'], 'in', ['Washington', 'if', 'Obama', 'wins', 'but', 'that']]\n",
+ "[['she', 'said.', '\"I', 'have', 'no', 'interest'], 'in', ['doing', 'that.\"', 'While', 'Clinton', 'still', 'has']]\n",
+ "[['Clinton', 'won', 'about', '17', 'million', 'votes'], 'in', ['her', 'presidential', 'primary', 'campaign,', 'and', 'by']]\n",
+ "[['Election', 'Day', 'as', 'a', 'respected', 'force'], 'in', ['the', 'eyes', 'of', 'not', 'only', 'her']]\n",
+ "[['where', 'she', 'has', 'won', 'by', 'losing,'], 'in', ['a', 'very', 'real', 'sense,\"', 'said', 'Sen.']]\n",
+ "[['I', 'think', \"everyone's\", 'respect', 'for', 'her'], 'in', ['the', 'Senate', 'has', 'gone', 'up', 'in']]\n",
+ "[['in', 'the', 'Senate', 'has', 'gone', 'up'], 'in', ['the', 'way', 'she', 'has', 'handled', 'herself']]\n",
+ "[['lead', 'the', 'Democratic', 'Senatorial', 'Campaign', 'Committee'], 'in', ['2010,', 'given', 'her', 'fundraising', 'contacts,', 'her']]\n",
+ "[['Schumer', 'also', 'led', 'the', 'senatorial', 'committee'], 'in', ['2006;', 'he', 'said', 'he', 'would', 'not']]\n",
+ "[['promoted', 'during', 'the', 'primaries.', 'Her', 'hand'], 'in', ['health', 'care', 'depends', 'largely,', 'her', 'advisers']]\n",
+ "[['and', 'his', 'seniority.', 'Kennedy', 'has', 'been'], 'in', ['the', 'Senate', 'for', '46', 'years,', 'Clinton']]\n",
+ "[['more', 'for', 'Obama', 'than', 'Dean', 'did'], 'in', ['2004', 'for', 'Kerry,', 'more', 'than', 'Bradley']]\n",
+ "[['more', 'than', 'Bradley', 'did', 'for', 'Gore'], 'in', ['2000,', 'more', 'than', 'Kennedy', 'did', 'for']]\n",
+ "[['more', 'than', 'Kennedy', 'did', 'for', 'Carter'], 'in', ['1980,\"', 'said', 'James', 'A.', 'Thurber,', 'the']]\n",
+ "[['and', 'Presidential', 'Studies', 'at', 'American', 'University'], 'in', ['Washington,', 'D.C.', '\"As', 'much', 'as', 'this']]\n",
+ "[['fall.\"', 'After', 'years', 'of', 'unfettered', 'growth'], 'in', ['military', 'budgets,', 'Defense', 'Department', 'planners,', 'top']]\n",
+ "[['to', 'closed-door', 'meetings', 'and', 'detailed', 'calculations'], 'in', ['anticipation', 'of', 'potential', 'cuts.', 'Civilian', 'and']]\n",
+ "[['were', 'anticipating', 'little', 'appetite', 'for', 'growth'], 'in', ['military', 'spending', 'after', 'seven', 'years', 'of']]\n",
+ "[['figure,', 'supplemental', 'spending', 'for', 'the', 'wars'], 'in', ['Iraq', 'and', 'Afghanistan', 'has', 'topped', '$100']]\n",
+ "[['frustrating', 'Republicans', 'as', 'well', 'as', 'Democrats'], 'in', ['Congress.', 'In', 'all,', 'the', 'Defense', 'Department']]\n",
+ "[['Obama.', 'Some', 'critics,', 'citing', 'the', 'increase'], 'in', ['military', 'spending', 'since', 'Sept.', '11,', '2001,']]\n",
+ "[['has', 'warned', 'against', 'repeating', 'historic', 'trends,'], 'in', ['which', 'the', 'nation', 'cut', 'money', 'for']]\n",
+ "[['War', 'I,', 'after', 'World', 'War', 'II,'], 'in', ['certain', 'ways', 'after', 'Korea,', 'certainly', 'after']]\n",
+ "[['while', 'troops', 'are', 'risking', 'their', 'lives'], 'in', ['combat.', 'Obama', 'has', 'said', 'his', 'plan']]\n",
+ "[['Hill', 'say', 'that', 'even', 'troop', 'reductions'], 'in', ['Iraq', '--', 'whether', 'at', 'the', 'cautious']]\n",
+ "[['--', 'would', 'present', 'only', 'small', 'savings'], 'in', ['the', 'first', 'years.', 'Moving', 'tens', 'of']]\n",
+ "[['stateside', 'bases', 'is', 'more', 'expensive', 'than'], 'in', ['the', 'war', 'zone,', 'so', 'savings', 'would']]\n",
+ "[['so', 'savings', 'would', 'be', 'seen', 'only'], 'in', ['subsequent', 'years.', 'Calls', 'by', 'both', 'presidential']]\n",
+ "[['more', 'expensive', 'to', 'sustain', 'each', 'soldier'], 'in', ['Afghanistan', 'than', 'in', 'Iraq', 'because', 'of']]\n",
+ "[['sustain', 'each', 'soldier', 'in', 'Afghanistan', 'than'], 'in', ['Iraq', 'because', 'of', \"Afghanistan's\", 'landlocked', 'location']]\n",
+ "[['federal', 'budget', 'is', 'due', 'to', 'Congress'], 'in', ['February,', 'but', 'that', 'document', 'is', 'expected']]\n",
+ "[['be', 'cut', 'from', 'the', 'defense', 'budget'], 'in', ['the', 'near', 'term.\"', 'But', 'in', 'looking']]\n",
+ "[['budget', 'in', 'the', 'near', 'term.\"', 'But'], 'in', ['looking', 'to', 'future', 'Pentagon', 'budgets,', 'it']]\n",
+ "[['was', 'taken', 'prisoner', 'during', 'the', 'war'], 'in', ['Vietnam,', 'is', 'known', 'for', 'taking', 'on']]\n",
+ "[['who', 'asked', 'not', 'to', 'be', 'named'], 'in', ['order', 'to', 'discuss', 'the', \"candidate's\", 'views']]\n",
+ "[['and', 'developingweapons', 'that', 'might', 'be', 'needed'], 'in', ['larger', 'wars.', '\"I', 'think', 'we', 'need']]\n",
+ "[['of', 'the', 'Army', 'and', 'the', 'Marines'], 'in', ['the', 'circumstances', 'that', 'we', 'face', 'today']]\n",
+ "[['W.', 'James', 'McNerney', 'Jr.,', 'recently', 'wrote'], 'in', ['a', 'note', 'to', 'his', 'employees:', '\"No']]\n",
+ "[['for', 'the', \"company's\", 'projects', 'seemed', 'locked'], 'in', ['for', 'the', 'coming', 'year.', 'But,', 'Sugar']]\n",
+ "[['the', 'pressures', 'are', 'going', 'to', 'increase'], 'in', ['the', 'out', 'years.\"', 'A', 'number', 'of']]\n",
+ "[['of', 'objectives.', 'Defining', 'a', 'coherent', 'philosophy'], 'in', ['foreign', 'affairs', 'and', 'defense', 'strategy', 'that']]\n",
+ "[['will', 'be', 'fiercely', 'defended', 'by', 'many'], 'in', ['Congress', 'and', 'their', 'allies', 'in', 'the']]\n",
+ "[['many', 'in', 'Congress', 'and', 'their', 'allies'], 'in', ['the', 'weapons', 'industry', 'as', 'a', 'way']]\n",
+ "[['economy', 'overall.', 'Dukakis', 'delivers', 'the', 'laughs'], 'in', [\"'Worst'\", 'By', 'Mekeisha', 'Madden', 'Toby', 'Detroit']]\n",
+ "[['Week\"', 'films', 'on', 'the', 'Paramount', 'lot'], 'in', ['Hollywood,', 'and', 'Dukakis', 'looks', 'right', 'at']]\n",
+ "[['Dukakis', 'looks', 'right', 'at', 'home', 'sitting'], 'in', ['a', \"director's\", 'chair', 'and', 'thumbing', 'through']]\n",
+ "[['to', 'do', 'the', 'show', 'after', 'falling'], 'in', ['love', 'with', 'the', 'pilot', 'episode.', '\"I']]\n",
+ "[['says.', '\"Three', 'years', 'ago,', 'I', 'was'], 'in', ['a', 'comedy', 'called', \"'Center\", 'of', 'the']]\n",
+ "[['that', 'on', 'average,', 'stocks', 'performed', 'better'], 'in', ['the', 'final', 'two', 'years', 'of', 'a']]\n",
+ "[['attributed', 'to', 'maneuvering', 'by', 'the', 'party'], 'in', ['power', 'to', 'better', 'its', 'chances', 'of']]\n",
+ "[['they', 'begin', 'to', 'prime', 'the', 'pump'], 'in', ['the', 'third', 'year,', 'fostering', 'bull', 'markets,']]\n",
+ "[['But', 'as', 'with', 'its', 'older', 'cousin'], 'in', ['the', 'almanac', 'business,', 'Poor', \"Richard's,\", 'the']]\n",
+ "[['business,', 'Poor', \"Richard's,\", 'the', 'pattern', 'described'], 'in', ['the', 'book', 'has', 'not', 'always', 'panned']]\n",
+ "[['results,', 'have', 'pointed', 'out', 'that', 'declines'], 'in', ['the', 'stock', 'market', 'right', 'before', 'a']]\n",
+ "[['adviser', 'and', 'head', 'of', 'Birinyi', 'Associates'], 'in', ['Westport,', 'Conn.', 'With', 'stocks', 'facing', 'their']]\n",
+ "[['With', 'stocks', 'facing', 'their', 'worst', 'declines'], 'in', ['decades,', 'this', 'year', 'may', 'be', 'particularly']]\n",
+ "[['predict.', 'Some', 'investors', 'say', 'the', 'problems'], 'in', ['the', 'economy', 'are', 'so', 'far-reaching', 'that']]\n",
+ "[['the', 'winner', 'of', 'the', 'election', 'could,'], 'in', ['the', 'short-term', 'at', 'least,', 'hardly', 'matter']]\n",
+ "[['to', 'stay', 'focused', 'on', 'the', 'problems'], 'in', ['the', 'economy,', 'including', 'the', 'credit', 'freeze']]\n",
+ "[['the', 'Congolese', 'state', 'began', 'to', 'collapse'], 'in', ['1996,', 'it', 'set', 'off', 'a', 'regional']]\n",
+ "[['regional', 'war.', 'When', 'it', 'imploded', 'again'], 'in', ['1998,', 'it', 'dragged', 'in', 'armies', 'from']]\n",
+ "[['imploded', 'again', 'in', '1998,', 'it', 'dragged'], 'in', ['armies', 'from', 'a', 'half-dozen', 'other', 'African']]\n",
+ "[['intense', 'diplomatic', 'activity', 'Congo', 'has', 'seen'], 'in', ['years.', 'The', 'French', 'foreign', 'minister,', 'the']]\n",
+ "[['highest', 'official', 'for', 'Africa', 'all', 'jetted'], 'in', ['to', 'the', 'decrepit', 'but', 'important', 'lakeside']]\n",
+ "[['hills', 'around', 'Goma', 'are', 'now', 'firmly'], 'in', ['rebel', 'hands', 'after', 'rebel', 'fighters', 'routed']]\n",
+ "[['Vlassenroot,', 'a', 'professor', 'at', 'Ghent', 'University'], 'in', ['Belgium', 'who', 'specializes', 'in', 'the', 'eastern']]\n",
+ "[['Ghent', 'University', 'in', 'Belgium', 'who', 'specializes'], 'in', ['the', 'eastern', 'Congo.', 'The', 'rebel', 'victory']]\n",
+ "[['after', 'the', 'most', 'expensive,', 'foreign-financed', 'election'], 'in', ['African', 'history,', 'and', 'despite', 'the', 'muscle']]\n",
+ "[['U.N.', 'peacekeeping', 'mission,', 'with', '17,000', 'troops'], 'in', ['the', 'country.', 'Perhaps', 'even', 'more', 'alarming']]\n",
+ "[['government', 'soldiers', 'plundered,', 'raped', 'and', 'killed'], 'in', ['their', 'retreat', 'from', 'the', 'town.', 'This']]\n",
+ "[['town.', 'This', 'same', 'predatory', 'behavior', 'happened'], 'in', ['the', '1990s,', 'when', 'Congo', 'was', 'in']]\n",
+ "[['in', 'the', '1990s,', 'when', 'Congo', 'was'], 'in', ['a', 'similar', 'state', 'of', 'simmering', 'dysfunction.']]\n",
+ "[['the', 'rebels.', 'But', 'the', 'rebels', 'based'], 'in', ['the', 'thickly', 'forested', 'hills', 'around', 'here']]\n",
+ "[['the', 'Congolese', 'state', 'began', 'to', 'collapse'], 'in', ['1996,', 'it', 'set', 'off', 'a', 'regional']]\n",
+ "[['regional', 'war.', 'When', 'it', 'imploded', 'again'], 'in', ['1998,', 'it', 'dragged', 'in', 'armies', 'from']]\n",
+ "[['imploded', 'again', 'in', '1998,', 'it', 'dragged'], 'in', ['armies', 'from', 'a', 'half-dozen', 'other', 'African']]\n",
+ "[['intense', 'diplomatic', 'activity', 'Congo', 'has', 'seen'], 'in', ['years.', 'The', 'French', 'foreign', 'minister,', 'the']]\n",
+ "[['highest', 'official', 'for', 'Africa', 'all', 'jetted'], 'in', ['to', 'the', 'decrepit', 'but', 'important', 'lakeside']]\n",
+ "[['hills', 'around', 'Goma', 'are', 'now', 'firmly'], 'in', ['rebel', 'hands', 'after', 'rebel', 'fighters', 'routed']]\n",
+ "[['Vlassenroot,', 'a', 'professor', 'at', 'Ghent', 'University'], 'in', ['Belgium', 'who', 'specializes', 'in', 'the', 'eastern']]\n",
+ "[['Ghent', 'University', 'in', 'Belgium', 'who', 'specializes'], 'in', ['the', 'eastern', 'Congo.', 'The', 'rebel', 'victory']]\n",
+ "[['after', 'the', 'most', 'expensive,', 'foreign-financed', 'election'], 'in', ['African', 'history,', 'and', 'despite', 'the', 'muscle']]\n",
+ "[['U.N.', 'peacekeeping', 'mission,', 'with', '17,000', 'troops'], 'in', ['the', 'country.', 'Perhaps', 'even', 'more', 'alarming']]\n",
+ "[['government', 'soldiers', 'plundered,', 'raped', 'and', 'killed'], 'in', ['their', 'retreat', 'from', 'the', 'town.', 'This']]\n",
+ "[['town.', 'This', 'same', 'predatory', 'behavior', 'happened'], 'in', ['the', '1990s,', 'when', 'Congo', 'was', 'in']]\n",
+ "[['in', 'the', '1990s,', 'when', 'Congo', 'was'], 'in', ['a', 'similar', 'state', 'of', 'simmering', 'dysfunction.']]\n",
+ "[['simmering', 'dysfunction.', 'On', 'Thursday,', 'a', 'family'], 'in', ['Goma', 'sat', 'in', 'a', 'small,', 'bare']]\n",
+ "[['Thursday,', 'a', 'family', 'in', 'Goma', 'sat'], 'in', ['a', 'small,', 'bare', 'room,', 'staring', 'at']]\n",
+ "[['town,', 'the', 'government', 'soldiers', 'shot', 'Merci'], 'in', ['the', 'back.', 'There', 'were', 'no', 'peacekeepers']]\n",
+ "[['that', '14', 'years', 'after', 'the', 'genocide'], 'in', ['Rwanda,', 'U.N.', 'peacekeeping', 'remains', 'as', 'ineffectual']]\n",
+ "[['the', 'head', 'of', 'the', 'U.N.', 'mission'], 'in', ['Congo,', 'said', 'it', 'had', 'been', 'very']]\n",
+ "[['to', 'rule.', 'And', 'the', 'rebels', 'based'], 'in', ['the', 'thickly', 'forested', 'hills', 'around', 'here']]\n",
+ "[['army', 'from', 'an', 'abandoned', 'Belgian', 'farmhouse'], 'in', ['the', 'jungle.', 'He', 'is', 'an', 'ethnic']]\n",
+ "[['back', 'into', 'Congo,', 'as', 'Angola', 'did'], 'in', ['1998,', 'to', 'counter', \"Nkunda's\", 'rebellion', 'and']]\n",
+ "[['the', 'Hutu', 'death', 'squads', 'who', 'participated'], 'in', ['the', 'massacre', 'of', '800,000', 'people', 'in']]\n",
+ "[['in', 'the', 'massacre', 'of', '800,000', 'people'], 'in', ['Rwanda', 'in', '1994', 'and', 'then', 'fled']]\n",
+ "[['massacre', 'of', '800,000', 'people', 'in', 'Rwanda'], 'in', ['1994', 'and', 'then', 'fled', 'into', 'Congo,']]\n",
+ "[['\"The', 'Congolese', 'army', 'is', 'working', 'hand'], 'in', ['hand', 'with', 'these', 'killers,\"', 'said', 'Babu']]\n",
+ "[['want', 'to', 'play', 'a', 'bigger', 'role'], 'in', ['governing', 'eastern', 'Congo', 'and', 'even', 'possibly']]\n",
+ "[['a', 'leader', 'for', 'all', 'Rwandan-speaking', 'people'], 'in', ['the', 'eastern', 'Congo', 'province', 'of', 'North']]\n",
+ "[['show', 'after', 'winning', 'a', 'historic', 'election'], 'in', ['2006,', \"Congo's\", 'first', 'nationwide', 'democratic', 'vote']]\n",
+ "[['first', 'nationwide', 'democratic', 'vote', 'since', 'independence'], 'in', ['1960.', 'The', 'top', 'opposition', 'leader,', 'Jean-Pierre']]\n",
+ "[['a', 'former', 'vice', 'president,', 'has', 'been'], 'in', ['jail', 'in', 'The', 'Hague', 'in', 'recent']]\n",
+ "[['vice', 'president,', 'has', 'been', 'in', 'jail'], 'in', ['The', 'Hague', 'in', 'recent', 'months,', 'facing']]\n",
+ "[['been', 'in', 'jail', 'in', 'The', 'Hague'], 'in', ['recent', 'months,', 'facing', 'international', 'war', 'crimes']]\n",
+ "[['months,', 'facing', 'international', 'war', 'crimes', 'charges'], 'in', ['connection', 'with', 'bloodshed', 'and', 'mass', 'rapes']]\n",
+ "[['connection', 'with', 'bloodshed', 'and', 'mass', 'rapes'], 'in', ['the', 'Central', 'African', 'Republic', 'five', 'years']]\n",
+ "[['on', 'Rwanda,', 'its', 'ally,', 'to', 'rein'], 'in', ['Nkunda.', 'Diplomats', 'are', 'shuttling', 'between', 'Congo']]\n",
+ "[['fire,', 'and', 'most', 'recently', 'was', 'seized'], 'in', ['a', 'bank', 'foreclosure.', 'But', 'the', '1915']]\n",
+ "[['moved', 'with', 'her', 'family', 'to', 'Lancaster'], 'in', ['1927', 'when', 'she', 'was', 'about', '5']]\n",
+ "[['she', 'was', 'about', '5', 'and', 'left'], 'in', ['1933.', 'Two', 'years', 'later,', 'she', 'signed']]\n",
+ "[['and', 'by', '1939', 'achieved', 'worldwide', 'fame'], 'in', ['\"The', 'Wizard', 'of', 'Oz.\"', 'For', 'the']]\n",
+ "[['community', 'groups', 'to', 'drum', 'up', 'interest'], 'in', ['acquiring', 'the', 'house', 'for', 'a', 'Garland']]\n",
+ "[['a', 'Garland', 'museum', '--', 'drawing', 'tourists'], 'in', ['with', 'a', 'yellow', 'brick', 'road', 'leading']]\n",
+ "[['walked,\"', 'Stone', 'said.', 'Stone', 'is', 'still'], 'in', ['the', 'early', 'stages', 'of', 'planning', 'and']]\n",
+ "[['that', 'the', 'nonprofit', 'Judy', 'Garland', 'Museum'], 'in', ['Grand', 'Rapids,', 'Minn.', '--', 'where', 'the']]\n",
+ "[['Stone', 'said', 'the', 'museum', 'could', 'tie'], 'in', ['with', 'the', \"city's\", 'signature', 'event,', 'the']]\n",
+ "[['that', 'many', 'films', 'have', 'been', 'shot'], 'in', ['the', 'Antelope', 'Valley.', '\"We\\'ve', 'got', 'the']]\n",
+ "[['festival.', 'Those', 'two', 'things', 'would', 'tie'], 'in', ['beautifully', 'with', 'having', 'Judy', \"Garland's\", 'house']]\n",
+ "[['Stone', 'said.', '\"The', 'potential', 'to', 'bring'], 'in', ['tourism', 'is', 'there.', 'It', 'just', 'has']]\n",
+ "[['June', '22,', '1969', '--', 'actually', 'lived'], 'in', ['three', 'different', 'homes', 'in', 'Lancaster,', 'and']]\n",
+ "[['actually', 'lived', 'in', 'three', 'different', 'homes'], 'in', ['Lancaster,', 'and', 'performed', 'with', 'her', 'two']]\n",
+ "[['a', 'museum', 'because', 'it', 'is', 'now'], 'in', ['bank', 'foreclosure,', 'and', 'the', 'other', 'two']]\n",
+ "[['attended', 'Cedar', 'Avenue', 'School', 'and', 'performed'], 'in', ['the', \"school's\", 'theater,', 'whose', 'double-door,', 'concrete-arched']]\n",
+ "[['a', 'church.', 'The', 'school', 'was', 'built'], 'in', ['the', '1920s', 'and', 'was', 'the', 'first']]\n",
+ "[['and', 'was', 'the', 'first', 'elementary', 'school'], 'in', ['the', 'Lancaster', 'School', 'District.', 'All', 'that']]\n",
+ "[['of', '2006,', 'a', 'few', 'thousand', 'dollars'], 'in', ['donations', 'were', 'made', 'to', 'support', 'the']]\n",
+ "[['the', 'project,', 'foundation', 'officials', 'said.', '\"We\\'re'], 'in', ['the', 'process', 'of', 'getting', 'enough', 'people']]\n",
+ "[['process', 'of', 'getting', 'enough', 'people', 'interested'], 'in', ['it', 'to', 'get', 'force', 'behind', 'it,\"']]\n",
+ "[['BBC', 'crew', 'interviewed', 'about', '10', 'people'], 'in', ['town', 'a', 'month', 'ago', 'for', 'the']]\n",
+ "[['about', 'the', 'only', 'source', 'of', 'entertainment'], 'in', ['what', 'was', 'then', 'a', 'small', 'burg']]\n",
+ "[['done', 'previously', 'to', 'recognize', \"Garland's\", 'years'], 'in', ['Lancaster.', '\"I', 'was', 'startled', 'by', 'that,']]\n",
+ "[['footprint', 'that', 'had', 'been', 'left', 'behind'], 'in', ['her', 'memory,\"', 'Paskin', 'said.', '\"We', 'were']]\n",
+ "[['surprised', 'there', \"wasn't\", 'more', 'of', 'that'], 'in', ['Lancaster.\"', 'Garland', 'lived', 'in', 'the', 'house']]\n",
+ "[['of', 'that', 'in', 'Lancaster.\"', 'Garland', 'lived'], 'in', ['the', 'house', 'from', '1931', 'to', '1933']]\n",
+ "[['Base', 'and', 'Air', 'Force', 'Plant', '42'], 'in', ['Palmdale,', 'the', 'home', 'became', 'a', 'boarding']]\n",
+ "[['house.', 'The', 'new', 'owners', 'built', 'apartments'], 'in', ['the', 'rear,', 'and', 'many', 'of', 'the']]\n",
+ "[['it', 'was', 'heavily', 'damaged', 'by', 'fire'], 'in', ['2003.', 'The', 'property,', 'now', 'foreclosed', 'and']]\n",
+ "[['Paskin', 'noted', 'that', \"Garland's\", 'time', 'spent'], 'in', ['Lancaster', 'was', 'a', 'key', 'point', 'in']]\n",
+ "[['in', 'Lancaster', 'was', 'a', 'key', 'point'], 'in', ['her', 'life,', 'her', 'formative', 'time', 'before']]\n",
+ "[['time', 'before', 'she', 'made', 'it', 'big'], 'in', ['Hollywood.', '\"These', 'six', 'or', 'seven', 'years']]\n",
+ "[['Hollywood.', '\"These', 'six', 'or', 'seven', 'years'], 'in', ['the', 'life', 'of', 'a', 'youngster', 'is']]\n",
+ "[['was', 'her', 'only', 'years', 'of', 'freedom'], 'in', ['many', 'ways.\"', 'Outspent', 'and', 'under', 'siege']]\n",
+ "[['many', 'ways.\"', 'Outspent', 'and', 'under', 'siege'], 'in', ['a', 'hostile', 'political', 'climate,', 'congressional', 'Republicans']]\n",
+ "[['this', 'weekend', 'to', 'save', 'embattled', 'incumbents'], 'in', ['an', 'effort', 'to', 'hold', 'down', 'expected']]\n",
+ "[['to', 'hold', 'down', 'expected', 'Democratic', 'gains'], 'in', ['the', 'House', 'and', 'Senate', 'on', 'Tuesday.']]\n",
+ "[['remaining', 'resources', 'into', 'protecting', 'endangered', 'lawmakers'], 'in', ['Georgia,', 'Minnesota,', 'Mississippi,', 'New', 'Hampshire,', 'North']]\n",
+ "[['what', 'should', 'be', 'secure', 'Republican', 'territory'], 'in', ['Idaho,', 'Indiana,', 'Kentucky,', 'Virginia', 'and', 'Wyoming.']]\n",
+ "[['extraordinary', 'opportunity', 'to', 'expand', 'their', 'numbers'], 'in', ['both', 'the', 'House', 'and', 'Senate,', 'Democrats']]\n",
+ "[['campaign', 'map.', 'Senate', 'Democrats', 'were', 'active'], 'in', ['nine', 'states', 'where', 'Republicans', 'are', 'running']]\n",
+ "[['re-election;', 'House', 'Democrats,', 'meanwhile,', 'bought', 'advertising'], 'in', ['63', 'districts,', 'twice', 'the', 'number', 'of']]\n",
+ "[['and', 'helped', 'candidates.', '\"We', 'are', 'deep'], 'in', ['the', 'red', 'areas,\"', 'Rep.', 'Chris', 'Van']]\n",
+ "[['on', 'Sunday.', '\"We', 'are', 'competing', 'now'], 'in', ['districts', 'George', 'Bush', 'carried', 'by', 'large']]\n",
+ "[['George', 'Bush', 'carried', 'by', 'large', 'margins'], 'in', ['2004.\"', 'What', 'seems', 'especially', 'striking', 'about']]\n",
+ "[['aim', 'at', 'vacant', 'seats', 'and', 'incumbents'], 'in', ['suburban', 'and', 'even', 'more', 'outlying', 'areas']]\n",
+ "[['the', 'traditional', 'foundation', 'of', 'Republican', 'power'], 'in', ['the', 'House.', 'With', 'many', 'of', 'the']]\n",
+ "[['the', 'most', 'contested', 'House', 'races', 'occurring'], 'in', ['Republican-held', 'districts', 'that', 'extend', 'beyond', 'cities']]\n",
+ "[['Republican-held', 'districts', 'that', 'extend', 'beyond', 'cities'], 'in', ['states', 'like', 'Florida,', 'Michigan,', 'Minnesota', 'and']]\n",
+ "[['by', 'Rep.', 'John', 'R.', 'Kuhl', 'Jr.'], 'in', ['New', 'York,', 'Ralph', 'Regula', 'and', 'Deborah']]\n",
+ "[['York,', 'Ralph', 'Regula', 'and', 'Deborah', 'Pryce'], 'in', ['Ohio,', 'Jim', 'Ramstad', 'in', 'Minnesota,', 'Jerry']]\n",
+ "[['Deborah', 'Pryce', 'in', 'Ohio,', 'Jim', 'Ramstad'], 'in', ['Minnesota,', 'Jerry', 'Weller', 'in', 'Illinois', 'and']]\n",
+ "[['Jim', 'Ramstad', 'in', 'Minnesota,', 'Jerry', 'Weller'], 'in', ['Illinois', 'and', 'Rick', 'Renzi', 'in', 'Arizona.']]\n",
+ "[['Weller', 'in', 'Illinois', 'and', 'Rick', 'Renzi'], 'in', ['Arizona.', 'Incumbents', 'Democrats', 'believe', 'they', 'can']]\n",
+ "[['can', 'defeat', 'include', 'Rep.', 'Joe', 'Knollenberg'], 'in', ['Michigan,', 'Tom', 'Feeney', 'and', 'Ric', 'Keller']]\n",
+ "[['Michigan,', 'Tom', 'Feeney', 'and', 'Ric', 'Keller'], 'in', ['Florida,', 'Don', 'Young', 'in', 'Alaska,', 'Robin']]\n",
+ "[['Ric', 'Keller', 'in', 'Florida,', 'Don', 'Young'], 'in', ['Alaska,', 'Robin', 'Hayes', 'in', 'North', 'Carolina']]\n",
+ "[['Don', 'Young', 'in', 'Alaska,', 'Robin', 'Hayes'], 'in', ['North', 'Carolina', 'and', 'Bill', 'Sali', 'in']]\n",
+ "[['in', 'North', 'Carolina', 'and', 'Bill', 'Sali'], 'in', ['Idaho.', 'Democrats', 'say', 'they', 'have', 'been']]\n",
+ "[['Democrats', 'trying', 'to', 'broaden', 'their', 'appeal'], 'in', ['the', 'suburbs.', 'The', 'partisan', 'spending', 'gap']]\n",
+ "[['Republican', 'candidates,', 'compared', 'with', '$33.7', 'million'], 'in', ['advertising', 'by', 'Republicans.', 'In', 'the', 'House,']]\n",
+ "[['spent', 'on', 'behalf', 'of', 'incumbents', 'or'], 'in', ['districts', 'where', 'a', 'Republican', 'is', 'retiring,']]\n",
+ "[['Democrats', 'spent', 'most', 'of', 'their', 'money'], 'in', ['the', 'last', 'month', 'going', 'after', 'Republican']]\n",
+ "[['last', 'month', 'going', 'after', 'Republican', 'seats'], 'in', ['Colorado,', 'Nebraska,', 'Washington,', 'West', 'Virginia', 'and']]\n",
+ "[['radio', 'advertisement', 'to', 'begin', 'running', 'Monday'], 'in', ['an', 'effort', 'to', 'claim', 'the', 'seat']]\n",
+ "[['including', 'a', 'lopsided', 'number', 'of', 'retirements'], 'in', ['the', 'House', 'and', 'Senate,', 'an', 'unpopular']]\n",
+ "[['\"but', 'basically', 'we', 'are', 'playing', 'basketball'], 'in', ['our', 'street', 'shoes', 'and', 'long', 'pants,']]\n",
+ "[['national', 'Senate', 'campaign', 'arms', 'was', 'advertising'], 'in', ['Colorado,', 'New', 'Mexico', 'or', 'Virginia,', 'indicating']]\n",
+ "[['of', 'unseating', 'Sen.', 'John', 'E.', 'Sununu'], 'in', ['New', 'Hampshire', 'and', 'Sen.', 'Ted', 'Stevens']]\n",
+ "[['New', 'Hampshire', 'and', 'Sen.', 'Ted', 'Stevens'], 'in', ['Alaska,', 'where', 'Stevens', 'campaigned', 'despite', 'being']]\n",
+ "[['they', 'saw', 'themselves', 'with', 'the', 'advantage'], 'in', ['Minnesota,', 'North', 'Carolina', 'and', 'Oregon,', 'giving']]\n",
+ "[['break', 'filibusters', 'resting', 'on', 'the', 'outcome'], 'in', ['Georgia,', 'Mississippi', 'or', 'Kentucky,', 'where', 'Sen.']]\n",
+ "[['Mitch', 'McConnell,', 'the', 'Republican', 'leader,', 'is'], 'in', ['a', 'competitive', 'race', 'with', 'Bruce', 'Lunsford,']]\n",
+ "[['Democrats', 'trailing', 'but', 'within', 'striking', 'distance'], 'in', ['all', 'three', 'races,', 'with', 'the', 'final']]\n",
+ "[['since', 'John', 'C.', 'Stennis', 'was', 'elected'], 'in', ['1947,', 'Sen.', 'Roger', 'Wicker,', 'a', 'Republican']]\n",
+ "[['vacant', 'by', 'Trent', \"Lott's\", 'resignation,', 'is'], 'in', ['a', 'tight', 'race', 'with', 'former', 'Gov.']]\n",
+ "[['thing', 'to', 'do', 'because', 'we', 'are'], 'in', ['so', 'many', 'red', 'states.\"', 'Republicans', 'privately']]\n",
+ "[['of', 'unseating', 'Sen.', 'Mary', 'L.', 'Landrieu'], 'in', ['Louisiana,', 'a', 'state', 'where', 'Sen.', 'John']]\n",
+ "[['running', 'well', 'against', 'Sen.', 'Barack', 'Obama'], 'in', ['the', 'presidential', 'race.', 'A', 'victory', 'over']]\n",
+ "[['with', 'the', 'threat', 'of', 'Democratic', 'dominance'], 'in', ['Washington,', 'running', 'advertisements', 'that', 'warn', 'voters']]\n",
+ "[['final', 'energies', 'on', 'the', 'Senate', 'race'], 'in', ['Minnesota,', 'where', 'Sen.', 'Norm', 'Coleman,', 'the']]\n",
+ "[['Sen.', 'Norm', 'Coleman,', 'the', 'Republican,', 'was'], 'in', ['a', 'heated', 'clash', 'with', 'his', 'Democratic']]\n",
+ "[['remained', 'close', 'as', 'Coleman', 'was', 'named'], 'in', ['a', 'last-minute', 'lawsuit', 'in', 'Texas', 'alleging']]\n",
+ "[['was', 'named', 'in', 'a', 'last-minute', 'lawsuit'], 'in', ['Texas', 'alleging', 'that', 'a', 'businessman', 'had']]\n",
+ "[['complaint', 'accusing', 'Franken', 'of', 'broadcasting', 'falsehoods'], 'in', ['his', 'advertisements,', 'denied', 'any', 'impropriety,', 'but']]\n",
+ "[['doors', 'and', 'to', 'make', 'phone', 'calls'], 'in', ['the', 'remaining', 'hours.', 'He', 'was', 'to']]\n",
+ "[['fly-around', 'of', 'the', \"state's\", 'cities', 'Monday'], 'in', ['his', 'effort', 'to', 'repel', 'the', 'serious']]\n",
+ "[['serious', 'challenge', 'from', 'Lunsford,', 'who', 'brought'], 'in', ['one', 'of', \"Kentucky's\", 'favorite', 'daughters,', 'the']]\n",
+ "[['Judd,', 'to', 'campaign', 'on', 'his', 'behalf'], 'in', ['the', 'closing', 'days.', 'Strategists', 'for', 'both']]\n",
+ "[['toward', 'Congress', 'that', 'has', 'been', 'reflected'], 'in', ['polls', 'for', 'months.', 'They', 'predicted', 'upsets']]\n",
+ "[['House', 'incumbents', 'not', 'thought', 'to', 'be'], 'in', ['trouble.', 'Republicans', 'said', 'they', 'believed', 'some']]\n",
+ "[['Gillibrand,', 'who', 'represents', 'the', 'Hudson', 'Valley'], 'in', ['New', 'York,', 'became', 'prime', 'Republican', 'targets']]\n",
+ "[['only', 'two', 'of', 'its', 'members', 'were'], 'in', ['serious', 'trouble:', 'Rep.', 'Nick', 'Lampson', 'of']]\n",
+ "[['of', 'Florida,', 'who', 'has', 'been', 'entangled'], 'in', ['a', 'scandal', 'over', 'extramarital', 'affairs.', 'Yarmuth']]\n",
+ "[['the', \"Democrats'\", 'opposition', 'to', 'the', 'war'], 'in', ['Iraq.', '\"I', 'think', 'that', 'was', 'a']]\n",
+ "[['Yarmuth', 'said.', 'Military', 'and', 'civilian', 'deaths'], 'in', ['Iraq', 'for', 'October', 'hit', 'the', 'lowest']]\n",
+ "[['was', 'further', 'evidence', 'of', 'a', 'decline'], 'in', ['violence', 'since', 'a', 'significant', 'troop', 'increase']]\n",
+ "[['but', 'the', 'tragedy', 'of', 'one', 'family'], 'in', ['Kirkuk', 'is', 'a', 'reminder', 'of', 'just']]\n",
+ "[['reminder', 'of', 'just', 'how', 'dangerous', 'life'], 'in', ['Iraq', 'continues', 'to', 'be.', 'In', 'the']]\n",
+ "[['still', 'eager', 'to', 'publicize', 'the', 'decline'], 'in', ['deaths.', '\"Thanks', 'to', 'the', 'strategic', 'partnership']]\n",
+ "[['spokesman', 'for', 'the', 'United', 'States-led', 'forces'], 'in', ['Iraq,', 'said', 'at', 'a', 'news', 'conference.']]\n",
+ "[['those', 'improvements,', 'violence', 'continued', 'to', 'rage'], 'in', ['the', 'northern', 'city', 'of', 'Mosul,', 'where']]\n",
+ "[['killed', 'when', 'a', 'roadside', 'bomb', 'exploded'], 'in', ['the', 'path', 'of', 'their', 'convoy', 'in']]\n",
+ "[['in', 'the', 'path', 'of', 'their', 'convoy'], 'in', ['the', 'eastern', 'neighborhood', 'of', 'Karama', 'in']]\n",
+ "[['in', 'the', 'eastern', 'neighborhood', 'of', 'Karama'], 'in', ['Mosul,', 'said', 'a', 'security', 'official', 'who']]\n",
+ "[['news', 'media.', 'In', 'the', 'Qandeel', 'Mountains'], 'in', ['northern', 'Iraq,', 'officials', 'of', 'the', 'Kurdistan']]\n",
+ "[['of', 'their', 'fighters', 'had', 'been', 'killed'], 'in', ['attacks', 'by', 'Turkish', 'warplanes,', 'but', 'they']]\n",
+ "[['for', 'Osama', 'bin', 'Laden', 'captured', 'early'], 'in', ['the', 'Afghanistan', 'war', '--', 'and', 'many']]\n",
+ "[['who', 'the', 'government', 'says', 'were', 'trained'], 'in', ['assassination', 'and', 'the', 'use', 'of', 'poisons']]\n",
+ "[['is', 'said', 'to', 'have', 'been', 'schooled'], 'in', ['making', 'detonators', 'out', 'of', 'Sega', 'game']]\n",
+ "[['of', 'the', 'approximately', '255', 'prisoners', 'remaining'], 'in', ['detention', 'are', 'said', 'by', 'military', 'and']]\n",
+ "[['for', 'a', 'new', 'president', 'to', 'come'], 'in', ['and', 'say,', \"'I\", \"don't\", 'believe', 'what']]\n",
+ "[['9/11', 'Commission', 'and', 'held', 'senior', 'positions'], 'in', ['the', 'Carter', 'and', 'Clinton', 'administrations.', 'The']]\n",
+ "[['has', 'had', 'to', 'defend', 'its', 'allegations'], 'in', ['court,', 'government', 'lawyers', 'in', 'several', 'cases']]\n",
+ "[['its', 'allegations', 'in', 'court,', 'government', 'lawyers'], 'in', ['several', 'cases', 'have', 'retreated', 'from', 'the']]\n",
+ "[['are', 'likely', 'to', 'face', 'tough', 'choices'], 'in', ['deciding', 'how', 'many', 'of', \"Guantanamo's\", 'detainees']]\n",
+ "[['of', 'pages', 'of', 'government', 'documents', 'released'], 'in', ['recent', 'years,', 'as', 'well', 'as', 'court']]\n",
+ "[['of', 'the', 'remaining', 'detainees', 'were', 'seized'], 'in', ['raids', 'in', 'Pakistan', 'that', 'netted', 'three']]\n",
+ "[['remaining', 'detainees', 'were', 'seized', 'in', 'raids'], 'in', ['Pakistan', 'that', 'netted', 'three', 'men', 'the']]\n",
+ "[['of', 'the', 'most', 'significant', 'terrorist', 'attacks'], 'in', ['the', 'last', 'decade,', 'including', 'the', '1998']]\n",
+ "[['2000', 'attack', 'on', 'the', 'USS', 'Cole'], 'in', ['Yemen,', 'and', 'the', 'Sept.', '11', 'attacks.']]\n",
+ "[['at', 'Guantanamo', 'has', 'gone', 'virtually', 'unmentioned'], 'in', ['public', 'reports,', 'is', 'a', 'Yemeni', 'called']]\n",
+ "[['flights', 'and', 'airport', 'security', 'and', 'participated'], 'in', ['an', 'important', 'planning', 'meeting', 'for', 'the']]\n",
+ "[['planning', 'meeting', 'for', 'the', '2001', 'attack'], 'in', ['Malaysia', 'in', 'January', '2000.', 'The', 'Guantanamo']]\n",
+ "[['for', 'the', '2001', 'attack', 'in', 'Malaysia'], 'in', ['January', '2000.', 'The', 'Guantanamo', 'list', 'also']]\n",
+ "[['Guantanamo', 'hearings', 'that', 'their', 'father,', 'imprisoned'], 'in', ['Saudi', 'Arabia,', 'was', 'a', '\"close', 'contact']]\n",
+ "[['was', 'alleged', 'to', 'have', 'been', 'involved'], 'in', ['planning', 'attacks', 'on', 'American', 'oil', 'tankers']]\n",
+ "[['aggressive', 'interrogations', 'has', 'led', 'many', 'critics'], 'in', ['the', 'United', 'States', 'and', 'around', 'the']]\n",
+ "[['detention', 'center,', 'they', 'have', 'not', 'said'], 'in', ['detail', 'how', 'they', 'would', 'handle', 'the']]\n",
+ "[['indicated', 'that', 'he', 'would', 'try', 'them'], 'in', ['the', \"Pentagon's\", 'commission', 'system', 'established', 'after']]\n",
+ "[['American', 'legal', 'system', '--', 'either', 'trials'], 'in', ['civilian', 'or', 'military', 'courts', '--', 'was']]\n",
+ "[['the', 'trials', 'of', 'terror', 'suspects.', 'But'], 'in', ['a', 'speech', 'on', 'the', 'Senator', 'floor']]\n",
+ "[['a', 'speech', 'on', 'the', 'Senator', 'floor'], 'in', ['2006,', 'Obama', 'suggested', 'that', 'the', 'allegations']]\n",
+ "[['\"Now', 'the', 'majority', 'of', 'the', 'folks'], 'in', ['Guantanamo,', 'I', 'suspect,', 'are', 'there', 'for']]\n",
+ "[['terrorist', 'team', 'deployed', 'to', 'attack', 'targets'], 'in', ['Karachi.\"', 'One', 'of', 'the', 'men,', 'Hail']]\n",
+ "[['Aziz', 'Ahmad', 'al', 'Maythal,', 'was', 'trained'], 'in', ['the', 'use', 'of', 'rocket-propelled', 'grenade', 'launchers,']]\n",
+ "[['Cross', 'worker', 'at', 'a', 'Taliban', 'roadblock'], 'in', ['2003,', 'told', 'a', 'military', 'officer', 'that']]\n",
+ "[['of', 'Western', 'donors', 'to', 'invest', 'heavily'], 'in', ['rebuilding', 'the', 'economically', 'broken', 'nation', 'as']]\n",
+ "[['nation', 'as', 'long', 'as', 'Mugabe', 'is'], 'in', ['charge,', 'even', 'if', 'a', 'deadlock', 'over']]\n",
+ "[['power-sharing', 'government', 'is', 'resolved.', 'Parsons', 'said'], 'in', ['an', 'interview', 'on', 'Sunday', 'that', 'last']]\n",
+ "[['the', 'Global', 'Fund', 'deposited', '$12.3', 'million'], 'in', ['foreign', 'currency', 'into', \"Zimbabwe's\", 'Reserve', 'Bank.']]\n",
+ "[['fighting.', 'The', 'Global', 'Fund', 'has', 'brought'], 'in', ['large', 'quantities', 'of', 'medicines', 'that', 'can']]\n",
+ "[['malaria', 'among', \"Zimbabwe's\", '12', 'million', 'people'], 'in', ['the', 'World', 'Health', \"Organization's\", 'most', 'recent']]\n",
+ "[['Obama', 'supporters', 'brought', 'up', 'about', 'Clinton'], 'in', ['Florida', 'last', 'weekend.', 'Of', '20', 'interviewed,']]\n",
+ "[['campaign', 'trail.', 'While', \"Clinton's\", 'high', 'profile'], 'in', ['Democratic', 'politics', 'has', 'been', 'fortified', 'by']]\n",
+ "[['wants', 'to', 'be', 'a', 'power', 'player'], 'in', ['Washington', 'if', 'Obama', 'wins', 'but', 'that']]\n",
+ "[['half', 'of', 'all', 'voters', 'will', 'vote'], 'in', ['a', 'way', 'that', 'is', 'different', 'from']]\n",
+ "[['is', 'different', 'from', 'what', 'they', 'did'], 'in', ['the', 'last', 'presidential', 'election,', 'and', 'most']]\n",
+ "[['years', 'after', 'the', 'largest', 'federal', 'overhaul'], 'in', ['how', 'elections', 'are', 'run,', 'voting', 'experts']]\n",
+ "[['still', 'predicting', 'machine', 'and', 'ballot', 'shortages'], 'in', ['several', 'swing', 'states', 'and', 'late', 'tallies']]\n",
+ "[['made', 'an', 'error', '--', 'not', 'filling'], 'in', ['an', 'oval', 'properly,', 'for', 'example,', 'a']]\n",
+ "[['also', 'filed', 'lawsuits', 'against', 'election', 'officials'], 'in', ['Pennsylvania', 'and', 'Virginia,', 'saying', 'they', 'have']]\n",
+ "[['electronic', 'voting', 'machines', 'or', 'printed', 'ballots'], 'in', ['swing', 'states,', 'along', 'with', 'problems', 'verifying']]\n",
+ "[['fray', 'nerves.', '\"What', 'has', 'traditionally', 'happened'], 'in', ['this', 'country', 'is', 'that', 'a', 'change']]\n",
+ "[['this', 'country', 'is', 'that', 'a', 'change'], 'in', ['voting', 'equipment', 'happens', 'once', 'in', 'the']]\n",
+ "[['change', 'in', 'voting', 'equipment', 'happens', 'once'], 'in', ['the', 'lifetime', 'of', 'an', 'election', 'official,\"']]\n",
+ "[['percent', 'of', 'the', 'country', 'will', 'vote'], 'in', ['places', 'that', 'in', 'the', 'last', 'eight']]\n",
+ "[['country', 'will', 'vote', 'in', 'places', 'that'], 'in', ['the', 'last', 'eight', 'years', 'have', 'changed']]\n",
+ "[['will', 'be', 'used', 'by', 'most', 'voters'], 'in', ['Indiana,', 'Kentucky,', 'Pennsylvania,', 'Tennessee,', 'Texas', 'and']]\n",
+ "[['causing', 'scanners', 'to', 'jam', 'and', 'vote-flipping,'], 'in', ['which', 'the', 'vote', 'cast', 'for', 'one']]\n",
+ "[['switched', 'to', 'its', 'third', 'ballot', 'system'], 'in', ['the', 'past', 'three', 'election', 'cycles,', 'and']]\n",
+ "[['ballots', 'this', 'year', 'after', 'touch-screen', 'machines'], 'in', ['Sarasota', 'County', 'failed', 'to', 'record', 'any']]\n",
+ "[['record', 'any', 'choice', 'for', '18,000', 'voters'], 'in', ['a', 'fiercely', 'contested', 'House', 'race', 'in']]\n",
+ "[['in', 'a', 'fiercely', 'contested', 'House', 'race'], 'in', ['2006.', 'Voters', 'in', 'Colorado,', 'Tennessee,', 'Texas']]\n",
+ "[['contested', 'House', 'race', 'in', '2006.', 'Voters'], 'in', ['Colorado,', 'Tennessee,', 'Texas', 'and', 'West', 'Virginia']]\n",
+ "[['supporter', 'who', 'tried', 'to', 'vote', 'early'], 'in', ['Ripley,', 'W.Va.', '\"I\\'m', 'a', 'registered', 'Republican,']]\n",
+ "[['a', 'registered', 'Republican,', 'and', \"I've\", 'voted'], 'in', ['every', 'presidential', 'election', 'since', '1948.', 'I']]\n",
+ "[['to', 'modernize', 'the', 'voting', 'process.', 'But'], 'in', ['many', 'ways,', 'things', 'have', 'become', 'even']]\n",
+ "[['brought', 'new', 'problems,', 'decreasing', 'public', 'confidence'], 'in', ['the', 'process', 'and', 'doubling', 'the', 'number']]\n",
+ "[['of', 'the', 'most', 'dramatic', 'presidential', 'elections'], 'in', ['modern', 'history.', '\"Counties', 'and', 'states', 'are']]\n",
+ "[['machine', 'problems', 'than', 'they', 'have', 'been'], 'in', ['the', 'past,\"', 'said', 'Lawrence', 'Norden,', 'a']]\n",
+ "[['may', 'not', 'be', 'like', 'any', 'other'], 'in', ['terms', 'of', 'the', 'strain', 'on', 'the']]\n",
+ "[['maker', 'of', 'the', 'touch-screen', 'equipment', 'used'], 'in', ['half', 'of', 'her', \"state's\", '88', 'counties']]\n",
+ "[['showed', 'that', 'the', 'machines', '\"dropped\"', 'votes'], 'in', ['recent', 'elections', 'when', 'memory', 'cards', 'were']]\n",
+ "[['a', 'federal', 'judge', 'ordered', 'election', 'officials'], 'in', ['Pennsylvania', 'to', 'make', 'emergency', 'paper', 'ballots']]\n",
+ "[['and', 'action', 'groups', 'steering', 'Colorado', 'Catholics'], 'in', ['\"faithful', 'citizenship\"', 'and', 'away', 'from', 'Obama.']]\n",
+ "[['crossed.', 'Colorado', 'Catholics,', 'key', 'swing', 'voters'], 'in', ['a', 'battleground', 'state,', 'are', 'targets', 'of']]\n",
+ "[['Haugh,', 'a', '66-year-old', 'Catholic', 'who', 'lives'], 'in', ['a', 'Denver', 'suburb.', '\"I', 'admit', 'it']]\n",
+ "[['Democratic', 'platform', 'that', 'emerged', 'from', 'Denver'], 'in', ['August', '2008', 'is', 'clearly', 'anti-life,\"', 'Chaput']]\n",
+ "[['is', 'inappropriate.', '\"I', 'think', 'the', 'archbishop'], 'in', ['Denver', 'and', 'bishop', 'in', 'Colorado', 'Springs']]\n",
+ "[['the', 'archbishop', 'in', 'Denver', 'and', 'bishop'], 'in', ['Colorado', 'Springs', 'have', 'taken', 'positions', 'that']]\n",
+ "[['so', 'that', 'they', 'are', 'making', 'decisions'], 'in', ['good', 'conscience.\"', 'Yet', 'Chaput', 'and', 'Auxiliary']]\n",
+ "[['openly', 'oppose', 'a', 'political', 'candidate', 'are'], 'in', ['violation', 'of', 'U.S.', 'Conference', 'of', 'Catholic']]\n",
+ "[['Conference', 'of', 'Catholic', 'Bishops', 'guidelines,', 'set'], 'in', ['1984', 'and', 'most', 'recently', 'reaffirmed', 'in']]\n",
+ "[['in', '1984', 'and', 'most', 'recently', 'reaffirmed'], 'in', ['2007.', '\"Catholic', 'voters', 'and', 'their', 'bishops']]\n",
+ "[['philosophy', 'and', 'performance,\"', 'McBrien', 'recently', 'said'], 'in', ['the', 'National', 'Catholic', 'Reporter.', 'Andrea', 'Merida,']]\n",
+ "[['interconnected.\"', 'Merida', 'said', 'having', 'grown', 'up'], 'in', ['an', 'urban', 'Latino', 'environment,', 'she', 'knows']]\n",
+ "[['a', '38-year-old', 'mechanical', 'designer', 'who', 'works'], 'in', ['Durango,', 'Colo.,', 'and', 'lives', 'in', 'nearby']]\n",
+ "[['works', 'in', 'Durango,', 'Colo.,', 'and', 'lives'], 'in', ['nearby', 'New', 'Mexico,', 'said', 'his', 'parish']]\n",
+ "[['50-year-old', 'mother', 'of', 'three', 'who', 'lives'], 'in', ['the', 'Denver', 'suburb', 'of', 'Englewood,', 'said']]\n",
+ "[['overturn', 'Roe', 'vs.', 'Wade?\"', 'Mayer', 'asked'], 'in', ['a', 'letter', 'to', 'the', 'editor', 'Oct.']]\n",
+ "[[\"Obama's\", 'ear', 'as', 'he', 'slouched', 'down'], 'in', ['a', 'black', 'leather', 'chair', 'in', 'the']]\n",
+ "[['down', 'in', 'a', 'black', 'leather', 'chair'], 'in', ['the', 'front', 'cabin', 'of', 'his', 'campaign']]\n",
+ "[['where', 'his', 'name', 'is', 'spelled', 'out'], 'in', ['blue', 'stitching.', 'A', 'few', 'miles', 'away,']]\n",
+ "[['hopes', 'will', 'give', 'him', 'an', 'edge'], 'in', ['the', 'waning', 'hours', 'of', 'the', 'presidential']]\n",
+ "[['at', 'odds', 'with', 'the', 'confident', 'gleam'], 'in', ['the', 'eyes', 'of', 'his', 'advisers.', 'While']]\n",
+ "[['as', 'he', 'enters', 'this', 'final', 'turn'], 'in', ['the', 'race', 'for', 'the', 'White', 'House.']]\n",
+ "[['loose.', \"There's\", 'a', 'lot', 'going', 'on'], 'in', ['his', 'world.\"', 'The', 'lines', 'in', \"Obama's\"]]\n",
+ "[['on', 'in', 'his', 'world.\"', 'The', 'lines'], 'in', [\"Obama's\", 'face', 'have', 'grown', 'a', 'bit']]\n",
+ "[['he', 'displays', 'little', 'of', 'it,', 'either'], 'in', ['public', 'appearances', 'or', 'private', 'conversations', 'with']]\n",
+ "[['some', 'critics', 'castigate', 'as', 'arrogance,', 'grew'], 'in', ['part', 'out', 'of', 'the', 'primary,', 'when']]\n",
+ "[['from', 'Illinois.', 'His', 'world', 'is', 'awash'], 'in', ['powerful,', 'conflicting', 'emotions:', 'the', 'realization,', 'presumably,']]\n",
+ "[['optimism', 'that', 'he', 'has', 'unleashed,', 'evident'], 'in', ['the', 'crowds', 'he', 'is', 'drawing', '(and']]\n",
+ "[['government', 'and', 'deal', 'with', 'a', 'transition'], 'in', ['such', 'a', 'difficult', 'time.', 'All', 'of']]\n",
+ "[['woman', 'who', 'played', 'a', 'large', 'role'], 'in', ['raising', 'him,', 'his', 'grandmother,', 'is', 'approaching']]\n",
+ "[['he', \"hadn't\", 'held', 'a', 'news', 'conference'], 'in', ['weeks.', '\"I', 'will,\"', 'Obama', 'said.', '\"On']]\n",
+ "[['true', 'crowd-pleaser,', 'and', 'he', 'reprises', 'it'], 'in', ['city', 'after', 'city.', 'His', 'crowds', 'have']]\n",
+ "[['Bill', 'Clinton,', 'he', 'was', 'visibly', 'chilly'], 'in', ['the', 'unusually', 'cool', 'air', 'with', 'a']]\n",
+ "[['one.', 'Not', 'so', 'the', 'next', 'night'], 'in', ['Virginia,', 'where', 'a', 'cool', 'and', 'damp']]\n",
+ "[['cool', 'and', 'damp', 'chill', 'also', 'hung'], 'in', ['the', 'air.', '\"I', 'did', 'decide', 'to']]\n",
+ "[['the', 'podium,', 'where', 'he', 'was', 'covered'], 'in', ['a', 'black', 'wool', 'overcoat.', 'While', 'he']]\n",
+ "[['Democratic', 'nomination.', 'On', 'Sunday,', 'he', 'was'], 'in', ['the', 'gym', 'of', 'the', 'Doubletree', 'Hotel']]\n",
+ "[['the', 'day', 'at', 'the', 'Ohio', 'Statehouse'], 'in', ['Columbus', 'until', '1', 'p.m.', 'His', 'campaign']]\n",
+ "[['himself,', 'can', 'be', 'slow', 'to', 'start'], 'in', ['the', 'morning,', 'but', 'runs', 'late', 'into']]\n",
+ "[['with', 'Bruce', 'Springsteen', 'at', 'a', 'rally'], 'in', ['Cleveland,', 'followed', 'by', 'a', 'stop', 'in']]\n",
+ "[['in', 'Cleveland,', 'followed', 'by', 'a', 'stop'], 'in', ['Cincinnati,', 'Obama', 'was', 'not', 'scheduled', 'to']]\n",
+ "[['scheduled', 'to', 'arrive', 'at', 'his', 'hotel'], 'in', ['Jacksonville,', 'Fla.,', 'until', 'after', '1', 'a.m.']]\n",
+ "[['of', 'nostalgia', 'surrounding', 'the', 'Obama', 'campaign'], 'in', ['these', 'final', 'hours', 'before', 'the', 'election,']]\n",
+ "[['for', 'months', 'has', 'been', 'immersing', 'himself'], 'in', ['the', 'work', 'of', 'the', 'presidency,', 'well']]\n",
+ "[['His', 'call', 'list', 'now', 'includes', 'officials'], 'in', ['Washington,', 'including', 'Treasury', 'Secretary', 'Henry', 'M.']]\n",
+ "[['government', 'rescue', 'plan.', 'And', 'he', 'is'], 'in', ['frequent', 'conversations', 'with', 'congressional', 'leaders', 'over']]\n",
+ "[['Tuesday.', 'On', 'Saturday', 'morning,', 'Obama', 'met'], 'in', ['his', 'hotel', 'suite', 'at', \"Caesar's\", 'Palace']]\n",
+ "[['his', 'hotel', 'suite', 'at', \"Caesar's\", 'Palace'], 'in', ['Las', 'Vegas', 'with', 'Sen.', 'Harry', 'Reid']]\n",
+ "[['items', 'sketched', 'on', 'a', 'note', 'card'], 'in', ['his', 'breast', 'pocket.', 'Obama', 'also', 'spoke']]\n",
+ "[['but', 'he', \"can't\", 'anymore,\"', 'Reid', 'said'], 'in', ['an', 'interview,', 'recalling', 'the', 'conversation', 'he']]\n",
+ "[['plane', 'touched', 'down', 'on', 'Saturday', 'afternoon'], 'in', ['Pueblo,', 'Colo.,', 'his', 'step', 'carried', 'an']]\n",
+ "[['the', 'place', 'that', 'he', 'finds', 'himself'], 'in', ['the', 'closing', 'moments', 'of', 'his', 'campaign,']]\n",
+ "[['believing', 'it', 'sends', 'the', 'wrong', 'message'], 'in', ['this', 'economy.', 'An', 'airport', 'hotel', 'would']]\n",
+ "[['The', 'Phillies', 'won', 'their', 'first', 'title'], 'in', ['28', 'years,', 'with', 'second', 'baseman', 'Chase']]\n",
+ "[['L.A.', \"hasn't\", 'dealt', 'a', 'young', 'pitcher'], 'in', ['seven', 'years.', 'Atkins', 'is', 'more', 'marketable']]\n",
+ "[['seven', 'years.', 'Atkins', 'is', 'more', 'marketable'], 'in', ['some', 'ways', 'because', 'he', 'has', 'two']]\n",
+ "[[\"Holliday's\", '$13.5', 'million.', 'The', \"Angels'\", 'interest'], 'in', ['Atkins', 'and', 'Holliday', 'will', 'be', 'tied']]\n",
+ "[['will', 'be', 'tied', 'to', 'their', 'success'], 'in', ['re-signing', 'Mark', 'Teixeira.', 'If', 'he', 'returns,']]\n",
+ "[['should', 'be', 'the', 'epicenter', 'for', 'interest'], 'in', ['Atkins,', 'with', 'the', 'Twins', 'and', 'Indians']]\n",
+ "[['wrong', 'with', 'laying', 'groundwork', 'with', 'castles'], 'in', ['the', 'sand.', '\"The', 'economy', 'will', 'be']]\n",
+ "[['for', 'Osama', 'bin', 'Laden', 'captured', 'early'], 'in', ['the', 'Afghanistan', 'war', '--', 'and', 'many']]\n",
+ "[['who', 'the', 'government', 'says', 'were', 'trained'], 'in', ['assassination', 'and', 'the', 'use', 'of', 'poisons']]\n",
+ "[['is', 'said', 'to', 'have', 'been', 'schooled'], 'in', ['making', 'detonators', 'out', 'of', 'Sega', 'game']]\n",
+ "[['of', 'the', 'approximately', '255', 'prisoners', 'remaining'], 'in', ['detention', 'are', 'said', 'by', 'military', 'and']]\n",
+ "[['for', 'a', 'new', 'president', 'to', 'come'], 'in', ['and', 'say,', \"'I\", \"don't\", 'believe', 'what']]\n",
+ "[['9/11', 'Commission', 'and', 'held', 'senior', 'positions'], 'in', ['the', 'Carter', 'and', 'Clinton', 'administrations.', 'The']]\n",
+ "[['are', 'likely', 'to', 'face', 'tough', 'choices'], 'in', ['deciding', 'how', 'many', 'of', \"Guantanamo's\", 'detainees']]\n",
+ "[['last', 'week', 'at', 'Valley', 'Food', 'Bank'], 'in', ['Pacoima,', 'a', 'San', 'Fernando', 'suburb', 'about']]\n",
+ "[['in.', '\"We\\'ve', 'had', 'a', 'big', 'increase'], 'in', ['demand,', 'with', 'a', 'big', 'increase', 'in']]\n",
+ "[['in', 'demand,', 'with', 'a', 'big', 'increase'], 'in', ['food', 'donations,\"', 'said', 'Darren', 'Hoffman,', 'spokesman']]\n",
+ "[['last', 'fall,', 'from', '600', 'new', 'clients'], 'in', ['September', '2007', 'to', '1,200', 'new', 'clients']]\n",
+ "[['registration', 'for', 'poor', 'families', 'filled', 'up'], 'in', ['a', 'week,', 'a', 'month', 'earlier', 'than']]\n",
+ "[['largest', 'service', 'provider', 'to', 'the', 'poor'], 'in', ['the', 'Valley.', '\"We', 'feel', 'like', 'we']]\n",
+ "[['25', 'birds', 'on', 'ice', 'for', 'hundreds'], 'in', ['need', 'who', 'may', 'wish', 'to', 'give']]\n",
+ "[['assistance', '--', 'professionals', 'are', 'showing', 'up'], 'in', ['the', 'the', 'receiving', 'line.\"', 'One', 'day']]\n",
+ "[['\"We', 'have,', 'like,', 'hardly', 'no', 'food'], 'in', ['the', 'house,\"', 'Daniella,', 'of', 'Van', 'Nuys,']]\n",
+ "[['which', 'is', 'just', 'starting', 'to', 'trickle'], 'in', ['to', 'such', 'distributors', 'as', 'the', 'Los']]\n",
+ "[['St.', 'Vincent', 'de', 'Paul', 'food', 'pantry'], 'in', ['Sun', 'Valley,', 'who', 'has', 'been', 'scouring']]\n",
+ "[['Coalition,', 'at', '818-718-6460,', 'or', 'www.vic-la.org/FoodPantry.html', 'Somewhere'], 'in', ['a', 'corner', 'of', 'northeastern', 'Ohio,', 'just']]\n",
+ "[['will', 'lose,', 'Sen.', 'John', 'McCain', 'sat'], 'in', ['the', 'back', 'of', 'his', 'campaign', 'bus']]\n",
+ "[['the', 'old', 'borscht', 'belt', 'comedian', 'perform'], 'in', ['New', 'Jersey.', 'He', 'told', 'stories', 'about']]\n",
+ "[['book', 'he', 'was', 'reading,', '\"A', 'Walk'], 'in', ['the', 'Woods,\"', 'a', 'comic', 'account', 'of']]\n",
+ "[['is', 'ecstatic', 'that', 'he', 'is', 'behind'], 'in', ['the', 'polls', 'or', 'that', 'the', 'cognoscenti,']]\n",
+ "[['it,', '\"have', 'written', 'us', 'off.\"', 'But'], 'in', ['the', 'frantic', 'last', 'days', 'of', 'his']]\n",
+ "[['polls', 'that', 'show', 'the', 'race', 'tightening'], 'in', ['some', 'battleground', 'states', 'and', 'allow', 'him']]\n",
+ "[['a', 'shot.', 'He', 'is', 'also', 'now'], 'in', ['the', 'role', 'that', 'he', 'finds', 'at']]\n",
+ "[['that', 'his', 'first', 'stop', 'Thursday', 'was'], 'in', ['Defiance,', 'Ohio.', '\"If', 'we', 'were', '10']]\n",
+ "[['fly', 'home', 'with', 'him', 'to', 'Arizona'], 'in', ['the', 'small', 'hours', 'of', 'Tuesday', 'morning.']]\n",
+ "[['to', 'improving', 'the', \"candidate's\", 'mood,', 'Graham'], 'in', ['particular.', \"McCain's\", 'wife,', 'Cindy,', 'who', 'is']]\n",
+ "[['town', 'hall', 'meeting', 'Sunday', 'night', 'here'], 'in', ['Peterborough,', 'N.H.,', 'one', 'of', 'the', 'earliest']]\n",
+ "[['stops', 'of', 'his', 'first', 'presidential', 'campaign'], 'in', ['2000.', 'On', 'Friday', 'McCain', 'marveled', 'to']]\n",
+ "[['through', 'a', 'tunnel', 'of', 'gold', 'leaves'], 'in', ['Bucks', 'County,', 'Pa.', 'Two', 'hours', 'later,']]\n",
+ "[['There', 'he', 'good-naturedly', 'mocked', 'his', 'circumstances'], 'in', ['a', 'faux', 'QVC', 'segment', 'by', 'saying']]\n",
+ "[['and', 'humbled', 'by', 'his', 'own', 'place'], 'in', ['it.', 'As', 'a', 'prisoner', 'of', 'war']]\n",
+ "[['it.', 'As', 'a', 'prisoner', 'of', 'war'], 'in', ['Vietnam,', 'McCain', 'mused', 'to', 'his', 'cellmates']]\n",
+ "[['radio', 'interviews', 'that', 'he', 'races', 'through'], 'in', ['5-', 'and', '10-minute', 'bites.', 'Afterward,', 'the']]\n",
+ "[['and', 'his', 'aides', 'assemble', 'with', 'coffee'], 'in', ['his', 'hotel', 'suite,', 'go', 'over', 'the']]\n",
+ "[['we', 'all', 'watch', 'for', 'it.\"', 'McCain,'], 'in', ['the', 'meantime,', 'is', 'on', 'the', 'phone']]\n",
+ "[['was', 'the', 'suspension', 'of', 'his', 'campaign'], 'in', ['late', 'September', 'to', 'make', 'his', 'way']]\n",
+ "[['House', 'Republicans', 'blow', 'the', 'deal', 'up'], 'in', ['his', 'face.', 'His', 'slight', 'edge', 'in']]\n",
+ "[['in', 'his', 'face.', 'His', 'slight', 'edge'], 'in', ['the', 'polls', 'evaporated,', 'and', 'he', 'was']]\n",
+ "[['some', 'of', 'his', 'rhetoric', 'and', 'has'], 'in', ['the', 'last', 'few', 'days', 'loosened', 'up']]\n",
+ "[['the', 'last', 'few', 'days', 'loosened', 'up'], 'in', ['his', 'speeches,', 'although', 'he', 'still', 'lustily']]\n",
+ "[['attacks', 'Obama', 'as', 'the', 'tax-and-spend', '\"redistributionist'], 'in', ['chief\"', 'who', 'can', 'not', 'be', 'trusted']]\n",
+ "[['be', 'trusted', 'to', 'lead', 'the', 'nation'], 'in', ['crisis.', 'But', 'the', '\"get', 'off', 'my']]\n",
+ "[['Saturday', 'morning', 'at', 'Christopher', 'Newport', 'University'], 'in', ['Newport', 'News,', 'Va.', 'The', 'line', 'was']]\n",
+ "[['over', 'his', 'bus,', 'and', 'naps', 'slumped'], 'in', ['his', 'seat', 'in', 'the', 'curtained-off', 'front']]\n",
+ "[['and', 'naps', 'slumped', 'in', 'his', 'seat'], 'in', ['the', 'curtained-off', 'front', 'section', 'of', 'his']]\n",
+ "[['once', 'called', 'his', '\"base\"', 'remain', 'banished'], 'in', ['the', 'back;', 'aides', 'say', 'he', 'is']]\n",
+ "[['Ambien', 'if', 'he', 'needs', 'one,', 'but'], 'in', ['these', 'last', 'days', 'there', 'is', 'scant']]\n",
+ "[['New', 'Hampshire', 'to', 'a', 'post-midnight', 'rally'], 'in', ['Miami,', 'then', 'rest', 'briefly', 'and', 'head']]\n",
+ "[['set', 'to', 'arrive', 'at', 'his', 'condominium'], 'in', ['Phoenix', 'sometime', 'after', '2', 'a.m.', 'on']]\n",
+ "[['a.m.', 'on', 'Election', 'Day.', 'There', 'would'], 'in', ['any', 'case', 'be', 'little', 'time', 'for']]\n",
+ "[['the', 'rolling', 'seminars', 'he', 'once', 'conducted'], 'in', ['the', 'back', 'of', 'his', 'bus.', 'He']]\n",
+ "[['other', 'campaign', 'anthems.', '\"It\\'s', 'like', 'being'], 'in', ['a', 'rock', 'band,\"', 'Graham', 'said.', '\"You']]\n",
+ "[['more', 'mission.\"', 'Outspent', 'and', 'under', 'siege'], 'in', ['a', 'hostile', 'political', 'climate,', 'congressional', 'Republicans']]\n",
+ "[['this', 'weekend', 'to', 'save', 'embattled', 'incumbents'], 'in', ['an', 'effort', 'to', 'hold', 'down', 'expected']]\n",
+ "[['to', 'hold', 'down', 'expected', 'Democratic', 'gains'], 'in', ['the', 'House', 'and', 'Senate', 'on', 'Tuesday.']]\n",
+ "[['remaining', 'resources', 'into', 'protecting', 'endangered', 'lawmakers'], 'in', ['Georgia,', 'Minnesota,', 'Mississippi,', 'New', 'Hampshire,', 'North']]\n",
+ "[['what', 'should', 'be', 'secure', 'Republican', 'territory'], 'in', ['Idaho,', 'Indiana,', 'Kentucky,', 'Virginia', 'and', 'Wyoming.']]\n",
+ "[['and', 'Wyoming.', 'Senate', 'Democrats', 'were', 'active'], 'in', ['nine', 'states', 'where', 'Republicans', 'are', 'running']]\n",
+ "[['re-election;', 'House', 'Democrats,', 'meanwhile,', 'bought', 'advertising'], 'in', ['63', 'districts,', 'twice', 'the', 'number', 'of']]\n",
+ "[['and', 'helped', 'candidates.', '\"We', 'are', 'deep'], 'in', ['the', 'red', 'areas,\"', 'Rep.', 'Chris', 'Van']]\n",
+ "[['on', 'Sunday.', '\"We', 'are', 'competing', 'now'], 'in', ['districts', 'George', 'Bush', 'carried', 'by', 'large']]\n",
+ "[['George', 'Bush', 'carried', 'by', 'large', 'margins'], 'in', ['2004.\"', 'What', 'seems', 'especially', 'striking', 'about']]\n",
+ "[['the', 'most', 'contested', 'House', 'races', 'occurring'], 'in', ['Republican-held', 'districts', 'that', 'extend', 'beyond', 'cities']]\n",
+ "[['Republican-held', 'districts', 'that', 'extend', 'beyond', 'cities'], 'in', ['states', 'like', 'Florida,', 'Michigan,', 'Minnesota', 'and']]\n",
+ "[['expected', 'victories', 'would', 'give', 'them', 'dominance'], 'in', ['the', 'suburbs', '--', 'the', 'traditional', 'foundation']]\n",
+ "[['the', 'traditional', 'foundation', 'of', 'Republican', 'power'], 'in', ['the', 'House..', 'The', 'same', 'is', 'true']]\n",
+ "[['Republican', 'candidates,', 'compared', 'with', '$33.7', 'million'], 'in', ['advertising', 'by', 'Republicans.', 'In', 'the', 'House,']]\n",
+ "[['spent', 'on', 'behalf', 'of', 'incumbents', 'or'], 'in', ['districts', 'where', 'a', 'Republican', 'is', 'retiring,']]\n",
+ "[['Democrats', 'spent', 'most', 'of', 'their', 'money'], 'in', ['the', 'last', 'month', 'going', 'after', 'Republican']]\n",
+ "[['last', 'month', 'going', 'after', 'Republican', 'seats'], 'in', ['Colorado,', 'Nebraska,', 'Washington,', 'West', 'Virginia', 'and']]\n",
+ "[['the', 'Justice', 'Department', 'of', 'any', 'wrongdoing'], 'in', ['connection', 'with', 'an', 'inquiry', 'into', 'whether']]\n",
+ "[['helped', 'a', 'friend', 'win', 'defense', 'contracts'], 'in', ['exchange', 'for', 'gifts,', \"Gibbons'\", 'lawyer', 'said.']]\n",
+ "[['D.', 'Lowell,', 'said', 'the', 'lead', 'prosecutor'], 'in', ['the', 'case', 'informed', 'Gibbons', 'on', 'Friday']]\n",
+ "[['congressman', 'before', 'he', 'was', 'elected', 'governor'], 'in', ['2006,', 'had', 'been', 'closed.', 'A', 'Justice']]\n",
+ "[['he', 'lives', 'in.', '\"They', 'handled', 'it'], 'in', ['a', 'way', 'and', 'a', 'speed', 'that']]\n",
+ "[['conclusion.\"', 'Lowell', 'said', 'Gibbons', 'had', 'cooperated'], 'in', ['the', 'investigation', 'and', 'in', 'recent', 'months']]\n",
+ "[['had', 'cooperated', 'in', 'the', 'investigation', 'and'], 'in', ['recent', 'months', 'had', 'been', 'interviewed', 'by']]\n",
+ "[['were', 'confidential,', 'but', 'the', 'company,', 'based'], 'in', ['Bellevue,', 'Wash.,', 'disclosed', 'that', 'the', 'agreement']]\n",
+ "[['for', 'certain', 'allegations\"', 'made', 'against', 'him'], 'in', ['the', 'news', 'media.', 'The', 'closing', 'of']]\n",
+ "[['investigation', 'provides', 'welcome', 'news', 'to', 'Gibbons'], 'in', ['a', 'trying', 'period.', 'A', 'former', 'cocktail']]\n",
+ "[['her', 'after', 'a', 'night', 'of', 'drinking'], 'in', ['Las', 'Vegas', 'just', 'before', 'the', 'November']]\n",
+ "[['years', 'of', 'marriage.', 'The', 'news', 'media'], 'in', ['Nevada', 'have', 'made', 'much', 'of', 'her']]\n",
+ "[['of', '2008.', 'The', 'company', 'said', 'improvements'], 'in', ['security', 'for', 'its', 'Windows', 'Vista', 'operating']]\n",
+ "[['shifted', 'their', 'attention', 'to', 'security', 'holes'], 'in', ['individual', 'programs.', 'During', 'the', 'first', 'half']]\n",
+ "[['the', 'world', 'over', 'the', 'Internet', 'beginning'], 'in', ['2003.', 'But', 'they', 'said', 'that', 'unless']]\n",
+ "[['change', 'throughout', 'the', 'industry,', 'any', 'improvements'], 'in', ['the', 'security', 'of', 'Windows', 'would', 'be']]\n",
+ "[['Communications', 'group,', 'referring', 'to', 'the', 'improvement'], 'in', ['the', \"company's\", 'engineering', 'practices.', '\"Now', 'we']]\n",
+ "[['for', 'F-Secure,', 'a', 'computer', 'security', 'firm'], 'in', ['Finland.', '\"That\\'s', 'not', 'what', 'the', 'bad']]\n",
+ "[['users', 'to', 'click', 'on', 'enticing', 'links'], 'in', ['their', 'e-mail', 'or', 'to', 'visit', 'seductive']]\n",
+ "[['be', 'one', 'of', 'the', 'key', 'factors'], 'in', ['the', 'poor', 'reception', 'for', 'Vista.', 'Last']]\n",
+ "[['poor', 'reception', 'for', 'Vista.', 'Last', 'week'], 'in', ['Los', 'Angeles,', 'the', 'company', 'said', 'it']]\n",
+ "[['frustration.', 'In', 'comparing', 'Web', 'browser', 'vulnerabilities'], 'in', ['Windows', 'XP', 'and', 'Windows', 'Vista', 'in']]\n",
+ "[['in', 'Windows', 'XP', 'and', 'Windows', 'Vista'], 'in', ['the', 'first', 'half', 'of', 'the', 'year,']]\n",
+ "[['half', 'of', 'the', 'top', '10', 'vulnerabilities'], 'in', ['Windows', 'XP,', 'the', 'top', '10', 'browser']]\n",
+ "[['malware', 'infection', 'rates', 'are', 'generally', 'higher'], 'in', ['developing', 'countries', 'and', 'regions', 'than', 'in']]\n",
+ "[['in', 'developing', 'countries', 'and', 'regions', 'than'], 'in', ['developed', 'ones.', 'Infection', 'rates', 'range', 'from']]\n",
+ "[['from', '1.8', 'for', 'every', '1,000', 'computers'], 'in', ['Japan', 'to', 'above', '76.4', 'for', 'every']]\n",
+ "[['to', 'above', '76.4', 'for', 'every', '1,000'], 'in', ['Afghanistan.', 'The', 'United', 'States', 'had', 'an']]\n",
+ "[['scanned,', 'an', 'increase', 'of', '25.5', 'percent'], 'in', ['the', 'last', 'six', 'months.', 'Somewhere', 'in']]\n",
+ "[['in', 'the', 'last', 'six', 'months.', 'Somewhere'], 'in', ['a', 'corner', 'of', 'northeastern', 'Ohio,', 'just']]\n",
+ "[['will', 'lose,', 'Sen.', 'John', 'McCain', 'sat'], 'in', ['the', 'back', 'of', 'his', 'campaign', 'bus']]\n",
+ "[['is', 'ecstatic', 'that', 'he', 'is', 'behind'], 'in', ['the', 'polls', 'or', 'that', 'the', 'cognoscenti,']]\n",
+ "[['it,', '\"have', 'written', 'us', 'off.\"', 'But'], 'in', ['the', 'frantic', 'last', 'days', 'of', 'his']]\n",
+ "[['radio', 'interviews', 'that', 'he', 'races', 'through'], 'in', ['5-', 'and', '10-', 'minute', 'bites.', 'Afterward,']]\n",
+ "[['and', 'his', 'aides', 'assemble', 'with', 'coffee'], 'in', ['his', 'hotel', 'suite,', 'go', 'over', 'the']]\n",
+ "[['over', 'his', 'bus,', 'and', 'naps', 'slumped'], 'in', ['his', 'seat', 'in', 'the', 'curtained-off', 'front']]\n",
+ "[['and', 'naps', 'slumped', 'in', 'his', 'seat'], 'in', ['the', 'curtained-off', 'front', 'section', 'of', 'his']]\n",
+ "[['Ambien', 'if', 'he', 'needs', 'one,', 'but'], 'in', ['these', 'last', 'days', 'there', 'is', 'scant']]\n",
+ "[['end', 'Sunday', 'with', 'a', 'post-midnight', 'rally'], 'in', ['Miami,', 'then', 'rest', 'briefly', 'and', 'head']]\n",
+ "[['set', 'to', 'arrive', 'at', 'his', 'condominium'], 'in', ['Phoenix', 'sometime', 'after', '2', 'a.m.', 'on']]\n",
+ "[['be', 'financed', 'is', 'set', 'to', 'begin'], 'in', ['earnest.', 'Both', 'candidates', 'have', 'campaigned', 'as']]\n",
+ "[['presidential', 'campaigns', 'would', 'be', 'a', 'priority'], 'in', ['their', 'administration.', 'But', 'Obama', 'apparently', 'did']]\n",
+ "[['epitaph', 'for', 'the', 'current', 'system.', 'Democrats,'], 'in', ['particular,', 'who', 'have', 'traditionally', 'supported', 'limits']]\n",
+ "[['Sen.', 'John', 'F.', \"Kerry's\", 'presidential', 'campaign'], 'in', ['2004.', 'An', 'Oct.', '28', 'USA', 'Today-Gallup']]\n",
+ "[['McCain', 'opted', 'for', 'the', '$84', 'million'], 'in', ['public', 'financing.', 'But', 'the', 'survey', 'also']]\n",
+ "[['like', 'the', 'economy', 'and', 'the', 'war'], 'in', ['Iraq.', 'There', 'is', 'also', 'the', 'matter']]\n",
+ "[['been', 'raised', 'by', 'the', 'presidential', 'candidates'], 'in', ['this', \"year's\", 'primary', 'and', 'general', 'elections']]\n",
+ "[['chemical', 'that', 'has', 'contaminated', 'food', 'supplies'], 'in', ['China', 'and', 'led', 'to', 'global', 'recalls']]\n",
+ "[['be', \"China's\", 'biggest', 'food', 'safety', 'crackdown'], 'in', ['years,', 'the', 'government', 'also', 'said', 'Saturday']]\n",
+ "[['it', 'had', 'closed', '238', 'feed', 'makers'], 'in', ['a', 'series', 'of', 'nationwide', 'sweeps', 'that']]\n",
+ "[['week', 'and', 'a', 'half,', 'eggs', 'produced'], 'in', ['three', 'provinces', 'were', 'found', 'to', 'be']]\n",
+ "[['with', 'high', 'levels', 'of', 'melamine.', 'And'], 'in', ['September,', 'melamine-tainted', 'infant', 'formula', 'supplies', 'were']]\n",
+ "[['causing', 'at', 'least', 'four', 'deaths.', 'Regulators'], 'in', ['the', 'southern', 'province', 'of', 'Guangdong,', 'which']]\n",
+ "[['the', 'quality', 'of', 'feed', 'had', 'improved'], 'in', ['recent', 'years.', 'They', 'insisted', 'that', 'only']]\n",
+ "[['United', 'States', 'and', 'other', 'countries,', 'resulting'], 'in', ['contaminated', 'pet', 'food', 'supplies', 'that', 'sickened']]\n",
+ "[['to', 'the', 'largest', 'pet', 'food', 'recall'], 'in', ['American', 'history.', 'Melamine', 'dealers', 'in', 'China']]\n",
+ "[['recall', 'in', 'American', 'history.', 'Melamine', 'dealers'], 'in', ['China', 'said', 'in', 'interviews', 'last', 'year']]\n",
+ "[['history.', 'Melamine', 'dealers', 'in', 'China', 'said'], 'in', ['interviews', 'last', 'year', 'and', 'as', 'recently']]\n",
+ "[['alarmed.', 'Although', 'the', 'contaminated', 'eggs', 'found'], 'in', ['Hong', 'Kong', 'exceeded', 'the', 'government', 'limit']]\n",
+ "[['about', 'two', 'dozen', 'of', 'the', 'eggs'], 'in', ['a', 'single', 'day', 'to', 'become', 'sick,']]\n",
+ "[['explosives-laden', 'truck', 'into', 'a', 'security', 'checkpoint'], 'in', ['the', 'restive', 'South', 'Waziristan', 'tribal', 'region,']]\n",
+ "[['and', 'the', 'United', 'States', 'has', 'worsened'], 'in', ['recent', 'weeks', 'after', 'a', 'string', 'of']]\n",
+ "[['after', 'a', 'string', 'of', 'American', 'strikes'], 'in', ['Pakistan', 'on', 'militant', 'hide-outs.', 'Petraeus,', 'credited']]\n",
+ "[['credited', 'with', 'turning', 'around', 'the', 'war'], 'in', ['Iraq,', 'was', 'accompanied', 'by', 'Richard', 'A.']]\n",
+ "[['militant.', 'Nazir,', 'the', \"Taliban's\", 'top', 'commander'], 'in', ['South', 'Waziristan,', 'was', 'reportedly', 'the', 'target']]\n",
+ "[['leading', 'English-language', 'newspapers,', 'reported', 'that', 'militants'], 'in', ['South', 'Waziristan', 'had', 'threatened', 'to', 'scrap']]\n",
+ "[['--', 'and', 'victory', 'for', 'their', 'group'], 'in', ['elections', 'next', 'year.', '\"We', 'are', 'starting']]\n",
+ "[['want', 'to', 'become', 'the', 'next', 'government,'], 'in', ['the', 'provinces', 'and', 'nationally,\"', 'Mbhazima', 'Shilowa,']]\n",
+ "[['Indeed,', 'this', 'weekend', 'may', 'go', 'down'], 'in', ['South', 'African', 'history', 'as', 'a', 'watershed,']]\n",
+ "[['insurrection', 'is', 'thought', 'to', 'be', 'biggest'], 'in', ['the', 'provinces', 'of', 'Eastern', 'Cape,', 'Western']]\n",
+ "[['worried,', 'they', 'manage', 'a', 'brave', 'face'], 'in', ['public.', '\"The', 'wealthy', 'gathered', 'yesterday', 'at']]\n",
+ "[['gathered', 'yesterday', 'at', 'their', 'fancy', 'convention\"'], 'in', ['the', 'suburbs,', 'Jacob', 'Zuma,', 'the', 'party']]\n",
+ "[['derisively', 'remarked', 'Sunday', 'at', 'a', 'rally'], 'in', ['the', 'township', 'of', 'Soweto', 'that', 'drew']]\n",
+ "[[\"Obama's\", 'ear', 'as', 'he', 'slouched', 'down'], 'in', ['a', 'black', 'leather', 'chair', 'in', 'the']]\n",
+ "[['down', 'in', 'a', 'black', 'leather', 'chair'], 'in', ['the', 'front', 'cabin', 'of', 'his', 'campaign']]\n",
+ "[['where', 'his', 'name', 'is', 'spelled', 'out'], 'in', ['blue', 'stitching.', 'A', 'few', 'miles', 'away,']]\n",
+ "[['hopes', 'will', 'give', 'him', 'an', 'edge'], 'in', ['the', 'waning', 'hours', 'of', 'the', 'presidential']]\n",
+ "[['at', 'odds', 'with', 'the', 'confident', 'gleam'], 'in', ['the', 'eyes', 'of', 'his', 'advisers.', 'While']]\n",
+ "[['as', 'he', 'enters', 'this', 'final', 'turn'], 'in', ['the', 'race', 'for', 'the', 'White', 'House.']]\n",
+ "[['loose.', \"There's\", 'a', 'lot', 'going', 'on'], 'in', ['his', 'world.\"', 'The', 'lines', 'in', \"Obama's\"]]\n",
+ "[['on', 'in', 'his', 'world.\"', 'The', 'lines'], 'in', [\"Obama's\", 'face', 'have', 'grown', 'a', 'bit']]\n",
+ "[['he', 'displays', 'little', 'of', 'it,', 'either'], 'in', ['public', 'appearances', 'or', 'private', 'conversations', 'with']]\n",
+ "[['some', 'critics', 'castigate', 'as', 'arrogance,', 'grew'], 'in', ['part', 'out', 'of', 'the', 'primary,', 'when']]\n",
+ "[['from', 'Illinois.', 'His', 'world', 'is', 'awash'], 'in', ['powerful,', 'conflicting', 'emotions:', 'the', 'realization,', 'presumably,']]\n",
+ "[['optimism', 'that', 'he', 'has', 'unleashed,', 'evident'], 'in', ['the', 'crowds', 'he', 'is', 'drawing', '(and']]\n",
+ "[['government', 'and', 'deal', 'with', 'a', 'transition'], 'in', ['such', 'a', 'difficult', 'time.', 'All', 'of']]\n",
+ "[['woman', 'who', 'played', 'a', 'large', 'role'], 'in', ['raising', 'him,', 'his', 'grandmother,', 'is', 'approaching']]\n",
+ "[['he', \"hadn't\", 'held', 'a', 'news', 'conference'], 'in', ['weeks.', '\"I', 'will,\"', 'Obama', 'said.', '\"On']]\n",
+ "[['true', 'crowd-pleaser,', 'and', 'he', 'reprises', 'it'], 'in', ['city', 'after', 'city.', 'His', 'crowds', 'have']]\n",
+ "[['Bill', 'Clinton,', 'he', 'was', 'visibly', 'chilly'], 'in', ['the', 'unusually', 'cool', 'air', 'with', 'a']]\n",
+ "[['one.', 'Not', 'so', 'the', 'next', 'night'], 'in', ['Virginia,', 'where', 'a', 'cool', 'and', 'damp']]\n",
+ "[['cool', 'and', 'damp', 'chill', 'also', 'hung'], 'in', ['the', 'air.', '\"I', 'did', 'decide', 'to']]\n",
+ "[['the', 'podium,', 'where', 'he', 'was', 'covered'], 'in', ['a', 'black', 'wool', 'overcoat.', 'While', 'he']]\n",
+ "[['Democratic', 'nomination.', 'On', 'Sunday,', 'he', 'was'], 'in', ['the', 'gym', 'of', 'the', 'Doubletree', 'Hotel']]\n",
+ "[['the', 'day', 'at', 'the', 'Ohio', 'Statehouse'], 'in', ['Columbus', 'until', '1', 'p.m.', 'His', 'campaign']]\n",
+ "[['himself,', 'can', 'be', 'slow', 'to', 'start'], 'in', ['the', 'morning,', 'but', 'runs', 'late', 'into']]\n",
+ "[['with', 'Bruce', 'Springsteen', 'at', 'a', 'rally'], 'in', ['Cleveland,', 'followed', 'by', 'a', 'stop', 'in']]\n",
+ "[['in', 'Cleveland,', 'followed', 'by', 'a', 'stop'], 'in', ['Cincinnati,', 'Obama', 'was', 'not', 'scheduled', 'to']]\n",
+ "[['scheduled', 'to', 'arrive', 'at', 'his', 'hotel'], 'in', ['Jacksonville,', 'Fla.,', 'until', 'after', '1', 'a.m.']]\n",
+ "[['of', 'nostalgia', 'surrounding', 'the', 'Obama', 'campaign'], 'in', ['these', 'final', 'hours', 'before', 'the', 'election,']]\n",
+ "[['for', 'months', 'has', 'been', 'immersing', 'himself'], 'in', ['the', 'work', 'of', 'the', 'presidency,', 'well']]\n",
+ "[['His', 'call', 'list', 'now', 'includes', 'officials'], 'in', ['Washington,', 'including', 'Treasury', 'Secretary', 'Henry', 'M.']]\n",
+ "[['government', 'rescue', 'plan.', 'And', 'he', 'is'], 'in', ['frequent', 'conversations', 'with', 'congressional', 'leaders', 'over']]\n",
+ "[['Tuesday.', 'On', 'Saturday', 'morning,', 'Obama', 'met'], 'in', ['his', 'hotel', 'suite', 'at', \"Caesar's\", 'Palace']]\n",
+ "[['his', 'hotel', 'suite', 'at', \"Caesar's\", 'Palace'], 'in', ['Las', 'Vegas', 'with', 'Sen.', 'Harry', 'Reid']]\n",
+ "[['items', 'sketched', 'on', 'a', 'note', 'card'], 'in', ['his', 'breast', 'pocket.', 'Obama', 'also', 'spoke']]\n",
+ "[['but', 'he', \"can't\", 'anymore,\"', 'Reid', 'said'], 'in', ['an', 'interview,', 'recalling', 'the', 'conversation', 'he']]\n",
+ "[['plane', 'touched', 'down', 'on', 'Saturday', 'afternoon'], 'in', ['Pueblo,', 'Colo.,', 'his', 'step', 'carried', 'an']]\n",
+ "[['the', 'place', 'that', 'he', 'finds', 'himself'], 'in', ['the', 'closing', 'moments', 'of', 'his', 'campaign,']]\n",
+ "[[\"Obama's\", 'ear', 'as', 'he', 'slouched', 'down'], 'in', ['a', 'black', 'leather', 'chair', 'in', 'the']]\n",
+ "[['down', 'in', 'a', 'black', 'leather', 'chair'], 'in', ['the', 'front', 'cabin', 'of', 'his', 'campaign']]\n",
+ "[['hopes', 'will', 'give', 'him', 'an', 'edge'], 'in', ['the', 'waning', 'hours', 'of', 'the', 'presidential']]\n",
+ "[['at', 'odds', 'with', 'the', 'confident', 'gleam'], 'in', ['the', 'eyes', 'of', 'his', 'advisers.', 'While']]\n",
+ "[['points', 'of', 'his', 'journey.', 'The', 'lines'], 'in', [\"Obama's\", 'face', 'have', 'grown', 'a', 'bit']]\n",
+ "[['for', 'him.', 'His', 'world', 'is', 'awash'], 'in', ['powerful,', 'conflicting', 'emotions:', 'the', 'realization,', 'presumably,']]\n",
+ "[['optimism', 'that', 'he', 'has', 'unleashed,', 'evident'], 'in', ['the', 'crowds', 'he', 'is', 'drawing', '(and']]\n",
+ "[['government', 'and', 'deal', 'with', 'a', 'transition'], 'in', ['such', 'a', 'difficult', 'time.', 'All', 'of']]\n",
+ "[['woman', 'who', 'played', 'a', 'large', 'role'], 'in', ['raising', 'him,', 'his', 'grandmother,', 'is', 'approaching']]\n",
+ "[['he', \"hadn't\", 'held', 'a', 'news', 'conference'], 'in', ['weeks.', '\"I', 'will,\"', 'Obama', 'said.', '\"On']]\n",
+ "[['Wednesday.\"', 'After', 'years', 'of', 'unfettered', 'growth'], 'in', ['military', 'budgets,', 'Defense', 'Department', 'planners,', 'top']]\n",
+ "[['figure,', 'supplemental', 'spending', 'for', 'the', 'wars'], 'in', ['Iraq', 'and', 'Afghanistan', 'has', 'topped', '$100']]\n",
+ "[['has', 'warned', 'against', 'repeating', 'historic', 'trends,'], 'in', ['which', 'the', 'nation', 'cut', 'money', 'for']]\n",
+ "[['War', 'I,', 'after', 'World', 'War', 'II,'], 'in', ['certain', 'ways', 'after', 'Korea,', 'certainly', 'after']]\n",
+ "[['1960,', 'when', 'John', 'F.', 'Kennedy', 'won'], 'in', ['part', 'because', 'of', 'the', 'increasingly', 'popular']]\n",
+ "[['has', 'become', 'a', 'kind', 'of', 'hybrid'], 'in', ['which', 'the', 'dividing', 'line', 'between', 'online']]\n",
+ "[['2008', 'election', 'simply', 'were', 'not', 'around'], 'in', ['2004.', 'YouTube', 'did', 'not', 'exist,', 'and']]\n",
+ "[['their', 'political', 'news.', 'When', 'viewers', 'settle'], 'in', ['Tuesday', 'night', 'to', 'watch', 'the', 'election']]\n",
+ "[['allowing', 'their', 'content', 'to', 'be', 'used'], 'in', ['unanticipated', 'ways,', 'and', 'in', 'many', 'efforts,']]\n",
+ "[['be', 'used', 'in', 'unanticipated', 'ways,', 'and'], 'in', ['many', 'efforts,', 'breaking', 'out', 'of', 'the']]\n",
+ "[['a', 'total', 'audience', 'of', '38', 'million'], 'in', ['prime', 'time,', 'compared', 'with', '17', 'million']]\n",
+ "[['be', 'tighter.', 'On', 'a', 'historic', 'night'], 'in', ['August,', 'when', 'a', 'black', 'man', 'became']]\n",
+ "[['CNN.', '\"Some', 'of', 'this', 'began', 'back'], 'in', ['2006,', 'but', 'I', 'think', 'that', 'cable']]\n",
+ "[['\"Saturday', 'Night', 'Live,\"', 'that', 'defined', 'her'], 'in', ['the', 'public', 'imagination.', 'When', \"Obama's\", 'campaign']]\n",
+ "[['habit', 'of', 'running', 'against', 'the', 'media'], 'in', ['elections', 'past.', 'This', 'year,', 'the', 'mainstream']]\n",
+ "[['social', 'network', 'that', 'would', 'flank,', 'and'], 'in', ['some', 'cases', 'outflank,', 'traditional', 'news', 'media.']]\n",
+ "[['content.', 'A', 'video', 'titled', '\"Four', 'Days'], 'in', ['Denver\"', 'about', 'the', 'Obama', 'campaign', 'had']]\n",
+ "[['backstage', 'making', 'ready', 'for', 'their', 'moment'], 'in', ['the', 'spotlight.', 'It', 'looked', 'like', 'a']]\n",
+ "[['biographical', 'videos', 'and', 'Web-only', 'recordings.', 'McCain,'], 'in', ['part', 'because', 'he', 'appealed', 'to', 'a']]\n",
+ "[['A', 'Pew', 'Research', 'Center', 'survey', 'conducted'], 'in', ['October', 'found', 'that', '39', 'percent', 'of']]\n",
+ "[['YouTube', 'channel', 'and', 'was', 'turned', 'loose'], 'in', ['Web', 'extras.', 'But', 'network', 'news', 'divisions']]\n",
+ "[['almost', 'anyone', 'can', 'check', 'voter', 'turnout'], 'in', ['certain', 'neighborhoods', 'in', 'Cuyahoga', 'County,', 'I']]\n",
+ "[['check', 'voter', 'turnout', 'in', 'certain', 'neighborhoods'], 'in', ['Cuyahoga', 'County,', 'I', \"don't\", 'think', 'everyone']]\n",
+ "[['to', 'be', 'spoon-fed', 'the', 'election', 'results'], 'in', ['the', 'order', 'Brian', 'Williams', 'thinks', 'is']]\n",
+ "[['referring', 'to', 'a', 'closely', 'watched', 'county'], 'in', ['Ohio.', 'Perhaps', 'the', 'only', 'thing', 'that']]\n",
+ "[['Jurkowitz,', 'of', 'the', 'Project', 'for', 'Excellence'], 'in', ['Journalism.', '\"Nobody', 'reports,', 'you', 'decide.\"', 'Much']]\n",
+ "[['--', 'and', 'victory', 'for', 'their', 'group'], 'in', ['elections', 'next', 'year.', '\"We', 'are', 'starting']]\n",
+ "[['want', 'to', 'become', 'the', 'next', 'government,'], 'in', ['the', 'provinces', 'and', 'nationally,\"', 'Mbhazima', 'Shilowa,']]\n",
+ "[['Indeed,', 'this', 'weekend', 'may', 'go', 'down'], 'in', ['South', 'African', 'history', 'as', 'a', 'watershed,']]\n",
+ "[['insurrection', 'is', 'thought', 'to', 'be', 'biggest'], 'in', ['the', 'provinces', 'of', 'Eastern', 'Cape,', 'Western']]\n",
+ "[['worried,', 'they', 'manage', 'a', 'brave', 'face'], 'in', ['public.', '\"The', 'wealthy', 'gathered', 'yesterday', 'at']]\n",
+ "[['gathered', 'yesterday', 'at', 'their', 'fancy', 'convention\"'], 'in', ['the', 'suburbs,', 'Jacob', 'Zuma,', 'the', 'party']]\n",
+ "[['derisively', 'remarked', 'Sunday', 'at', 'a', 'rally'], 'in', ['the', 'township', 'of', 'Soweto', 'that', 'drew']]\n",
+ "[['opposition', 'party', 'with', 'the', 'second-most', 'seats'], 'in', ['Parliament', '--', 'hinted', 'that', 'a', 'broad']]\n",
+ "[['anti-ANC', 'coalition', 'was', 'possible.', 'Zuma,', 'speaking'], 'in', ['Soweto,', 'seized', 'on', 'the', 'notion', 'of']]\n",
+ "[['a', 'baseball', 'cap,', 'and', 'speaking', 'mostly'], 'in', ['Zulu,', 'Zuma', 'presented', 'himself', 'as', 'more']]\n",
+ "[['opponents', 'at', 'the', 'Sandton', 'Convention', 'Center,'], 'in', ['a', 'well-to-do', 'Johannesburg', 'suburb', 'and', 'part']]\n",
+ "[['Trays', 'of', 'cookies', 'sat', 'on', 'pedestals'], 'in', ['the', 'lobbies', 'of', 'the', 'convention', 'hall.']]\n",
+ "[['public.', 'The', 'breakaway', 'party', 'has', 'been'], 'in', ['the', 'works', 'for', 'about', 'a', 'month,']]\n",
+ "[['Mbeki', 'has', 'played', 'no', 'visible', 'role'], 'in', ['the', 'breakaway', 'faction,', 'but', 'many', 'of']]\n",
+ "[['be', 'officially', 'established', 'on', 'Dec.', '16'], 'in', ['Bloemfontein,', 'where', 'the', 'ANC,', \"Africa's\", 'oldest']]\n",
+ "[[\"Africa's\", 'oldest', 'liberation', 'movement,', 'was', 'formed'], 'in', ['1912.', 'A', 'name', 'for', 'the', 'new']]\n",
+ "[['the', 'new', 'party', 'will', 'be', 'selected'], 'in', ['the', 'next', 'few', 'days,', 'he', 'said.']]\n",
+ "[['the', 'ANC', 'has', 'gone', 'to', 'court'], 'in', ['an', 'attempt', 'to', 'stop', 'use', 'of']]\n",
+ "[['one', 'of', 'the', 'biggest', 'spending', 'sprees'], 'in', ['corporate', 'history', 'for', 'nearly', 'three', 'years,']]\n",
+ "[['funds', 'and', 'college', 'endowments', 'that', 'invested'], 'in', ['these', 'funds', 'in', 'recent', 'years', 'hoping']]\n",
+ "[['endowments', 'that', 'invested', 'in', 'these', 'funds'], 'in', ['recent', 'years', 'hoping', 'for', 'big', 'returns']]\n",
+ "[['16', 'percent', 'of', 'the', '$4.83', 'trillion'], 'in', ['all', 'the', 'deals', 'made', 'globally', 'that']]\n",
+ "[['Afterward,', 'private', 'equity', 'players', 'were', 'called'], 'in', ['front', 'of', 'Congress', 'and', 'movies', 'like']]\n",
+ "[['suffer', 'nearly', 'as', 'much', 'as', 'those'], 'in', ['the', 'late', '1980s,', 'because', 'the', 'firms']]\n",
+ "[['make', 'their', 'debt', 'payments.', 'For', 'example,'], 'in', ['an', 'effort', 'to', 'save', 'cash,', 'six']]\n",
+ "[['hedge', 'funds,', 'private', 'equity', 'may', 'be'], 'in', ['a', 'better', 'place\"', 'because', 'of', 'its']]\n",
+ "[['While', 'some', 'companies', 'may', 'find', 'themselves'], 'in', ['trouble,', 'he', 'said,', 'many', 'more', 'will']]\n",
+ "[['able', 'to', 'ride', 'out', 'a', 'downturn'], 'in', ['the', 'economy', 'because', 'of', 'the', 'lax']]\n",
+ "[['were', 'at', 'when', 'Blackstone', 'went', 'public'], 'in', ['June', '2007.', '(Fortress', 'Investment', 'Group,', 'another']]\n",
+ "[['from', 'its', 'initial', 'price', 'of', '$35'], 'in', ['February', '2007.)', 'Lerner,', 'of', 'the', 'Harvard']]\n",
+ "[['about', 'the', 'compensation', 'and', 'fee', 'structure\"'], 'in', ['the', 'industry.', 'The', 'firms', 'generally', 'take']]\n",
+ "[['was', 'acquired,', 'it', 'reported', '$2.1', 'million'], 'in', ['long-term', 'debt;', 'by', 'Dec.', '31,', '2007,']]\n",
+ "[['private', 'equity-backed', 'companies', 'have', 'recently', 'plummeted'], 'in', ['value,', 'signaling', 'worries', 'about', 'their', 'solvency.']]\n",
+ "[['takeover,', 'the', 'company', 'reported', '$12.4', 'billion'], 'in', ['long-term', 'debt.', 'By', 'June', '30,', 'that']]\n",
+ "[['back', 'costs,', 'even', 'cutting', 'back', 'hours'], 'in', ['its', 'VIP', 'lounge', 'and', 'the', 'free']]\n",
+ "[['from', 'CreditSights,', 'a', 'research', 'firm,', 'wrote'], 'in', ['a', 'research', 'note', 'on', 'Oct.', '17']]\n",
+ "[['over', 'Washington.', 'Palin', 'addressed', 'large', 'crowds'], 'in', ['Florida,', 'North', 'Carolina', 'and', 'Virginia', 'on']]\n",
+ "[['on', 'Saturday,', 'and', 'made', 'several', 'appearances'], 'in', ['Ohio', 'on', 'Sunday.', 'Biden', 'spent', 'Saturday']]\n",
+ "[['that', 'the', 'candidates', 'are', 'appearing', 'only'], 'in', ['states', 'that', 'President', 'Bush', 'won', 'in']]\n",
+ "[['in', 'states', 'that', 'President', 'Bush', 'won'], 'in', ['2004.', 'The', 'Republican', 'ticket,', 'led', 'by']]\n",
+ "[['locked', 'up', 'the', 'states', 'they', 'won'], 'in', ['2004,', 'are', 'seeking', 'new', 'territory.', \"Palin's\"]]\n",
+ "[['the', 'help', 'of', 'broader', 'Democratic', 'majorities'], 'in', ['Congress.', '\"The', 'time', 'for', 'choosing', 'is']]\n",
+ "[['Palin', 'said', 'at', 'a', 'rally', 'Sunday'], 'in', ['Canton,', 'Ohio.', '\"We', 'believe', 'in', 'the']]\n",
+ "[['Sunday', 'in', 'Canton,', 'Ohio.', '\"We', 'believe'], 'in', ['the', 'forward', 'movement', 'of', 'freedom,', 'not']]\n",
+ "[['of', 'government.\"', \"Biden's\", 'message', 'has', 'evolved'], 'in', ['recent', 'days,', 'from', 'harsh', 'attacks', 'on']]\n",
+ "[['and', 'economic', 'policies.', 'He', 'says', 'that'], 'in', ['their', 'desperation,', 'McCain', 'and', 'Palin', 'are']]\n",
+ "[['we', 'reach', 'out', 'to', 'those', 'people'], 'in', ['the', 'parking', 'lot,\"', 'Biden', 'added,', 'referring']]\n",
+ "[['Security.', '(Biden', 'did', 'the', 'same', 'thing'], 'in', ['Florida', 'last', 'week.)', 'In', 'Virginia,', 'she']]\n",
+ "[['first', 'wife', 'and', 'a', 'young', 'daughter'], 'in', ['a', 'car', 'accident', 'in', '1972.', 'When']]\n",
+ "[['young', 'daughter', 'in', 'a', 'car', 'accident'], 'in', ['1972.', 'When', 'Biden', 'takes', 'the', 'stage']]\n",
+ "[['say', 'such', 'nice', 'things', 'about', 'me'], 'in', ['public.\"', 'Biden', 'regularly', 'warns', 'against', 'complacency']]\n",
+ "[['warns', 'against', 'complacency', 'and', 'urges', 'those'], 'in', ['the', 'audience', 'who', 'have', 'not', 'voted']]\n",
+ "[['many', 'as', 'five', 'rallies', 'a', 'day'], 'in', ['as', 'many', 'cities.', 'A', 'week', 'ago,']]\n",
+ "[['Rodham', 'Clinton', 'of', 'New', 'York', 'did'], 'in', ['the', 'primaries,', 'Palin', 'dismisses', \"Obama's\", 'oratory']]\n",
+ "[['\"guts\"', 'when', 'applied', 'to', 'McCain.', 'Speaking'], 'in', ['Virginia', 'on', 'Saturday', 'night,', 'Palin', 'repeated']]\n",
+ "[['times.', 'Palin', 'singles', 'out', 'Biden', 'regularly'], 'in', ['her', 'remarks,', 'noting', 'that', 'he', 'once']]\n",
+ "[['pay', 'more', 'taxes,', 'and', 'recalling', 'that,'], 'in', ['a', 'verbal', 'slip,', 'Biden', 'said', 'that']]\n",
+ "[['Monday,', 'Palin', 'will', 'begin', 'her', 'day'], 'in', ['Ohio,', 'and', 'then', 'head', 'to', 'Missouri,']]\n",
+ "[['to', 'Anchorage,', 'travel', 'to', 'her', 'home'], 'in', ['Wasilla,', 'Alaska,', 'to', 'cast', 'her', 'vote,']]\n",
+ "[['will', 'start', 'Monday', 'with', 'a', 'speech'], 'in', [\"Lee's\", 'Summit,', 'Mo.,', 'then', 'appear', 'in']]\n",
+ "[['in', \"Lee's\", 'Summit,', 'Mo.,', 'then', 'appear'], 'in', ['Zanesville', 'and', 'Akron,', 'Ohio,', 'before', 'ending']]\n",
+ "[['ending', 'his', 'day', 'with', 'a', 'rally'], 'in', ['Philadelphia.', 'He', 'will', 'vote', 'in', 'his']]\n",
+ "[['rally', 'in', 'Philadelphia.', 'He', 'will', 'vote'], 'in', ['his', 'hometown', 'of', 'Wilmington,', 'Del.,', 'then']]\n",
+ "[['with', 'Obama', 'at', 'a', 'large', 'gathering'], 'in', ['Grant', 'Park.', 'Sandy', 'Hammargren', 'is', 'the']]\n",
+ "[['Bertha,', 'a', 'black', '10-foot-tall', 'model', 'locomotive,'], 'in', ['their', 'backyard', 'from', 'a', 'disparate', 'collection']]\n",
+ "[['space', 'inside', 'or', 'outside', 'their', 'home,'], 'in', ['southeast', 'Las', 'Vegas,', 'add', 'up', 'to']]\n",
+ "[['a', 'NASA', 'flight', 'surgeon', 'who', 'flew'], 'in', ['jets', 'with', 'the', 'likes', 'of', 'the']]\n",
+ "[['quirky', 'persona', 'helped', 'him', 'win', 'election'], 'in', ['1990', 'and', '1994', 'as', 'the', \"state's\"]]\n",
+ "[['no', 'duty', 'other', 'than', 'to', 'ascend'], 'in', ['the', 'event', 'of', 'the', \"governor's\", 'death']]\n",
+ "[['the', 'appointment.', 'Hammargren', 'ran', 'for', 'governor'], 'in', ['2000', 'but', 'did', 'not', 'earn', 'his']]\n",
+ "[['as', 'a', 'physician.', 'When', 'he', 'arrived'], 'in', ['Nevada', 'in', '1971,', 'he', 'was', 'one']]\n",
+ "[['physician.', 'When', 'he', 'arrived', 'in', 'Nevada'], 'in', ['1971,', 'he', 'was', 'one', 'of', 'only']]\n",
+ "[['was', 'one', 'of', 'only', 'two', 'neurosurgeons'], 'in', ['the', 'state', 'and', 'has', 'operated', 'on']]\n",
+ "[['attacked', 'on', 'stage', 'by', 'a', 'tiger'], 'in', ['2003.', 'Yet', 'that,', 'too,', 'got', 'Hammargren']]\n",
+ "[['wended', 'through', 'the', 'home,', 'many', 'took'], 'in', ['the', 'scenery', 'with', 'a', 'mixture', 'of']]\n",
+ "[['\"Oh', 'God,', \"what's\", 'going', 'to', 'be'], 'in', ['the', 'next', 'room?\"', 'asked', 'Darren', \"D'Amato,\"]]\n",
+ "[['such', 'an', 'eyesore', 'damages', 'home', 'values'], 'in', ['a', 'subdivision', 'of', 'half-acre', 'lots', 'with']]\n",
+ "[['the', 'pro-Kremlin', 'youth', 'group', 'Nashi', 'gathered'], 'in', ['front', 'of', 'the', 'United', 'States', 'Embassy']]\n",
+ "[['victims', 'and', 'charging', 'that', 'the', 'war'], 'in', ['Georgia', 'was', 'part', 'of', 'an', 'American']]\n",
+ "[['heavy', 'Russian', 'accent)', 'delivered', 'a', 'speech'], 'in', ['which', 'he', 'gloated', 'over', 'the', 'United']]\n",
+ "[['\"mark', 'of', 'the', 'beast,\"', 'as', 'referenced'], 'in', ['the', 'Bible.', '\"When', 'that', 'will', 'happen,']]\n",
+ "[['as', 'a', 'picture', 'of', 'the', 'globe'], 'in', ['chains', 'glowed', 'behind', 'him.', 'The', 'opinions']]\n",
+ "[['chains', 'glowed', 'behind', 'him.', 'The', 'opinions'], 'in', ['the', 'crowd', 'were', 'far', 'more', 'nuanced.']]\n",
+ "[['of', 'the', 'demonstrators,', 'men', 'and', 'women'], 'in', ['their', 'teens', 'and', 'early', '20s,', 'said']]\n",
+ "[['United', 'States', 'responsible', 'for', 'the', 'war'], 'in', ['Georgia,', 'saying', 'President', 'Mikheil', 'Saakashvili', 'of']]\n",
+ "[['of', 'America', 'here.\"', 'As', 'they', 'shivered'], 'in', ['the', 'wintry', 'rain,', 'nearly', 'everyone', 'had']]\n",
+ "[['by', 'Prime', 'Minister', 'Vladimir', 'V.', 'Putin'], 'in', ['a', 'televised', 'interview', 'this', 'fall,', 'that']]\n",
+ "[['interview', 'this', 'fall,', 'that', 'the', 'war'], 'in', ['Georgia', 'was', 'planned', 'to', 'increase', 'the']]\n",
+ "[['line', 'Friday', 'at', 'an', 'apple', 'orchard'], 'in', ['southwestern', 'Pennsylvania', 'when', 'she', 'met', 'a']]\n",
+ "[['too!\"', 'Seeing', 'Brown,', 'Palin', 'wrapped', 'her'], 'in', ['a', 'tight', 'hug.', '\"I', 'love', 'that']]\n",
+ "[['see', 'as', 'a', 'potential', 'first', 'friend'], 'in', ['the', 'White', 'House,', 'someone', 'poised', 'to']]\n",
+ "[['policy,', 'the', 'families', 'say', 'they', 'see'], 'in', ['Palin', 'someone', 'who', 'understands', 'their', 'struggles']]\n",
+ "[['say', '--', 'and', 'connects', 'with', 'them'], 'in', ['a', 'personal', 'way.', 'After', 'giving', 'that']]\n",
+ "[['that', 'policy', 'address', 'on', 'Oct.', '24,'], 'in', ['a', 'hotel', 'meeting', 'room', 'before', 'about']]\n",
+ "[['more', 'than', '8,000', 'people', 'last', 'week'], 'in', ['Jeffersonville,', 'Ind.,', 'Palin', 'had', 'just', 'begun']]\n",
+ "[['there', 'is', 'no', 'place', 'for', 'them'], 'in', ['the', 'life', 'of', 'our', 'country.', 'And']]\n",
+ "[['to', 'change', 'that.\"', 'The', 'crowd', 'erupted'], 'in', ['cheers.', 'Ignoring', 'her', 'teleprompter,', 'Palin', 'gazed']]\n",
+ "[['me', 'from', 'a', 'Down', 'syndrome', 'group'], 'in', ['Arizona.', 'You', 'know', 'how', 'we', 'have']]\n",
+ "[['it,', 'and', 'they', 'talked', 'about', 'it'], 'in', ['a', 'very', 'different', 'way.', 'And', 'that']]\n",
+ "[['among', 'them.', 'They', 'attended', 'a', 'rally'], 'in', ['Ohio', 'on', 'Sunday', 'afternoon', 'with', 'their']]\n",
+ "[['families', 'with', 'special-needs', 'children', 'have', 'kept'], 'in', ['touch', 'with', 'the', 'Palins', 'through', \"Palin's\"]]\n",
+ "[['celebrity,', 'if', 'you', 'will,', 'or', 'someone'], 'in', ['the', 'national', 'spotlight', 'brings', 'attention', 'to']]\n",
+ "[['drives', 'particularly', 'media', 'interest', 'and', 'interest'], 'in', ['the', 'general', 'public', 'to', 'learning', 'more']]\n",
+ "[['the', 'families', 'concerned.', 'After', 'a', 'rally'], 'in', ['an', 'airplane', 'hangar', 'Saturday', 'in', 'Polk']]\n",
+ "[['rally', 'in', 'an', 'airplane', 'hangar', 'Saturday'], 'in', ['Polk', 'City,', 'Fla.,', 'a', 'dozen', 'people']]\n",
+ "[['Polk', 'City,', 'Fla.,', 'a', 'dozen', 'people'], 'in', ['matching', 'yellow', 'T-shirts', 'from', \"Noah's\", 'Ark,']]\n",
+ "[['developmentally', 'delayed,', 'have', 'been', 'sharply', 'reduced'], 'in', ['recent', 'years.', '\"There\\'s', 'been', 'so', 'much']]\n",
+ "[['knowing', 'that', 'there', 'will', 'be', 'somebody'], 'in', ['office', 'who', 'cares', 'about', 'this.', 'That']]\n",
+ "[['more', 'than', '$200', 'million', 'of', 'stock'], 'in', ['his', 'companies', 'after', 'a', 'margin', 'call']]\n",
+ "[['drove', 'down', 'the', 'price', 'of', 'stock'], 'in', ['Viacom', 'and', 'CBS', 'to', 'a', 'level']]\n",
+ "[['he', 'would', 'not', 'sell', 'more', 'stock'], 'in', ['CBS', 'and', 'Viacom', 'to', 'cover', 'his']]\n",
+ "[['is', 'considering', 'selling', 'a', 'financial', 'interest'], 'in', ['National', 'Amusements,', 'the', 'family', 'holding', 'company']]\n",
+ "[['plans', 'to', 'live', 'forever,', 'the', 'breach'], 'in', ['his', 'lending', 'agreements', 'with', 'the', 'banks']]\n",
+ "[['Wall', 'Street', 'and', 'even', 'company', 'executives'], 'in', ['the', 'dark', 'about', 'his', 'financial', 'troubles.']]\n",
+ "[['private', 'company', 'with', 'a', 'controlling', 'interest'], 'in', ['CBS', 'and', 'Viacom', 'and', 'is', 'governed']]\n",
+ "[['was', 'forced', 'to', 'sell', '$233', 'million'], 'in', ['nonvoting', 'stock', 'in', 'CBS', 'and', 'Viacom']]\n",
+ "[['sell', '$233', 'million', 'in', 'nonvoting', 'stock'], 'in', ['CBS', 'and', 'Viacom', 'because', 'he', 'had']]\n",
+ "[['breached', 'his', 'covenants', 'on', '$1.6', 'billion'], 'in', ['loans', 'at', 'National', 'Amusements.', 'In', 'a']]\n",
+ "[['laws', 'that', 'restrict', 'insider', 'stock', 'sales'], 'in', ['the', 'weeks', 'before', 'earnings', 'are', 'released.)']]\n",
+ "[['risk', 'you', 'take', 'when', 'you', 'invest'], 'in', ['a', 'company', 'with', 'a', 'big', 'majority']]\n",
+ "[['In', '1983', 'he', 'began', 'buying', 'shares'], 'in', ['WMS', 'Industries,', \"Midway's\", 'predecessor,', 'and', 'has']]\n",
+ "[['predecessor,', 'and', 'has', 'been', 'a', 'shareholder'], 'in', ['the', 'company', 'ever', 'since', '--', 'a']]\n",
+ "[['his', 'first', 'divorce,', 'which', 'was', 'filed'], 'in', ['1999', 'and', 'settled', 'in', '2002.', 'Midway']]\n",
+ "[['was', 'filed', 'in', '1999', 'and', 'settled'], 'in', ['2002.', 'Midway', 'was', 'spun', 'off', 'from']]\n",
+ "[['WMS', 'Industries,', 'a', 'slot', 'machine', 'maker,'], 'in', ['1996', 'as', 'a', 'separate', 'public', 'company,']]\n",
+ "[['business.', '\"I', 'think', 'that', 'he', 'believed'], 'in', ['the', 'industry', 'so', 'much', 'so', 'that']]\n",
+ "[['company', 'that', 'was', 'solvent', 'that', 'was'], 'in', ['the', 'business', 'had', 'potential,\"', 'said', 'Pachter,']]\n",
+ "[['$1.8', 'billion.', 'Last', 'week,', 'when', 'shares'], 'in', ['Midway', 'traded', 'at', 'about', '80', 'cents']]\n",
+ "[['of', 'just', '$64', 'million.', 'Despite', 'this,'], 'in', ['March', 'Redstone', 'appeared', 'at', 'a', 'media']]\n",
+ "[['Redstone', 'appeared', 'at', 'a', 'media', 'conference'], 'in', ['Florida', 'hosted', 'by', 'Bear', 'Stearns', 'and']]\n",
+ "[['may', 'be', '--', 'it', 'was', 'stock'], 'in', ['Midway', 'that', 'Redstone', 'used', 'to', 'pay']]\n",
+ "[['settlement', 'with', 'his', 'first', 'wife,', 'Phyllis,'], 'in', ['2002.', 'After', 'doling', 'out', 'a', 'big']]\n",
+ "[['Meanwhile,', 'Redstone', 'has', 'shuffled', 'the', 'shares'], 'in', ['Midway', 'among', 'himself,', 'National', 'Amusements', 'and']]\n",
+ "[['2005', 'he', 'transferred', '33', 'million', 'shares'], 'in', ['Midway', 'to', 'National', 'Amusements,', 'in', 'exchange']]\n",
+ "[['shares', 'in', 'Midway', 'to', 'National', 'Amusements,'], 'in', ['exchange', 'for', 'National', 'assuming', 'responsibility', 'for']]\n",
+ "[['Redstone', 'and', 'his', 'daughter', 'have', 'engaged'], 'in', ['a', 'public', 'feud', 'for', 'more', 'than']]\n",
+ "[['two', 'sides', 'were', 'near', 'a', 'deal'], 'in', ['which', 'Shari', 'Redstone', 'would', 'trade', 'her']]\n",
+ "[['Shari', 'Redstone', 'would', 'trade', 'her', 'stake'], 'in', ['CBS', 'and', 'Viacom', 'for', 'complete', 'ownership']]\n",
+ "[['banks', 'to', 'restructure', 'some', '$1.6', 'billion'], 'in', ['debt', 'at', 'National', 'Amusements.', 'As', 'part']]\n",
+ "[['--', 'including', 'selling', 'a', 'minority', 'stake'], 'in', ['National', 'Amusements,', 'selling', 'pieces', 'of', 'the']]\n",
+ "[['theater', 'chain', 'business', 'or', 'selling', 'stakes'], 'in', ['WMS', 'Industries', 'and', 'Midway.', 'Meanwhile', 'shares']]\n",
+ "[['WMS', 'Industries', 'and', 'Midway.', 'Meanwhile', 'shares'], 'in', ['both', 'CBS', 'and', 'Viacom', 'have', 'tumbled.']]\n",
+ "[['have', 'suffered', 'from', 'the', 'general', 'malaise'], 'in', ['the', 'stock', 'market', 'and', 'fundamental', 'shifts']]\n",
+ "[['the', 'stock', 'market', 'and', 'fundamental', 'shifts'], 'in', ['the', 'media', 'industry.', 'Last', 'week,', 'CBS']]\n",
+ "[['now', 'spends', 'much', 'of', 'his', 'time'], 'in', ['his', 'gated', 'mansion', 'in', 'Beverly', 'Park,']]\n",
+ "[['his', 'time', 'in', 'his', 'gated', 'mansion'], 'in', ['Beverly', 'Park,', 'Calif.,', 'surrounded', 'by', 'tanks']]\n",
+ "[['plan', 'to', 'sell', 'any', 'more', 'shares'], 'in', ['CBS', 'or', 'Viacom.', '\"Let', 'me', 'make']]\n",
+ "[['certain', 'of,', 'whatever', 'actions', 'are', 'required,'], 'in', ['no', 'way', 'diminishes', 'my', 'optimism', 'of']]\n",
+ "[['half', 'of', 'all', 'voters', 'will', 'vote'], 'in', ['a', 'way', 'that', 'is', 'different', 'from']]\n",
+ "[['is', 'different', 'from', 'what', 'they', 'did'], 'in', ['the', 'last', 'presidential', 'election,', 'and', 'most']]\n",
+ "[['years', 'after', 'the', 'largest', 'federal', 'overhaul'], 'in', ['how', 'elections', 'are', 'run,', 'voting', 'experts']]\n",
+ "[['still', 'predicting', 'machine', 'and', 'ballot', 'shortages'], 'in', ['several', 'swing', 'states', 'and', 'late', 'tallies']]\n",
+ "[['made', 'an', 'error', '--', 'not', 'filling'], 'in', ['an', 'oval', 'properly,', 'for', 'example,', 'a']]\n",
+ "[['also', 'filed', 'lawsuits', 'against', 'election', 'officials'], 'in', ['Pennsylvania', 'and', 'Virginia,', 'saying', 'they', 'have']]\n",
+ "[['electronic', 'voting', 'machines', 'or', 'printed', 'ballots'], 'in', ['swing', 'states,', 'along', 'with', 'problems', 'verifying']]\n",
+ "[['fray', 'nerves.', '\"What', 'has', 'traditionally', 'happened'], 'in', ['this', 'country', 'is', 'that', 'a', 'change']]\n",
+ "[['this', 'country', 'is', 'that', 'a', 'change'], 'in', ['voting', 'equipment', 'happens', 'once', 'in', 'the']]\n",
+ "[['change', 'in', 'voting', 'equipment', 'happens', 'once'], 'in', ['the', 'lifetime', 'of', 'an', 'election', 'official,\"']]\n",
+ "[['percent', 'of', 'the', 'country', 'will', 'vote'], 'in', ['places', 'that', 'in', 'the', 'last', 'eight']]\n",
+ "[['country', 'will', 'vote', 'in', 'places', 'that'], 'in', ['the', 'last', 'eight', 'years', 'have', 'changed']]\n",
+ "[['over', 'Washington.', 'Palin', 'addressed', 'large', 'crowds'], 'in', ['Florida,', 'North', 'Carolina', 'and', 'Virginia', 'on']]\n",
+ "[['on', 'Saturday,', 'and', 'made', 'several', 'appearances'], 'in', ['Ohio', 'on', 'Sunday.', 'Biden', 'spent', 'Saturday']]\n",
+ "[['that', 'the', 'candidates', 'are', 'appearing', 'only'], 'in', ['states', 'that', 'President', 'Bush', 'won', 'in']]\n",
+ "[['in', 'states', 'that', 'President', 'Bush', 'won'], 'in', ['2004.', \"Palin's\", 'message,', 'at', 'its', 'heart,']]\n",
+ "[['the', 'help', 'of', 'broader', 'Democratic', 'majorities'], 'in', ['Congress.', '\"The', 'time', 'for', 'choosing', 'is']]\n",
+ "[['Palin', 'said', 'at', 'a', 'rally', 'Sunday'], 'in', ['Canton,', 'Ohio.', '\"We', 'believe', 'in', 'the']]\n",
+ "[['Sunday', 'in', 'Canton,', 'Ohio.', '\"We', 'believe'], 'in', ['the', 'forward', 'movement', 'of', 'freedom,', 'not']]\n",
+ "[['of', 'government.\"', \"Biden's\", 'message', 'has', 'evolved'], 'in', ['recent', 'days,', 'from', 'harsh', 'attacks', 'on']]\n",
+ "[['and', 'economic', 'policies.', 'He', 'says', 'that'], 'in', ['their', 'desperation,', 'McCain', 'and', 'Palin', 'are']]\n",
+ "[['many', 'as', 'five', 'rallies', 'a', 'day'], 'in', ['as', 'many', 'cities.', 'Their', 'exhaustion', 'is']]\n",
+ "[['Monday,', 'Palin', 'will', 'begin', 'her', 'day'], 'in', ['Ohio,', 'and', 'then', 'head', 'to', 'Missouri,']]\n",
+ "[['to', 'Anchorage,', 'travel', 'to', 'her', 'home'], 'in', ['Wasilla,', 'Alaska,', 'to', 'cast', 'her', 'vote,']]\n",
+ "[['will', 'start', 'Monday', 'with', 'a', 'speech'], 'in', [\"Lee's\", 'Summit,', 'Mo.,', 'then', 'appear', 'in']]\n",
+ "[['in', \"Lee's\", 'Summit,', 'Mo.,', 'then', 'appear'], 'in', ['Zanesville', 'and', 'Akron,', 'Ohio,', 'before', 'ending']]\n",
+ "[['ending', 'his', 'day', 'with', 'a', 'rally'], 'in', ['Philadelphia.', 'He', 'will', 'vote', 'in', 'his']]\n",
+ "[['rally', 'in', 'Philadelphia.', 'He', 'will', 'vote'], 'in', ['his', 'hometown', 'of', 'Wilmington,', 'Del.,', 'then']]\n",
+ "[['with', 'Obama', 'at', 'a', 'large', 'gathering'], 'in', ['Grant', 'Park.', 'When', 'did', 'CBS,', 'the']]\n",
+ "[['When', 'did', 'CBS,', 'the', 'network', 'awash'], 'in', ['cop', 'shows', 'featuring', 'leading', 'men', 'in']]\n",
+ "[['in', 'cop', 'shows', 'featuring', 'leading', 'men'], 'in', ['their', '50s,', 'become', 'the', 'hot', 'network']]\n",
+ "[['CBS', 'has', 'twice', 'as', 'many', 'shows'], 'in', ['the', 'Top', '20', 'ranking', 'among', 'young']]\n",
+ "[['been', 'beating', 'ABC,', 'NBC', 'and', 'Fox,'], 'in', ['that', 'ratings', 'competition', 'every', 'week', 'this']]\n",
+ "[['course,', 'CBS', 'has', 'also', 'been', 'winning'], 'in', ['the', 'somewhat', 'older', 'group,', '25-to-54-year', 'olds,']]\n",
+ "[['of', 'so-called', 'people', 'meter', 'ratings', 'system'], 'in', ['1987.', 'The', 'secret,', 'at', 'least', 'as']]\n",
+ "[['and', 'sitcoms', 'that', 'are', 'reliably', 'funny'], 'in', ['unchallenging', 'ways,', 'seems', 'to', 'be', 'becoming']]\n",
+ "[['down.', 'CBS', 'is', 'not', 'actually', 'up'], 'in', ['the', 'ratings.', 'It', 'is', 'down,', 'marginally,']]\n",
+ "[['system.', 'That', 'ratings', 'system', 'itself', 'is'], 'in', ['the', 'midst', 'of', 'upheaval', 'because', 'of']]\n",
+ "[['serious', 'hits', 'almost', 'across', 'the', 'board'], 'in', ['terms', 'of', 'traditional', 'program', 'ratings,', 'points']]\n",
+ "[['the', 'president', 'of', 'ABC', 'Entertainment,', 'said'], 'in', ['an', 'e-mail', 'message.', 'That', 'may', 'prove']]\n",
+ "[['are', 'the', 'two', 'most', 'important', 'shows'], 'in', ['America', 'right', 'now,\"', 'said', 'Ben', 'Silverman,']]\n",
+ "[['while', 'other', 'networks', 'let', 'shows', 'lapse'], 'in', ['production.', 'Both', 'ABC', 'and', 'NBC', 'had']]\n",
+ "[['may', 'move', 'away', 'from', 'serialized', 'shows'], 'in', ['the', 'DVR', 'era,', 'both', 'because', 'viewers']]\n",
+ "[['of', 'serialized', 'shows', 'to', 'watch', 'them'], 'in', ['8-to-10', 'episode', 'bursts,', 'and', 'because', 'the']]\n",
+ "[['may', 'be', 'putting', 'some', 'extra', 'fear'], 'in', ['his', 'rivals', 'by', 'floating', 'the', 'idea']]\n",
+ "[['\"Idol\"', 'this', 'time', 'around', '--', 'as'], 'in', ['move', 'one', 'of', 'two', 'weekly', 'editions']]\n",
+ "[['\"that', 'we', 'would', 'take', 'a', 'haircut'], 'in', ['ratings\"', 'for', '\"House\"', 'because', 'viewing', 'levels']]\n",
+ "[['NBC', 'made', 'another', 'big', 'strategic', 'move'], 'in', ['slotting', 'three', 'weeks', 'of', 'special', 'election-based']]\n",
+ "[['rebuild', 'comedy', '--', 'which', 'has', 'been'], 'in', ['reverse', 'for', 'most', 'of', 'this', 'decade']]\n",
+ "[['Adam', \"Aigner-Treworgy's\", 'belongings', 'have', 'been', 'stowed'], 'in', ['the', 'back', 'seat', 'of', 'his', 'silver']]\n",
+ "[['to', 'cover', 'Sen.', 'John', \"McCain's\", 'campaign'], 'in', ['January,', 'his', 'sister', 'packed', 'up', 'his']]\n",
+ "[['his', 'sister', 'packed', 'up', 'his', 'apartment'], 'in', ['Washington,', 'D.C.', '\"I', 'sold', 'as', 'much']]\n",
+ "[['campaign.', 'On', 'a', 'rare', 'free', 'day'], 'in', ['the', 'spring,', 'he', 'drove', 'the', 'car,']]\n",
+ "[['gas', 'gauge,', 'to', 'his', \"mother's\", 'garage'], 'in', ['Boston,', 'where', 'it', 'remains.', 'This', 'month,']]\n",
+ "[['and', 'that', 'means', 'finding', 'a', 'job'], 'in', ['an', 'economy', 'that', 'is', 'gloomy', 'across']]\n",
+ "[['--', 'to', 'shadow', 'them,', 'video', 'camera'], 'in', ['hand', 'and', 'laptop', 'in', 'backpack.', 'After']]\n",
+ "[['video', 'camera', 'in', 'hand', 'and', 'laptop'], 'in', ['backpack.', 'After', 'each', 'campaign', 'event,', 'the']]\n",
+ "[['\"For', 'so', 'long,', 'this', 'has', 'been'], 'in', ['the', 'distance.', 'Now', \"it's\", 'real,', 'now']]\n",
+ "[['times', 'has', 'Obama', 'been', 'to', 'Florida'], 'in', ['the', 'general', 'election?\"', 'Mike', 'Memoli,', 'who']]\n",
+ "[['the', 'NBC', 'journalists', 'who', 'were', 'hired'], 'in', ['conjunction', 'with', 'National', 'Journal', 'to', 'follow']]\n",
+ "[['on', 'this', 'campaign,', 'and', 'the', \"economy's\"], 'in', ['the', 'tank,', 'so', \"there's\", 'not', 'that']]\n",
+ "[['know', 'what', 'he', 'will', 'be', 'doing'], 'in', ['two', 'weeks,', 'he', 'has', 'started', 'looking']]\n",
+ "[['started', 'looking', 'for', 'a', 'new', 'apartment'], 'in', ['Washington.', 'He', 'is', 'looking', 'forward', 'to']]\n",
+ "[['He', 'is', 'looking', 'forward', 'to', 'being'], 'in', ['the', 'same', 'place', 'for', 'more', 'than']]\n",
+ "[['an', 'hour.', '\"We\\'re', 'on', 'a', 'bus'], 'in', ['Iowa', '--', 'I', 'mean', 'Ohio,\"', 'Aigner-Treworgy']]\n",
+ "[['countries', 'to', 'take', 'an', 'expanded', 'role'], 'in', ['financing', 'the', \"IMF's\", 'activities', 'as', 'the']]\n",
+ "[['Reuters', 'quoted', 'Brown', 'as', 'telling', 'reporters'], 'in', ['the', 'Saudi', 'capital,', 'Riyadh,', 'after', 'weekend']]\n",
+ "[['$1', 'trillion', 'from', 'higher', 'oil', 'prices'], 'in', ['recent', 'years,', 'are', 'in', 'a', 'position']]\n",
+ "[['oil', 'prices', 'in', 'recent', 'years,', 'are'], 'in', ['a', 'position', 'to', 'contribute.\"', 'The', 'IMF']]\n",
+ "[['The', 'IMF', 'has', 'committed', '$30', 'billion'], 'in', ['the', 'last', 'few', 'weeks', 'in', 'bailout']]\n",
+ "[['billion', 'in', 'the', 'last', 'few', 'weeks'], 'in', ['bailout', 'packages', 'for', 'Hungary,', 'Iceland', 'and']]\n",
+ "[['as', 'a', 'result', 'of', 'the', 'turmoil'], 'in', ['the', 'global', 'markets.', 'The', 'fund,', 'a']]\n",
+ "[['group,', 'has', 'more', 'than', '$200', 'billion'], 'in', ['resources', 'and', 'can', 'draw', 'on', 'additional']]\n",
+ "[['nationalize', 'one', 'of', 'the', 'smaller', 'lenders'], 'in', ['the', 'country,', 'Banco', 'Portugues', 'de', 'Negocios.']]\n",
+ "[['override', 'its', 'mandate', 'to', 'keep', 'inflation'], 'in', ['check.', 'The', 'monetary', 'authorities', 'in', 'Beijing']]\n",
+ "[['inflation', 'in', 'check.', 'The', 'monetary', 'authorities'], 'in', ['Beijing', 'cut', 'interest', 'rates', 'on', 'Wednesday']]\n",
+ "[['on', 'Wednesday', 'for', 'the', 'third', 'time'], 'in', ['two', 'months.', 'In', 'Mumbai,', 'the', 'Reserve']]\n",
+ "[['The', 'networks', 'learned', 'a', 'hard', 'lesson'], 'in', ['2000', 'when', 'they', 'erroneously', 'called', 'the']]\n",
+ "[[\"NBC's\", 'Phil', 'Alongi', 'said.', 'He', 'was'], 'in', ['the', 'NBC', 'News', 'control', 'booth', 'that']]\n",
+ "[['guru', 'David', 'Bohrman', 'said,', '\"We\\'re', 'not'], 'in', ['a', 'hurry.', 'Our', 'plan', 'is', 'to']]\n",
+ "[['gathered', 'from', '40', 'tiny', 'cameras', 'placed'], 'in', ['a', 'circle', 'around', 'the', 'individual.', 'They']]\n",
+ "[['irregularities.', 'The', 'networks', 'promise', 'state-by-state', 'results'], 'in', ['real', 'time,', 'down', 'to', 'the', 'county']]\n",
+ "[['headlines', 'on', 'Twitter', 'and', 'mobile-phone', 'updates'], 'in', ['addition', 'to', 'Jim', \"Lehrer's\", '\"Newshour\"', 'coverage.']]\n",
+ "[['that', 'could', 'be', 'the', 'deciding', 'factor'], 'in', ['this', 'election.', 'MTV', 'is', 'going', 'all']]\n",
+ "[['vice', 'president', 'of', 'DisplaySearch,', 'unit', 'sales'], 'in', ['the', 'United', 'States', 'of', 'LCD', 'TVs']]\n",
+ "[['of', 'LCD', 'TVs', 'increased', '22', 'percent'], 'in', ['September', 'compared', 'with', 'the', 'same', 'month']]\n",
+ "[['September', 'compared', 'with', 'the', 'same', 'month'], 'in', ['2007;', 'but', 'that', 'was', 'less', 'than']]\n",
+ "[['less', 'than', 'the', '28', 'percent', 'increase'], 'in', ['August,', 'and', \"July's\", '32', 'percent', 'gain.']]\n",
+ "[['(The', 'data', 'does', 'not', 'include', 'sales'], 'in', ['Wal-Mart', 'and', 'club', 'stores', 'like', 'Costco.)']]\n",
+ "[['Semenza', 'said.', '\"There', 'is', 'a', 'whisper'], 'in', ['the', 'industry', 'that', 'the', 'retailers', 'are']]\n",
+ "[['speak', 'of', 'LCD', 'and', 'plasma', 'TVs'], 'in', ['the', '42-inch', 'range', 'as', 'their', '\"sweet']]\n",
+ "[['wish.', 'The', 'most', 'popular', 'TVs', 'are'], 'in', ['the', '30-inch', 'to', '34-inch', 'range.', 'They']]\n",
+ "[['seasonal', 'hires.', 'Best', \"Buy's\", 'comparable-store', 'sales'], 'in', ['September', 'dropped', '2', 'percent', 'from', 'the']]\n",
+ "[['the', 'brand.', 'But', 'not', 'everyone', 'believes'], 'in', ['bundling.', '\"Putting', 'a', 'bundle', 'out', 'is']]\n",
+ "[['which', 'sells', 'the', 'most', 'flat-panel', 'TVs'], 'in', ['the', 'United', 'States,', 'sees', 'consumers', 'deserting']]\n",
+ "[['this', 'year', 'is', 'selling', 'LCD', 'TVs'], 'in', ['the', '19-,', '26-', 'and', '32-inch', 'sizes.']]\n",
+ "[['are', 'hundreds', 'of', 'dollars', 'of', 'difference'], 'in', ['price', 'between', 'these', 'and', 'step-up', 'models,\"']]\n",
+ "[['see', 'as', 'a', 'potential', 'first', 'friend'], 'in', ['the', 'White', 'House,', 'someone', 'poised', 'to']]\n",
+ "[['policy,', 'the', 'families', 'say', 'they', 'see'], 'in', ['Palin', 'someone', 'who', 'understands', 'their', 'struggles']]\n",
+ "[['say', '--', 'and', 'connects', 'with', 'them'], 'in', ['a', 'personal', 'way.', 'After', 'a', 'rally']]\n",
+ "[['a', 'personal', 'way.', 'After', 'a', 'rally'], 'in', ['an', 'airplane', 'hangar', 'Saturday', 'in', 'Polk']]\n",
+ "[['rally', 'in', 'an', 'airplane', 'hangar', 'Saturday'], 'in', ['Polk', 'City,', 'Fla.,', 'a', 'dozen', 'people']]\n",
+ "[['Polk', 'City,', 'Fla.,', 'a', 'dozen', 'people'], 'in', ['matching', 'yellow', 'T-shirts', 'from', \"Noah's\", 'Ark,']]\n",
+ "[['developmentally', 'delayed,', 'have', 'been', 'sharply', 'reduced'], 'in', ['recent', 'years.', '\"There\\'s', 'been', 'so', 'much']]\n",
+ "[['knowing', 'that', 'there', 'will', 'be', 'somebody'], 'in', ['office', 'who', 'cares', 'about', 'this.', 'That']]\n",
+ "[['Bertha,', 'a', 'black', '10-foot-tall', 'model', 'locomotive,'], 'in', ['their', 'backyard', 'from', 'a', 'disparate', 'collection']]\n",
+ "[['a', 'NASA', 'flight', 'surgeon', 'who', 'flew'], 'in', ['jets', 'with', 'the', 'likes', 'of', 'the']]\n",
+ "[['space', 'inside', 'or', 'outside', 'their', 'home,'], 'in', ['southeast', 'Las', 'Vegas,', 'add', 'up', 'to']]\n",
+ "[['The', 'Web', 'servers', 'have', 'been', 'adjusted'], 'in', ['preparation', 'for', 'a', 'great', 'influx', 'of']]\n",
+ "[['the', 'most', 'popular', 'news', 'Web', 'sites'], 'in', ['the', 'country,', 'has', 'repeatedly', 'broken', 'its']]\n",
+ "[['elections.', 'Web', 'sites', '\"put', 'the', 'data'], 'in', ['the', 'hands', 'of', 'the', 'audience,\"', 'said']]\n",
+ "[['rely', 'on', \"AP's\", 'projections', 'of', 'winners'], 'in', ['each', 'state;', 'its', 'breaking', 'news', 'blog']]\n",
+ "[['million', 'page', 'views', 'on', 'election', 'day'], 'in', ['2004', 'and', '142', 'million', 'the', 'day']]\n",
+ "[['perhaps', 'three', 'times', 'as', 'much', 'traffic'], 'in', ['2008,\"', 'Khemlani', 'said.', 'Helped', 'by', 'interest']]\n",
+ "[['2008,\"', 'Khemlani', 'said.', 'Helped', 'by', 'interest'], 'in', ['the', 'election,', 'Yahoo', 'News', 'had', '38']]\n",
+ "[['Yahoo', 'News', 'had', '38', 'million', 'visitors'], 'in', ['September,', 'according', 'to', 'Nielsen', 'Online.', 'Although']]\n",
+ "[['Although', 'Yahoo', 'News', 'usually', 'ranks', 'No.1'], 'in', [\"Nielsen's\", 'list', 'of', 'online', 'news', 'outlets,']]\n",
+ "[[\"MSNBC.com's\", 'network', 'of', 'sites', 'surpassed', 'Yahoo'], 'in', ['September', 'with', '43.2', 'million', 'visitors.', \"CNN.com's\"]]\n",
+ "[['on', 'the', 'Internet', 'is', 'first', 'thing'], 'in', ['the', 'morning,\"', 'Lufkin', 'said.', 'Aug.', '29,']]\n",
+ "[['Convention,', 'was', 'the', 'highest', 'traffic', 'day'], 'in', ['the', '13-year', 'history', 'of', 'Yahoo', 'News,']]\n",
+ "[['the', 'amount', 'of', 'traffic', 'it', 'had'], 'in', ['all', 'of', '2004,', 'according', 'to', 'internal']]\n",
+ "[['for', 'free?', 'When', 'Frank', 'magazine', 'arrived'], 'in', ['Ottawa', 'in', '1989,', 'it', 'enjoyed', 'a']]\n",
+ "[['When', 'Frank', 'magazine', 'arrived', 'in', 'Ottawa'], 'in', ['1989,', 'it', 'enjoyed', 'a', 'near', 'monopoly']]\n",
+ "[['magazine,', 'which', 'once', 'took', 'unvarnished', 'delight'], 'in', ['the', 'failings', 'of', 'others,', 'stopped', 'publishing.']]\n",
+ "[['Private', 'Eye.', 'Both', 'rejected', 'glossy', 'paper'], 'in', ['favor', 'of', 'cheap', 'newsprint', 'and', 'added']]\n",
+ "[['magazine', 'was', 'despised', 'and', 'read,', 'often'], 'in', ['equal', 'measures,', 'by', 'many', 'Canadian', 'journalists,']]\n",
+ "[['a', '\"gentlemen\\'s', 'club\"', 'among', 'political', 'journalists'], 'in', ['Canada.', 'It', 'was,', 'he', 'said,', 'an']]\n",
+ "[['said,', 'an', 'informal', 'alliance', 'that', 'traded'], 'in', ['embarrassing', 'personal', 'stories', 'about', 'politicians', 'while']]\n",
+ "[['Black,', 'the', 'former', 'Canadian', 'publisher', 'now'], 'in', ['a', 'Florida', 'prison,', 'for', 'example,', 'was']]\n",
+ "[['for', 'publishers', 'to', 'defend', 'libel', 'lawsuits'], 'in', ['Canada,', 'they', 'were', 'a', 'constant', 'drain']]\n",
+ "[['have', 'taken', 'place,', 'the', 'judge', 'was'], 'in', ['Israel', 'with', 'his', 'church', 'choir.', 'Frank']]\n",
+ "[['the', 'boundaries', 'of', 'good', 'taste.', 'Late'], 'in', ['his', 'tenure', 'as', 'prime', 'minister,', 'Brian']]\n",
+ "[['these', 'people.\"', 'Although', 'Mulroney', 'left', 'politics'], 'in', ['1993,', 'Bate', 'is', 'nostalgic', 'about', 'his']]\n",
+ "[['\"They\\'re', 'a', 'bunch', 'of', 'ciphers.', \"We're\"], 'in', ['Ottawa,', \"we're\", 'a', 'political', 'satire', 'magazine,']]\n",
+ "[['the', 'right', 'time', 'to', 'be', 'dancing'], 'in', ['the', 'streets', 'and', 'celebrating', 'banking.\"', 'Richard']]\n",
+ "[['embarrassed', 'business', 'editor', 'knows.', 'For', 'example,'], 'in', ['2001,', 'Fortune', 'put', 'Enron', 'on', 'its']]\n",
+ "[['20.', 'But', 'it', 'is', 'honoring', 'Lewis'], 'in', ['style.', 'Its', 'party', 'for', 'the', 'bankers']]\n",
+ "[['series', '\"Wall', 'Street', 'Warriors\"', 'find', 'themselves'], 'in', ['a', 'case', 'of', 'life', 'imitating', 'life.']]\n",
+ "[['said', 'Friday', 'as', 'he', 'was', 'shooting'], 'in', ['Manhattan.', '\"We\\'ve', 'got', 'the', 'backlash', 'of']]\n",
+ "[['announced', 'that', 'it', 'would', 'cease', 'operations'], 'in', ['December.', '\"It', 'kind', 'of', 'happened', 'at']]\n",
+ "[['the', 'markets', 'were', 'diving,', 'Gill', 'said'], 'in', ['a', 'telephone', 'interview', 'from', 'Los', 'Angeles.']]\n",
+ "[['\"Warriors\"', 'reached', 'No.', '1', 'on', 'iTunes'], 'in', ['July', 'for', 'downloads', 'of', 'reality', 'television']]\n",
+ "[['series.', '\"We\\'ll', 'be', 'done', 'with', 'production'], 'in', ['the', 'next', 'four', 'to', 'six', 'weeks,\"']]\n",
+ "[['stockbrokers', 'telling', 'their', 'clients', 'to', 'stay'], 'in', ['the', 'market,', 'Skelton', 'and', 'Gill', 'say']]\n",
+ "[['tongue-in-cheek', 'complaint', 'about', 'file-sharing', 'first', 'released'], 'in', ['2006', 'included', 'those', 'so-called', 'offensive', 'terms.']]\n",
+ "[['the', 'names', 'to', 'the', 'file-sharing', 'sites'], 'in', ['his', 'song', 'two', 'years', 'ago,', 'after']]\n",
+ "[['subtly', 'removing', 'or', 'obscuring', 'the', 'words'], 'in', ['the', 'track,\"', 'he', 'wrote,', '\"I', 'made']]\n",
+ "[['available', '--', 'once', 'the', \"network's\", 'stock'], 'in', ['trade', '--', 'to', 'play,', 'browse', 'or']]\n",
+ "[['other', 'sites.', 'The', 'site', 'is', 'still'], 'in', ['beta,', 'or', 'introductory', 'phase,', 'and', 'perhaps']]\n",
+ "[['Saturday', 'night.', 'The', 'wildest', 'division', 'race'], 'in', ['conference', 'history', 'continues', 'with', 'a', 'West']]\n",
+ "[['Raiders,', 'who', 'jumped', 'to', 'No.', '2'], 'in', [\"Sunday's\", 'BCS', 'rankings,', 'are', 'halfway', 'through']]\n",
+ "[[\"Robinson's\", 'Oklahoma', 'State', 'Cowboys,', 'No.', '8'], 'in', ['the', 'AP', 'poll', 'and', 'No.', '9']]\n",
+ "[['the', 'AP', 'poll', 'and', 'No.', '9'], 'in', ['the', 'BCS,', 'with', 'the', 'world', 'watching.']]\n",
+ "[['touchdowns', '--', 'Robinson', 'is', 'second', 'nationally'], 'in', ['pass', 'efficiency', 'and', 'tops', 'the', 'quarterback']]\n",
+ "[['with', '395', 'yards', 'and', 'five', 'touchdowns'], 'in', ['a', '59-17', 'romp.', '(Note', 'to', 'University']]\n",
+ "[['let', 'up', 'on', 'a', 'flea-flicker', 'bomb'], 'in', ['which', 'no', 'Cyclone', 'was', 'within', 'a']]\n",
+ "[['--', 'driving', 'Texas', 'Tech', '62', 'yards'], 'in', ['six', 'plays', 'in', 'the', 'final', '1:29.']]\n",
+ "[['Tech', '62', 'yards', 'in', 'six', 'plays'], 'in', ['the', 'final', '1:29.', '\"As', 'a', 'quarterback,']]\n",
+ "[['and', 'you', \"don't\", 'want', 'to', 'be'], 'in', ['that', 'situation,', 'you', 'should', 'probably', 'change']]\n",
+ "[['second', 'left.', 'The', 'Longhorns', 'are', '80th'], 'in', ['pass', 'efficiency', 'defense.', 'The', 'road', 'to']]\n",
+ "[['time', 'since', 'Tommy', \"Tuberville's\", 'first', 'year'], 'in', ['1999,', 'this', 'time', 'to', 'a', 'Mississippi']]\n",
+ "[['that', 'the', 'Tigers', 'all', 'but', 'quit'], 'in', ['their', '34-17', 'drubbing', 'at', 'West', 'Virginia.']]\n",
+ "[['the', 'Volunteers', 'at', '3-6', 'and', '1-5'], 'in', ['the', 'SEC.', 'Asked', 'after', 'the', 'game']]\n",
+ "[['the', 'most', 'points', '--', '198', '--'], 'in', ['a', 'four-game', 'stretch', 'in', 'school', 'history.']]\n",
+ "[['198', '--', 'in', 'a', 'four-game', 'stretch'], 'in', ['school', 'history.', 'Its', 'total', 'defense', 'has']]\n",
+ "[['pull', 'off', 'the', 'biggest', 'election', 'upset'], 'in', ['American', 'history.', 'But', 'right', 'now', 'the']]\n",
+ "[['and', 'to', 'greatly', 'expand', 'their', 'majorities'], 'in', ['both', 'houses', 'of', 'Congress.', 'Most', 'of']]\n",
+ "[['perhaps', 'hope,', 'that', 'Republicans', 'will', 'engage'], 'in', ['some', 'soul-searching,', 'that', \"they'll\", 'ask', 'themselves']]\n",
+ "[['Congress,', 'while', 'leaving', 'the', 'hard', 'right'], 'in', ['place.', 'For', 'example,', 'Larry', 'Sabato,', 'the']]\n",
+ "[['same', 'thing', 'seems', 'set', 'to', 'happen'], 'in', ['the', 'House.', 'Also,', 'the', 'Republican', 'base']]\n",
+ "[['perpetrating', 'one', 'of', 'the', 'greatest', 'frauds'], 'in', ['voter', 'history', 'in', 'this', 'country,', 'maybe']]\n",
+ "[['the', 'greatest', 'frauds', 'in', 'voter', 'history'], 'in', ['this', 'country,', 'maybe', 'destroying', 'the', 'fabric']]\n",
+ "[['this', 'column', 'probably', \"don't\", 'qualify.', 'Thus,'], 'in', ['the', 'face', 'of', 'polls', 'suggesting', 'that']]\n",
+ "[['A', 'majority', 'of', 'Americans', 'now', 'live'], 'in', ['big', 'metropolitan', 'areas,', 'but', 'while', 'visiting']]\n",
+ "[['but', 'while', 'visiting', 'a', 'small', 'town'], 'in', ['North', 'Carolina,', 'Palin', 'described', 'it', 'as']]\n",
+ "[['become', 'irrelevant.', 'Republicans', 'will', 'still', 'be'], 'in', ['a', 'position', 'to', 'block', 'some', 'Democratic']]\n",
+ "[['fail', 'to', 'achieve', 'a', 'filibuster-proof', 'majority'], 'in', ['the', 'Senate.', 'And', 'that', 'blocking', 'ability']]\n",
+ "[['Republicans', 'like', \"Minnesota's\", 'Norm', 'Coleman,', 'precisely'], 'in', ['the', 'hope', 'of', 'denying', 'Democrats', 'a']]\n",
+ "[['of', 'them', 'spent', 'the', 'Bush', 'years'], 'in', ['denial,', 'closing', 'their', 'eyes', 'to', 'the']]\n",
+ "[['on', 'the', 'left.', 'Michael', 'Powell', 'reports'], 'in', [\"Saturday's\", 'New', 'York', 'Times', 'that', 'even']]\n",
+ "[['defeat', 'has', 'driven', 'many', 'liberals', 'into'], 'in', ['a', 'state', 'of', 'high', 'anxiety.', 'And']]\n",
+ "[['she', 'sweated', 'out', 'Mr.', \"Obama's\", 'performance'], 'in', ['Colorado.\"', 'Well,', 'what', 'if', 'Obama', 'loses']]\n",
+ "[['about', 'smug', 'establishment', 'back-scratching', 'and', 'gatekeeping'], 'in', ['America?', '3.', 'It', 'would', 'be', 'a']]\n",
+ "[['grudging', 'way', 'Obama', 'treats', 'the', 'reversal'], 'in', ['Iraq,', 'when', 'he', 'treats', 'it', 'at']]\n",
+ "[['security', 'but', 'the', 'cause', 'of', 'freedom'], 'in', ['the', 'world.', 'Liberals', 'should', 'be', 'votaries']]\n",
+ "[['overwhelmingly', 'against', 'Obama,', 'as', 'they', 'did'], 'in', ['the', 'Democratic', 'primaries?', 'McCain', 'could', 'then']]\n",
+ "[['now', 'leads', 'or', 'is', 'effectively', 'even'], 'in', ['the', 'polls', '(including', 'North', 'Carolina,', 'Indiana']]\n",
+ "[['wire', 'for', 'Seth', 'Maxwell,', 'the', 'quarterback'], 'in', ['Peter', \"Gent's\", '1973', 'novel,', '\"North', 'Dallas']]\n",
+ "[['look', 'up', 'and', 'at', 'some', 'distance'], 'in', ['the', 'National', 'Football', 'Conference', 'East', 'to']]\n",
+ "[['made', 'a', 'Dallas', 'victory', 'a', 'shock'], 'in', ['this', 'game', 'between', 'longstanding', 'rivals.', 'The']]\n",
+ "[['end', 'of', 'the', 'deal.\"', \"Manning's\", 'interception'], 'in', ['the', 'second', 'quarter', 'led', 'to', 'a']]\n",
+ "[['didn\\'t,\"', 'Burress', 'said,', '\"and', 'it', 'resulted'], 'in', ['a', 'touchdown', 'for', 'those', 'guys.\"', 'On']]\n",
+ "[['immediately', 'afterward,', 'Burress', 'appeared', 'to', 'speak'], 'in', ['a', 'demonstrative', 'way,', 'waving', 'his', 'arms.']]\n",
+ "[['later', 'dropped', 'two', 'passes,', 'including', 'one'], 'in', ['the', 'end', 'zone,', 'but', 'he', 'was']]\n",
+ "[['Cowboys', 'made', 'it', 'close', 'again,', 'briefly,'], 'in', ['the', 'first', 'minute', 'of', 'the', 'fourth']]\n",
+ "[['on', 'him,\"', 'Tuck', 'said.', '\"I', 'guess,'], 'in', ['the', 'air,', \"I've\", 'got', 'to', 'twist']]\n",
+ "[['last', 'season', 'with', 'a', 'postseason', 'upset'], 'in', ['Dallas,', 'the', 'division', 'winners', 'do', 'not']]\n",
+ "[['Sunday', 'is', 'because', 'the', 'visitors', 'got'], 'in', ['the', 'face', 'of', 'Marshall', 'and', 'messed']]\n",
+ "[['the', 'young', 'receiver', 'cracked.', '\"We', 'got'], 'in', ['his', 'head,', 'and', 'he', 'pretty', 'much']]\n",
+ "[['and', 'his', 'receiving', 'numbers', 'have', 'gone'], 'in', ['steady', 'decline,', 'opponents', 'now', 'see', 'how']]\n",
+ "[['of', 'vulnerability', 'no', 'player', 'can', 'afford'], 'in', ['the', 'NFL.', '\"I\\'m', 'not', 'selfish,', 'but']]\n",
+ "[['player', 'capable', 'of', 'catching', '18', 'passes'], 'in', ['a', 'single', 'game', 'is', 'talented.', 'But']]\n",
+ "[['Broncos', 'to', 'keep', 'it', 'together,', 'even'], 'in', ['the', 'AFC', 'West,', 'the', 'division', 'that']]\n",
+ "[['lead,', 'not', 'whine.', 'During', 'a', 'break'], 'in', ['the', 'action', 'before', 'the', 'fourth', 'quarter']]\n",
+ "[['Unnerved', 'to', 'the', 'point', 'of', 'distraction'], 'in', ['front', 'of', '75,000', 'irked', 'paying', 'customers,']]\n",
+ "[['the', 'tongue-lashing', 'from', 'an', 'opponent', 'laughing'], 'in', ['his', 'face.', 'If', 'this', 'is', 'where']]\n",
+ "[['Denver', 'Post', '\"Our', 'game', 'plan', 'going'], 'in', ['was', 'to', 'run', 'the', 'football,', 'to']]\n",
+ "[['because', 'of', 'a', '2-yard', 'loss', '-'], 'in', ['the', 'middle', 'of', 'the', 'third', 'quarter.']]\n",
+ "[['Broncos', 'are', 'the', 'worst-reeking', 'first-place', 'team'], 'in', ['the', 'history', 'of', 'American', 'professional', 'football.']]\n",
+ "[['the', 'Broncos', 'run', 'to', 'darkness.', 'As'], 'in', ['2007,', 'the', \"Broncos'\", 'season', 'might', 'as']]\n",
+ "[['the', 'Dallas', 'Texans', 'of', 'the', 'AFL'], 'in', ['1961.', 'The', 'Broncos', 'never', 'have', 'run']]\n",
+ "[['run', 'for', 'fewer', 'than', '5', 'yards'], 'in', ['a', 'first', 'half', '-', 'as', 'far']]\n",
+ "[['reeking', 'yards.', 'They', 'added', 'two', 'more'], 'in', ['the', 'half.', \"That's\", 'not', 'a', 'joke,']]\n",
+ "[['Great', 'Gatsby', 'or', 'somebody,', 'looked', 'ordinary'], 'in', ['his', 'brief', 'time.', 'The', \"Broncos'\", 'best']]\n",
+ "[['plays', \"(Cutler's\", 'one', 'does', 'not', 'count)'], 'in', ['the', 'first', 'three', 'quarters', '-', 'compared']]\n",
+ "[['sign', 'Shaun', 'Alexander,', 'who', 'joined', 'Portis'], 'in', ['Washington?', 'And', \"it's\", 'not', 'as', 'if']]\n",
+ "[['stop', 'their', 'running', 'game', 'helped', 'us'], 'in', ['all', 'areas', 'on', 'defense,\"', 'said', 'Miami']]\n",
+ "[['if', 'the', 'Dolphins', 'were', 'special.', 'Spot'], 'in', ['The', 'First', 'Reader', 'could', 'run', 'better']]\n",
+ "[['speaking', 'career.', 'Leyritz', 'is', 'awaiting', 'trial'], 'in', ['Florida', 'on', 'charges', 'of', 'manslaughter', 'and']]\n",
+ "[['he', 'faces', 'up', 'to', '15', 'years'], 'in', ['prison.', 'The', 'player', 'once', 'known', 'for']]\n",
+ "[['have', 'been', 'a', 'savior,\"', 'Leyritz', 'said'], 'in', ['a', 'recent', 'interview.', '\"If', 'it', \"wasn't\"]]\n",
+ "[['and', '7,', 'who', 'live', 'with', 'him'], 'in', ['the', 'spotless', 'home', 'he', 'rents', 'in']]\n",
+ "[['in', 'the', 'spotless', 'home', 'he', 'rents'], 'in', ['Davie,', 'a', 'Fort', 'Lauderdale', 'suburb.', 'After']]\n",
+ "[['writing,', '\"I', 'love', 'you', 'momma!!', 'Rest'], 'in', ['peace,\"', 'according', 'to', 'telephone', 'records', 'in']]\n",
+ "[['in', 'peace,\"', 'according', 'to', 'telephone', 'records'], 'in', ['the', 'state', \"attorney's\", 'file.', 'Howard', 'Pomerantz,']]\n",
+ "[['giving', 'him', 'assistance.', '\"I\\'d', 'be', 'interested'], 'in', ['learning', 'whether', 'the', 'Baseball', 'Assistance', 'Team']]\n",
+ "[['into', 'consideration', 'whether', \"they're\", 'pouring', 'salt'], 'in', ['the', 'wounds', 'in', 'the', 'victims', 'in']]\n",
+ "[[\"they're\", 'pouring', 'salt', 'in', 'the', 'wounds'], 'in', ['the', 'victims', 'in', 'this', 'case,\"', 'he']]\n",
+ "[['in', 'the', 'wounds', 'in', 'the', 'victims'], 'in', ['this', 'case,\"', 'he', 'said.', 'Jim', 'Martin,']]\n",
+ "[['Team,', 'spoke', 'about', 'the', 'program', 'only'], 'in', ['general', 'because', 'of', 'privacy', 'restrictions,', 'and']]\n",
+ "[['did', 'not', 'pass', 'judgment', 'on', 'those'], 'in', ['need,', 'especially', 'when', 'children', 'were', 'involved.']]\n",
+ "[['team', 'from', '1990', 'through', '1996,', 'then'], 'in', ['1999', 'and', '2000.', 'He', 'is', 'probably']]\n",
+ "[['best', 'known', 'for', 'his', 'three-run', 'homer'], 'in', ['Game', '4', 'of', 'the', '1996', 'World']]\n",
+ "[['Still,', 'fans', 'appreciated', 'his', 'clutch', 'performances'], 'in', ['the', 'postseason.', 'By', 'the', 'time', 'he']]\n",
+ "[['By', 'the', 'time', 'he', 'left', 'baseball'], 'in', ['2000,', 'Leyritz', 'had', 'earned', 'at', 'least']]\n",
+ "[['had', 'earned', 'at', 'least', '$10.7', 'million'], 'in', ['11', 'major', 'league', 'seasons,', 'according', 'to']]\n",
+ "[['County', 'courthouse', 'depict', 'a', 'vicious', 'battle'], 'in', ['which', 'the', 'couple', 'bickered', 'over', 'everything']]\n",
+ "[['In', '2004,', 'a', 'social', 'worker', 'concluded'], 'in', ['a', 'custody', 'evaluation', 'that', 'neither', 'Leyritz']]\n",
+ "[['had', 'a', 'long', 'criminal', 'history,', 'and'], 'in', ['2003,', 'she', 'tested', 'positive', 'for', 'benzodiazepines,']]\n",
+ "[['unemployed,', 'they', 'frequently', 'placed', 'the', 'children'], 'in', ['after-school', 'day', 'care', 'and,', 'in', \"Karri's\"]]\n",
+ "[['children', 'in', 'after-school', 'day', 'care', 'and,'], 'in', [\"Karri's\", 'case,', 'left', 'them', 'with', 'baby']]\n",
+ "[['the', 'children', 'were', 'often', 'absent', 'when'], 'in', [\"Karri's\", 'care,', 'and', 'when', 'they', 'did']]\n",
+ "[['he', 'said.', 'After', 'an', 'initial', 'interview'], 'in', ['September,', 'Leyritz', 'declined', 'to', 'answer', 'further']]\n",
+ "[['Leyritz', 'said', 'he', 'attended', '50', 'events'], 'in', ['2007,', 'in', 'addition', 'to', 'working', 'that']]\n",
+ "[['he', 'attended', '50', 'events', 'in', '2007,'], 'in', ['addition', 'to', 'working', 'that', 'season', 'as']]\n",
+ "[['a', 'Yankees', 'reporter', 'for', 'ESPN', 'Radio'], 'in', ['New', 'York.', 'His', 'contract', 'for', '2008']]\n",
+ "[['0.08.', 'Leyritz', 'is', 'also', 'the', 'defendant'], 'in', ['a', 'civil', 'case', 'filed', 'this', 'year']]\n",
+ "[['I', 'think', \"we're\", 'going', 'to', 'succeed'], 'in', ['the', 'defense', 'of', 'the', 'civil', 'case,\"']]\n",
+ "[['was', 'driving', 'with', 'a', 'green', 'light,'], 'in', ['her', 'own', 'lane', 'of', 'traffic,', 'within']]\n",
+ "[['any', 'laws', 'and', 'she', 'was', 'not'], 'in', ['any', 'way', 'the', 'cause', 'of', 'this']]\n",
+ "[['died.', 'Friends', 'say', 'that', 'Leyritz', 'was'], 'in', ['shock', 'after', 'the', 'accident', 'and', 'that']]\n",
+ "[['the', 'accident', 'and', 'that', 'his', 'involvement'], 'in', ['it', '--', 'guilty', 'or', 'not', '--']]\n",
+ "[['not', 'invited', 'to', 'the', 'All-Star', 'Game'], 'in', ['the', 'Bronx', 'or', 'to', 'the', 'Yankee']]\n",
+ "[['by', 'a', 'security', 'guard', 'and', 'sat'], 'in', ['the', 'stands', 'with', 'fans', 'instead.', 'The']]\n",
+ "[['\"You\\'re', 'guilty', 'until', \"you're\", 'proven', 'innocent'], 'in', ['this', 'country,', 'unfortunately.\"', 'Leyritz', 'said', 'the']]\n",
+ "[['said', 'the', 'Yankees', 'were', 'not', 'alone'], 'in', ['snubbing', 'him.', '\"If', 'it', 'was', 'just']]\n",
+ "[['signed', 'autographs', 'at', 'Suburban', 'Golf', 'Club'], 'in', ['Union,', 'N.J.,', 'to', 'benefit', 'the', 'local']]\n",
+ "[['former', 'owner', 'of', 'Mickey', \"Mantle's\", 'Restaurant'], 'in', ['Manhattan.', '\"There', 'is', 'no', 'Yankee', 'fan']]\n",
+ "[['one', 'of', 'the', 'biggest', 'spending', 'sprees'], 'in', ['corporate', 'history', 'for', 'nearly', 'three', 'years,']]\n",
+ "[['funds', 'and', 'college', 'endowments', 'that', 'invested'], 'in', ['these', 'funds', 'in', 'recent', 'years', 'hoping']]\n",
+ "[['endowments', 'that', 'invested', 'in', 'these', 'funds'], 'in', ['recent', 'years', 'hoping', 'for', 'big', 'returns']]\n",
+ "[['16', 'percent', 'of', 'the', '$4.83', 'trillion'], 'in', ['all', 'the', 'deals', 'made', 'globally', 'that']]\n",
+ "[['Afterward,', 'private', 'equity', 'players', 'were', 'called'], 'in', ['front', 'of', 'Congress', 'and', 'movies', 'like']]\n",
+ "[['suffer', 'nearly', 'as', 'much', 'as', 'those'], 'in', ['the', 'late', '1980s,', 'because', 'the', 'firms']]\n",
+ "[['make', 'their', 'debt', 'payments.', 'For', 'example,'], 'in', ['an', 'effort', 'to', 'save', 'cash,', 'six']]\n",
+ "[['hedge', 'funds,', 'private', 'equity', 'may', 'be'], 'in', ['a', 'better', 'place\"', 'because', 'of', 'its']]\n",
+ "[['While', 'some', 'companies', 'may', 'find', 'themselves'], 'in', ['trouble,', 'he', 'said,', 'many', 'more', 'will']]\n",
+ "[['able', 'to', 'ride', 'out', 'a', 'downturn'], 'in', ['the', 'economy', 'because', 'of', 'the', 'lax']]\n",
+ "[['were', 'at', 'when', 'Blackstone', 'went', 'public'], 'in', ['June', '2007.', '(Fortress', 'Investment', 'Group,', 'another']]\n",
+ "[['from', 'its', 'initial', 'price', 'of', '$35'], 'in', ['February', '2007.)', 'Lerner,', 'of', 'the', 'Harvard']]\n",
+ "[['about', 'the', 'compensation', 'and', 'fee', 'structure\"'], 'in', ['the', 'industry.', 'The', 'firms', 'generally', 'take']]\n",
+ "[['was', 'acquired,', 'it', 'reported', '$2.1', 'million'], 'in', ['long-term', 'debt;', 'by', 'Dec.', '31,', '2007,']]\n",
+ "[['private', 'equity-backed', 'companies', 'have', 'recently', 'plummeted'], 'in', ['value,', 'signaling', 'worries', 'about', 'their', 'solvency.']]\n",
+ "[['takeover,', 'the', 'company', 'reported', '$12.4', 'billion'], 'in', ['long-term', 'debt.', 'By', 'June', '30,', 'that']]\n",
+ "[['back', 'costs,', 'even', 'cutting', 'back', 'hours'], 'in', ['its', 'VIP', 'lounge', 'and', 'the', 'complimentary']]\n",
+ "[['from', 'CreditSights,', 'a', 'research', 'firm,', 'wrote'], 'in', ['a', 'research', 'note', 'on', 'Oct.', '17']]\n",
+ "[['at', 'the', 'heart', 'of', 'his', 'lead'], 'in', ['the', 'polls', 'over', 'Sen.', 'John', 'McCain']]\n",
+ "[['higher', 'proportion', 'than', 'Bill', 'Clinton', 'captured'], 'in', ['his', 'general', 'election', 'victories.', 'Analysts', 'ascribe']]\n",
+ "[['life.', 'When', 'Ronald', 'Reagan', 'won', 're-election'], 'in', ['1984,', 'whites', 'made', 'up', '86', 'percent']]\n",
+ "[['issue,\"', 'said', 'David', 'Saunders,', 'a', 'consultant'], 'in', ['Virginia', 'who', 'advises', 'Democratic', 'candidates', 'on']]\n",
+ "[['approach', 'adopted', 'by', 'John', 'F.', 'Kennedy'], 'in', ['his', '1960', 'breakthrough', 'as', 'the', 'first']]\n",
+ "[['Street', 'Journal', 'poll', 'documents', \"Obama's\", 'success'], 'in', ['making', 'that', 'case.', 'Asked', 'whether', 'an']]\n",
+ "[['of', 'blacks', 'over', 'other', 'Americans,', 'eight'], 'in', ['10', 'whites', 'said', 'it', 'would', 'not.']]\n",
+ "[['research', 'by', 'the', 'pollster', 'Stan', 'Greenberg'], 'in', ['Macomb', 'County,', 'Mich.,', 'concluded', 'that', 'middle-class']]\n",
+ "[['they', 'received', 'from', 'a', 'political', 'debate'], 'in', ['which', 'Democrats', 'appeared', 'focused', 'on', 'racial']]\n",
+ "[['poor.', 'Like', \"Greenberg's\", 'client', 'Bill', 'Clinton'], 'in', ['1992,', 'Obama', 'has', 'emphasized', 'broad-gauged', 'assistance']]\n",
+ "[['middle', 'class.', '\"He\\'s', 'managed', 'to', 'campaign'], 'in', ['ways', 'that', 'may', 'not', 'have', 'changed']]\n",
+ "[['steady', 'performances', 'on', 'the', 'stump', 'and'], 'in', ['debates', 'as', 'only', 'part', 'of', 'the']]\n",
+ "[['argue,', 'is', 'that', 'President', \"Bush's\", 'unpopularity'], 'in', ['threatening', 'economic', 'times', 'has', 'veered', 'close']]\n",
+ "[['who', 'abandoned', 'his', 'own', 'Democratic', 'allegiance'], 'in', ['1964', 'in', 'the', 'early', 'phase', 'of']]\n",
+ "[['his', 'own', 'Democratic', 'allegiance', 'in', '1964'], 'in', ['the', 'early', 'phase', 'of', 'white', \"conservatives'\"]]\n",
+ "[['strategists', 'feared', 'Obama', 'might', 'be', 'crippled'], 'in', ['states', 'where', 'he', 'lost', 'working-class', 'white']]\n",
+ "[['Clinton.', 'In', 'Ohio,', 'carried', 'by', 'Bush'], 'in', ['2000', 'and', '2004,', 'polls', 'now', 'show']]\n",
+ "[['polls', 'now', 'show', 'Obama', 'is', 'competitive;'], 'in', ['Pennsylvania,', 'a', 'top', 'target', 'for', 'McCain,']]\n",
+ "[['target', 'for', 'McCain,', 'he', 'is', 'ahead'], 'in', ['the', 'polls.', 'With', 'a', 'message', 'muting']]\n",
+ "[['came', 'only', 'after', 'he', 'defeated', 'Clinton'], 'in', ['the', 'white-dominated', 'Iowa', 'caucuses.', '\"Ironically,', 'the']]\n",
+ "[['African-Americans', 'about', 'his', 'ability', 'to', 'succeed'], 'in', ['the', 'nominating', 'process,\"', 'said', 'Tad', 'Devine,']]\n",
+ "[['a', 'top', 'strategist', 'for', 'Al', 'Gore'], 'in', ['2000', 'and', 'John', 'Kerry', 'in', '2004.']]\n",
+ "[['Gore', 'in', '2000', 'and', 'John', 'Kerry'], 'in', ['2004.', '\"It\\'s', 'amazing', 'to', 'me', '--']]\n",
+ "[['of', '\"sowing', 'the', 'seeds', 'of', 'hatred\"'], 'in', ['a', 'way', 'that', 'was', 'reminiscent', 'of']]\n",
+ "[['--', 'while', 'Sen.', 'Barack', 'Obama', 'is'], 'in', ['Florida,', 'Virginia', 'and', 'North', 'Carolina,', 'an']]\n",
+ "[['Bruce', 'Springsteen,', 'opening', 'an', 'Obama', 'rally'], 'in', ['Cleveland', '\"We\\'ve', 'seen', 'a', 'tightening', 'of']]\n",
+ "[['if', \"he's\", 'not', 'at', '50', 'percent'], 'in', ['North', 'Carolina', \"he's\", 'not', 'going', 'to']]\n",
+ "[['on', '\"Face', 'the', 'Nation\"', '\"What', \"we're\"], 'in', ['for', 'is', 'a', 'slam-bang', 'finish.', \"He's\"]]\n",
+ "[['these', 'kinds', 'of', 'states,', 'and', \"we're\"], 'in', ['the', 'process', 'of', 'winning', 'them', 'right']]\n",
+ "[['Sen.', 'John', 'McCain', 'at', 'a', 'rally'], 'in', ['Wallingford,', 'Pa.', '\"As', \"I've\", 'said', 'from']]\n",
+ "[['each', 'of', 'us', 'doing', 'our', 'part'], 'in', ['our', 'own', 'lives', 'and', 'our', 'own']]\n",
+ "[['citizens.Sen.', 'Barack', 'Obama', 'at', 'a', 'rally'], 'in', ['Columbus,', 'Ohio', 'THE', 'DAY', '--', 'John']]\n",
+ "[['for', 'president.', 'And', 'McCain', 'did', 'it'], 'in', ['New', 'Hampshire,', 'which', 'delivered', 'primary', 'victories']]\n",
+ "[['which', 'delivered', 'primary', 'victories', 'for', 'him'], 'in', ['2000', 'and', '2008.', 'Though', 'this', 'state']]\n",
+ "[['2008.', 'Though', 'this', 'state', 'went', 'Democratic'], 'in', ['2004,', 'he', 'is', 'hoping', 'that', 'it']]\n",
+ "[['appearing', 'at', 'a', 'packed-to-the-rafters', 'campaign', 'rally'], 'in', ['Cleveland', 'with', 'Bruce', 'Springsteen.', 'You', 'would']]\n",
+ "[['similarly', 'packed', 'rally', 'for', 'John', 'Kerry'], 'in', ['2004,', 'who', 'went', 'on', 'to', 'lose,']]\n",
+ "[['Palin', 'referring', 'to', '\"the', '11th', 'hour\"'], 'in', ['criticizing', \"Obama's\", 'tax', 'plan.', 'TAKEAWAY:', 'The']]\n",
+ "[['speak', 'thousands', 'upon', 'thousands', 'of', 'words'], 'in', ['public', 'each', 'day,', 'some', 'of', 'them']]\n",
+ "[['the', 'Republican', 'presidential', 'nominee,', 'on', 'Sunday'], 'in', ['Wallingford,', 'Pa.,', 'offering', 'up', 'a', 'novel']]\n",
+ "[['taxes', 'low', 'creates', 'jobs,', 'keeps', 'money'], 'in', ['your', 'pants', 'and', 'strengthens', 'our', 'economy.\"']]\n",
+ "[['And', 'Sen.', 'Joseph', 'R.', 'Biden', 'Jr.'], 'in', ['Melbourne,', 'Fla.,', 'on', 'Tuesday,', 'mangling', 'the']]\n",
+ "[['hoping', 'that', 'none', 'of', 'her', 'supporters'], 'in', ['Canton,', 'Ohio,', 'wait', 'until', 'Wednesday', 'to']]\n",
+ "[['choosing', 'is', 'near.\"', 'Two', 'hours', 'later'], 'in', ['Marietta,', 'she', 'corrected', 'herself:', '\"We', 'are']]\n",
+ "[['mixed', 'up', 'his', 'fictional', 'do-gooders', 'Sunday'], 'in', ['Columbus,', 'Ohio,', 'as', 'he', 'reached', 'for']]\n",
+ "[['But', 'two', 'days', 'before', 'the', 'election,'], 'in', ['a', 'state', 'central', 'to', \"McCain's\", 'hopes,']]\n",
+ "[['Harvest', 'Church', 'of', 'hellfire', 'and', '\"circling'], 'in', ['on', 'a', 'fight', 'with', 'the', 'eternal']]\n",
+ "[['repeatedly', 'claimed', 'that', 'America', 'was', 'founded,'], 'in', ['part,', 'to', 'destroy', 'the', '\"false', 'religion\"']]\n",
+ "[['allegiances.\"', 'Not', 'all', 'churches', 'remained', 'silent'], 'in', ['Ohio.', 'Pastors', 'in', 'a', 'number', 'of']]\n",
+ "[['churches', 'remained', 'silent', 'in', 'Ohio.', 'Pastors'], 'in', ['a', 'number', 'of', 'the', 'historically', 'black']]\n",
+ "[['openly', 'endorsed', 'Obama.', 'And', 'white', 'pastors'], 'in', ['liberal', 'leaning', 'congregations,', 'like', 'the', 'Rev.']]\n",
+ "[['Congregational', 'Church,', 'United', 'Church', 'of', 'Christ'], 'in', ['Columbus,', 'showered', 'praise', 'on', 'Obama', 'without']]\n",
+ "[['an', 'endorsement.', 'Last', 'Sunday,', 'Ahrens', 'noted'], 'in', ['his', 'sermon:', '\"What', 'excites', 'me', 'today']]\n",
+ "[['that', 'we', 'have', 'reached', 'the', 'place'], 'in', ['our', \"country's\", 'history', 'that', 'a', 'biracial']]\n",
+ "[['Cleveland', 'Mall', 'on', 'Sunday', 'to', 'perform'], 'in', ['person,', 'a', 'crowd', 'spilled', 'into', 'Lakeside']]\n",
+ "[['wound', 'through', 'golden-leaved', 'valleys', 'on', 'Saturday'], 'in', ['Bucks', 'County,', 'Pa.,', 'a', 'pair', 'of']]\n",
+ "[['when', 'McCain', 'arrived', 'at', 'a', 'rally'], 'in', ['Perkasie,', 'several', 'people', 'held', 'signs', 'declaring']]\n",
+ "[['\"Sportsmen', 'for', 'McCain\"', 'and', 'one', 'man,'], 'in', ['an', 'homage', 'to', \"Ohio's\", 'best-known', 'plumber,']]\n",
+ "[['Lindsey', 'Graham', 'of', 'South', 'Carolina', 'said'], 'in', ['his', 'warm-up', 'speech.', '\"I', 'know', 'the']]\n",
+ "[['Morocco', 'sailed', 'into', 'Central', 'Park', 'comfortably'], 'in', ['the', 'lead', 'of', 'the', 'New', 'York']]\n",
+ "[['year', 'ago,', 'losing', 'a', 'tight', 'race'], 'in', ['the', 'final', 'half-mile.', 'But', 'as', 'Goumri']]\n",
+ "[['\"For', 'me,', 'the', 'race', 'is', 'decided'], 'in', ['the', 'end,\"', 'Gomes', 'said,', 'via', 'an']]\n",
+ "[['his', 'second', 'New', 'York', 'City', 'Marathon,'], 'in', ['2', 'hours', '8', 'minutes', '43', 'seconds.']]\n",
+ "[['Goumri,', 'now', 'with', 'three', 'second-place', 'finishes'], 'in', ['major', 'marathons,', 'vowed', 'to', 'return.', '\"I']]\n",
+ "[['Daniel', 'Rono', 'of', 'Kenya', 'finished', 'third'], 'in', ['2:11:22.', 'For', 'Gomes,', '31,', 'the', 'finish']]\n",
+ "[['of', 'memories.', 'When', 'he', 'won', 'here'], 'in', ['2006,', 'he', 'was', 'almost', 'unknown', 'outside']]\n",
+ "[['of', 'the', 'pack', 'on', 'First', 'Avenue'], 'in', ['Manhattan,', 'with', 'more', 'than', 'six', 'miles']]\n",
+ "[['more', 'than', 'six', 'miles', 'to', 'go'], 'in', ['the', 'race,', 'none', 'of', 'the', 'top']]\n",
+ "[['realm', 'of', 'the', \"sport's\", 'stars.', 'Back'], 'in', ['Brazil,', 'a', 'country', 'usually', 'fixated', 'on']]\n",
+ "[['said.', '\"I', 'am', 'very', 'well', 'known'], 'in', ['Brazil.', 'Everybody', 'recognizes', 'me.', 'The', 'young']]\n",
+ "[['a', 'lot', 'of', 'new', 'running', 'groups'], 'in', ['Brazil,', 'and', 'the', 'people', 'recognize', 'who']]\n",
+ "[['marathons', 'last', 'year', 'and', 'finished', 'eighth'], 'in', ['each.', 'He', 'could', 'not', 'finish', 'the']]\n",
+ "[['could', 'not', 'finish', 'the', 'Olympic', 'marathon'], 'in', ['Beijing,', 'blaming', 'the', 'heat', 'and', 'humidity.']]\n",
+ "[['world', 'by', 'storm.', 'He', 'finished', 'second'], 'in', ['his', 'debut,', 'the', 'London', 'Marathon,', 'in']]\n",
+ "[['in', 'his', 'debut,', 'the', 'London', 'Marathon,'], 'in', ['2007,', 'when', 'Lel', 'outkicked', 'him', 'at']]\n",
+ "[['three', 'seconds.', 'In', 'New', 'York', 'later'], 'in', ['the', 'year,', 'Lel', 'again', 'pulled', 'away']]\n",
+ "[['the', 'year,', 'Lel', 'again', 'pulled', 'away'], 'in', ['the', 'final', 'half-mile', 'to', 'beat', 'Goumri']]\n",
+ "[['seconds.', 'Goumri', 'also', 'had', 'high', 'hopes'], 'in', ['the', 'Olympics,', 'but', 'after', 'running', 'strong']]\n",
+ "[['down,', 'you', 'will', 'have', 'a', 'problem'], 'in', ['the', 'last', 'mile,\"', 'he', 'said.', '\"I']]\n",
+ "[['his', 'move,', 'Abdirahman', 'felt', 'a', 'stitch'], 'in', ['his', 'side.', 'He', 'watched', 'the', 'leaders']]\n",
+ "[['finished', 'sixth,', 'the', 'top', 'American', 'finisher'], 'in', ['2:14:17.', 'Behind', 'him,', 'three', 'other', 'Americans']]\n",
+ "[['Lehmkuhle', 'and', 'Bolota', 'Asmerom', '--', 'finished'], 'in', ['the', 'top', '10,', 'the', 'most', 'since']]\n",
+ "[['was', 'greeted', 'by', 'welcoming', 'cheers.', 'People'], 'in', ['New', 'York,', 'as', 'well', 'as', 'Brazil,']]\n",
+ "[['he', 'expected', 'another', \"hero's\", 'welcome', 'back'], 'in', ['Brazil', '\"Probably', 'there', 'will', 'be', 'a']]\n",
+ "[['with', 'four', 'miles', 'remaining', 'and', 'winning'], 'in', ['New', 'York', 'for', 'the', 'third', 'time,']]\n",
+ "[['New', 'York', 'for', 'the', 'third', 'time,'], 'in', ['2', 'hours', '23', 'minutes', '56', 'seconds.']]\n",
+ "[['hills', 'and', 'into', 'a', 'headwind.', 'Victory'], 'in', ['New', 'York', 'is', 'always', 'more', 'important']]\n",
+ "[['Nike', 'contract', 'comes', 'up', 'for', 'renewal'], 'in', ['January', 'and', 'will', 'let', 'the', 'rest']]\n",
+ "[['marathoners', 'know', 'that', 'she', 'is', 'serious'], 'in', ['her', 'ambition', 'of', 'challenging', 'for', 'a']]\n",
+ "[['champion,', 'took', 'second', 'at', 'age', '40'], 'in', ['2:25:43', 'and', 'set', 'a', 'world', 'record']]\n",
+ "[['Goucher', 'of', 'the', 'United', 'States,', 'competing'], 'in', ['her', 'first', 'marathon,', 'fought', 'off', 'stomach']]\n",
+ "[['off', 'stomach', 'cramps', 'and', 'took', 'third'], 'in', ['2:25:53,', 'a', 'debut', 'record', 'for', 'an']]\n",
+ "[['previous', 'debut', 'mark', 'of', '2:26:58,', 'set'], 'in', ['2001.', \"Goucher's\", 'finish', 'was', 'the', 'best']]\n",
+ "[['the', 'best', 'by', 'an', 'American', 'woman'], 'in', ['New', 'York', 'since', 'Anne', 'Marie', 'Letko']]\n",
+ "[['since', 'Anne', 'Marie', 'Letko', 'took', 'third'], 'in', ['1994.', 'Beyond', \"Sunday's\", 'start,', 'Radcliffe', 'knifed']]\n",
+ "[['letting', 'others', 'set', 'the', 'pace.', 'Dressed'], 'in', ['a', 'purple', 'singlet', 'with', 'only', 'a']]\n",
+ "[['Goucher', 'and', 'the', 'other', 'challengers', 'tucked'], 'in', ['behind.', '\"It', 'was', 'tough', 'out', 'there']]\n",
+ "[['train', 'sufficiently', 'after', 'a', 'stress', 'fracture'], 'in', ['her', 'left', 'femur', 'in', 'May.', 'This']]\n",
+ "[['stress', 'fracture', 'in', 'her', 'left', 'femur'], 'in', ['May.', 'This', 'had', 'come', 'after', 'the']]\n",
+ "[['Games,', 'where', 'Radcliffe', 'did', 'not', 'finish'], 'in', ['the', 'oppressive', 'heat', 'and', 'humidity.', 'She']]\n",
+ "[['Sunday.', 'After', 'reaching', 'the', 'halfway', 'point'], 'in', ['1:13:23', 'in', 'a', 'pack', 'of', 'five']]\n",
+ "[['reaching', 'the', 'halfway', 'point', 'in', '1:13:23'], 'in', ['a', 'pack', 'of', 'five', 'runners,', 'Radcliffe']]\n",
+ "[['arms,', 'Goucher,', '30,', 'seemed', 'comfortable', 'running'], 'in', [\"Radcliffe's\", 'slipstream.', 'At', 'least', 'for', 'a']]\n",
+ "[['Drive.', 'She', 'won', 'a', 'bronze', 'medal'], 'in', ['the', '10,000', 'at', 'the', '2007', 'world']]\n",
+ "[['track', 'and', 'field', 'championships', 'and', 'competed'], 'in', ['the', '5,000', 'and', 'the', '10,000', 'at']]\n",
+ "[['First', 'Avenue,', 'Radcliffe', 'covered', 'Mile', '17'], 'in', ['5:16.', 'One', 'moment,', 'Goucher', 'appeared', 'relaxed,']]\n",
+ "[['appeared', 'relaxed,', 'the', 'next', 'she', 'was'], 'in', ['trouble.', 'Then', 'she', 'fell', 'away,', 'as']]\n",
+ "[['not', 'look', 'back,', 'fearful', 'of', 'stepping'], 'in', ['a', 'pothole', 'and', 'of', 'violating', 'her']]\n",
+ "[['the', 'accelerator.', 'She', 'ran', 'Mile', '21'], 'in', ['5:18', 'and', 'Mile', '22', 'in', '5:12,']]\n",
+ "[['21', 'in', '5:18', 'and', 'Mile', '22'], 'in', ['5:12,', 'striding', 'easily', 'and', 'boldly,', 'while']]\n",
+ "[['had', 'been', 'long', 'decided,', 'though', 'victory'], 'in', ['New', 'York', 'only', 'highlighted', \"Radcliffe's\", 'failures']]\n",
+ "[[\"'Why\", 'can', 'I', 'get', 'it', 'right'], 'in', ['New', 'York', 'and', 'I', \"can't\", 'get']]\n",
+ "[['reduce', 'her', 'training', 'or', 'her', 'racing'], 'in', ['an', 'effort', 'to', 'preserve', 'whatever', 'greatness']]\n",
+ "[['effort', 'to', 'preserve', 'whatever', 'greatness', 'remains'], 'in', ['her', 'legs.', 'So', 'far,', 'she', 'has']]\n",
+ "[['a', 'finite', 'number', 'of', 'good', 'marathons'], 'in', ['anyone,\"', 'Radcliffe', 'said.', '\"But', 'I', 'do']]\n",
+ "[['to', 'hold.\"', 'Being', 'a', 'reserve', 'quarterback'], 'in', ['the', 'NFL', 'is', 'not', 'all', 'that']]\n",
+ "[['of', 'awaiting', 'an', 'opportunity', 'that', 'came'], 'in', ['the', 'second', 'half', 'while', 'watching', 'Brad']]\n",
+ "[['watching', 'Brad', 'Johnson', 'throw', 'his', 'away'], 'in', ['the', 'first.', 'By', 'the', 'end', 'of']]\n",
+ "[['the', 'impotent', 'stand-ins', 'for', 'Tony', 'Romo'], 'in', ['as', 'unsightly', 'a', 'Giants-Cowboys', 'game', 'as']]\n",
+ "[['gets,', 'won', 'by', 'the', 'home', 'side'], 'in', ['bruising,', 'cruising', 'fashion,', 'largely', 'because', 'Dallas']]\n",
+ "[['injury', 'within', 'the', 'airtight', 'security', 'chamber'], 'in', ['which', 'the', 'quarterback', 'typically', 'plays?', '\"It\\'s']]\n",
+ "[['and', '\"going', 'from', 'the', 'third-best', 'offense'], 'in', ['the', 'league', 'to', 'whatever', \"we've\", 'been']]\n",
+ "[['been', 'the', 'past', 'few', 'games\"', '--'], 'in', ['a', 'word,', 'bad', '--', 'was', 'no']]\n",
+ "[['no', 'Vinny', 'Testaverde,', 'was', 'intercepted', 'twice'], 'in', ['the', 'first', 'half', 'by', 'cornerback', 'Corey']]\n",
+ "[['cornerback', 'Corey', 'Webster,', 'and', 'both', 'resulted'], 'in', ['Giants', 'touchdowns.', 'Bollinger', 'relieved', 'Johnson', 'to']]\n",
+ "[['pass', 'went', 'straight', 'to', 'No.', '37'], 'in', ['blue,', 'Giants', 'safety', 'James', 'Butler.', 'Two']]\n",
+ "[['Two', 'play', 'later,', 'Brandon', 'Jacobs', 'was'], 'in', ['the', 'end', 'zone', 'with', 'the', \"Giants'\"]]\n",
+ "[['play', 'next', 'week,', 'they', 'naturally', 'were'], 'in', ['no', 'mood', 'to', 'concede', 'anything,', 'least']]\n",
+ "[['other', 'issues', 'besides', 'injuries;', 'they', 'are'], 'in', ['a', 'fiercely', 'competitive', 'division', 'with', 'a']]\n",
+ "[['a', 'crucial', 'commodity', '--', 'most', 'notably'], 'in', ['Tennessee,', 'where', 'the', 'former', 'Giants', 'Super']]\n",
+ "[['Carr,', 'a', 'former', 'starter', 'who', 'is'], 'in', ['the', 'prime', 'of', 'his', 'athletic', 'life,']]\n",
+ "[['despite', 'an', 'appearance', 'of', 'Early', 'Eli'], 'in', ['the', 'first', 'half', 'on', 'successive', 'possessions.']]\n",
+ "[['although', 'Coughlin', 'is', 'developing', 'a', 'remedy'], 'in', ['the', 'person', 'of', 'receiver', 'Steve', 'Smith,']]\n",
+ "[['receiver', 'Steve', 'Smith,', 'an', 'emerging', 'star'], 'in', ['an', 'already', 'deep', 'and', 'versatile', 'offense.']]\n",
+ "[['the', 'Justice', 'Department', 'of', 'any', 'wrongdoing'], 'in', ['connection', 'with', 'an', 'inquiry', 'into', 'whether']]\n",
+ "[['helped', 'a', 'friend', 'win', 'defense', 'contracts'], 'in', ['exchange', 'for', 'gifts,', \"Gibbons'\", 'lawyer', 'said.']]\n",
+ "[['D.', 'Lowell,', 'said', 'the', 'lead', 'prosecutor'], 'in', ['the', 'case', 'informed', 'Gibbons', 'on', 'Friday']]\n",
+ "[['congressman', 'before', 'he', 'was', 'elected', 'governor'], 'in', ['2006,', 'had', 'been', 'closed.', 'A', 'Justice']]\n",
+ "[['gamble.\"', 'Lowell', 'said', 'Gibbons', 'had', 'cooperated'], 'in', ['the', 'investigation', 'and', 'in', 'recent', 'months']]\n",
+ "[['had', 'cooperated', 'in', 'the', 'investigation', 'and'], 'in', ['recent', 'months', 'had', 'been', 'interviewed', 'by']]\n",
+ "[['were', 'confidential,', 'but', 'the', 'company,', 'based'], 'in', ['Bellevue,', 'Wash.,', 'disclosed', 'that', 'the', 'agreement']]\n",
+ "[['for', 'certain', 'allegations\"', 'made', 'against', 'him'], 'in', ['the', 'news', 'media.', 'The', 'closing', 'of']]\n",
+ "[['investigation', 'provides', 'welcome', 'news', 'to', 'Gibbons'], 'in', ['a', 'trying', 'period.', 'A', 'former', 'cocktail']]\n",
+ "[['her', 'after', 'a', 'night', 'of', 'drinking'], 'in', ['Las', 'Vegas', 'just', 'before', 'the', 'November']]\n",
+ "[['years', 'of', 'marriage.', 'The', 'news', 'media'], 'in', ['Nevada', 'have', 'made', 'much', 'of', 'her']]\n",
+ "[['all', 'along,', 'beating', 'the', 'Bills,', '26-17,'], 'in', ['front', 'of', '71,827', 'fans,', 'most', 'of']]\n",
+ "[['answer', 'for.', '\"You', 'bring', 'people', 'in,'], 'in', ['hopes', 'of', 'what', 'you', 'want', 'to']]\n",
+ "[['fullback', 'Tony', 'Richardson', 'said.', '\"You', 'come'], 'in', ['here', 'expecting', 'to', 'play', 'well,', 'knowing']]\n",
+ "[['2006,', 'when', 'they', 'beat', 'the', 'Patriots'], 'in', ['Foxborough,', 'Mass.', 'Never', 'mind', 'that', 'it']]\n",
+ "[['just', 'topped', 'last', \"season's\", 'victory', 'total'], 'in', ['eight', 'games.', '(And', 'never', 'mind', 'that']]\n",
+ "[['into', 'a', 'tie', 'for', 'first', 'place'], 'in', ['the', 'American', 'Football', 'Conference', 'East.)', 'The']]\n",
+ "[['linebacker', 'Calvin', 'Pace', 'said.', 'Favre', 'turned'], 'in', ['a', 'game', 'memorable', 'for', 'how', 'unmemorable']]\n",
+ "[['it', 'was.', 'After', 'throwing', 'seven', 'interceptions'], 'in', ['the', 'three', 'games', 'that', 'preceded', 'this']]\n",
+ "[['throwing', 'passes', 'short', 'and', 'safe,', 'mixing'], 'in', ['the', 'run.', 'Of', 'the', '28', 'passes']]\n",
+ "[['efficient', 'drive', 'to', 'milk', 'the', 'clock'], 'in', ['the', 'fourth', 'quarter,', 'they', 'turned', 'not']]\n",
+ "[['with', '10', 'minutes', '47', 'seconds', 'remaining'], 'in', ['the', 'game,', 'the', 'Jets', 'followed', 'their']]\n",
+ "[['critical.', 'The', 'Bills', 'needed', 'two', 'scores'], 'in', ['about', 'two', 'minutes', 'and', 'got', 'none.']]\n",
+ "[['part', 'of', 'the', 'acquisitions', 'we', 'made'], 'in', ['the', 'off-season,\"', 'tight', 'end', 'Chris', 'Baker']]\n",
+ "[['be,', 'with', 'the', 'guys', 'we', 'brought'], 'in', ['and', 'the', 'guys', 'we', 'have', 'to']]\n",
+ "[[\"Bills'\", 'first', 'drive.', 'Cornerback', 'Darrelle', 'Revis,'], 'in', ['the', 'middle', 'of', 'a', 'Pro', 'Bowl-caliber']]\n",
+ "[[\"Jets'\", 'defense', 'was', 'not', 'done.', 'Late'], 'in', ['the', 'first', 'quarter,', 'Jenkins', 'flattened', 'Edwards,']]\n",
+ "[[\"Jets'\", '8.', 'Elam,', 'who', 'was', 'starting'], 'in', ['place', 'of', 'the', 'injured', 'Eric', 'Smith,']]\n",
+ "[['point', 'since', '2004.', 'They', 'are', '2-1'], 'in', ['the', 'AFC', 'East,', '2-0', 'in', 'the']]\n",
+ "[['2-1', 'in', 'the', 'AFC', 'East,', '2-0'], 'in', ['the', 'division', 'on', 'the', 'road,', 'on']]\n",
+ "[['ingredients', 'when', 'the', 'weather', 'turns', 'worse'], 'in', ['the', 'coming', 'months.', 'On', 'Sunday,', 'the']]\n",
+ "[['and', 'wins', 'Pennsylvania,', 'it', 'will', 'be'], 'in', ['part', 'because', 'of', 'voters', 'like', 'Harry']]\n",
+ "[['who', 'supported', 'Sen.', 'Hillary', 'Rodham', 'Clinton'], 'in', ['the', 'primary', 'and', 'is', 'still', 'not']]\n",
+ "[['as', 'he', 'walked', 'his', 'miniature', 'poodle'], 'in', ['Marconi', 'Park', 'in', 'South', 'Philadelphia,', 'a']]\n",
+ "[['his', 'miniature', 'poodle', 'in', 'Marconi', 'Park'], 'in', ['South', 'Philadelphia,', 'a', 'largely', 'white,', 'Catholic,']]\n",
+ "[['polls', 'point', 'to', 'an', 'Obama', 'victory'], 'in', ['Pennsylvania,', 'with', 'Obama', 'holding', 'a', 'big']]\n",
+ "[['with', 'Obama', 'holding', 'a', 'big', 'lead'], 'in', ['Philadelphia.', 'But', 'the', 'polls', 'are', 'tightening,']]\n",
+ "[['shown', 'no', 'signs', 'of', 'letting', 'up'], 'in', ['the', 'state.', 'As', 'the', 'Republicans', 'try']]\n",
+ "[['the', 'Republicans', 'try', 'to', 'map', 'situations'], 'in', ['which', 'McCain', 'could', 'pull', 'off', 'an']]\n",
+ "[['\"I\\'m', 'spending', 'a', 'lot', 'of', 'time'], 'in', ['Philadelphia,\"', 'said', 'Robert', 'Gleason,', 'the', 'chairman']]\n",
+ "[['they', 'carried', 'none.\"', 'While', 'wealthier', 'whites'], 'in', ['Philadelphia,', 'especially', 'in', 'Center', 'City,', 'overwhelmingly']]\n",
+ "[['While', 'wealthier', 'whites', 'in', 'Philadelphia,', 'especially'], 'in', ['Center', 'City,', 'overwhelmingly', 'support', 'Obama,', 'some']]\n",
+ "[['Philadelphia,', 'McCain', 'signs', 'have', 'cropped', 'up'], 'in', ['the', 'windows', 'of', 'the', 'low', 'brick']]\n",
+ "[['and', 'a', 'lawyer', 'who', 'is', 'steeped'], 'in', ['local', 'politics.', '\"Obama', 'is', 'likely', 'to']]\n",
+ "[['to', 'significantly', 'underperform', 'Kerry', 'and', 'Gore'], 'in', ['those', 'white', 'row-house', 'wards.\"', 'The', 'state']]\n",
+ "[['61,', 'a', 'data', 'processor', 'who', 'lives'], 'in', ['the', 'neighborhood', 'and', 'is', 'helping', 'out']]\n",
+ "[['mate,', 'is', 'being', 'dispatched', 'to', 'speak'], 'in', ['Marconi', 'Park', 'on', 'Monday', 'night', 'for']]\n",
+ "[['doubt', 'that', 'Obama,', 'who', 'won', 'Philadelphia'], 'in', ['the', 'primary,', 'will', 'again', 'sweep', 'the']]\n",
+ "[['about', '80', 'percent', 'of', 'the', 'vote'], 'in', ['Philadelphia,', 'beating', 'President', 'Bush', 'by', '412,000']]\n",
+ "[['send', 'reinforcements.', 'Hillary', 'Clinton', 'is', 'due'], 'in', ['Pittsburgh', 'on', 'Monday;', 'former', 'President', 'Bill']]\n",
+ "[['Clinton', 'is', 'to', 'stump', 'for', 'Obama'], 'in', ['Erie', 'and', 'elsewhere', 'the', 'same', 'day.']]\n",
+ "[['made', 'three', 'in-person', 'pleas', 'to', 'voters'], 'in', ['the', 'eastern', 'part', 'of', 'the', 'state']]\n",
+ "[['said', 'McCain', 'hoped', 'to', 'do', 'better'], 'in', ['the', 'city', 'than', 'Bush', 'did,', 'and']]\n",
+ "[['keep', 'Obama', 'under', 'a', '400,000', 'margin'], 'in', ['Philadelphia.\"', '(He', 'added', 'with', 'a', 'laugh,']]\n",
+ "[['rely', 'on', 'the', \"Republicans'\", 'deepest', 'well'], 'in', ['the', 'state,', 'which,', 'until', '1992,', 'had']]\n",
+ "[['Chester', 'County,', 'is', 'closely', 'contested.', 'Elsewhere'], 'in', ['the', 'state,', 'McCain', 'needs', 'a', 'big']]\n",
+ "[['state,', 'McCain', 'needs', 'a', 'big', 'turnout'], 'in', ['Central', 'Pennsylvania', 'and', 'is', 'making', 'an']]\n",
+ "[['the', 'Obama', 'team', 'on', 'Sunday', 'sent'], 'in', ['Caroline', 'Kennedy.', 'Despite', 'the', 'frenzied', 'last-minute']]\n",
+ "[['analyst', 'at', 'Franklin', '&', 'Marshall', 'College'], 'in', ['Lancaster,', 'said', 'he', 'expected', 'Obama', 'to']]\n",
+ "[['operation,', 'scores', 'of', 'volunteers', 'were', 'hustling'], 'in', ['and', 'out', 'of', 'the', 'new', 'branch']]\n",
+ "[['57,', 'a', 'film', 'curator', 'who', 'lives'], 'in', ['Brooklyn.', 'They', 'said', 'they', 'were', 'also']]\n",
+ "[['by', 'the', 'negative', 'reaction', 'to', 'them'], 'in', ['South', 'Philadelphia.', 'Masone', 'and', 'her', 'friend,']]\n",
+ "[['friend,', 'Eileen', 'Newman,', '62,', 'who', 'works'], 'in', ['film', 'management', 'and', 'lives', 'in', 'Manhattan,']]\n",
+ "[['works', 'in', 'film', 'management', 'and', 'lives'], 'in', ['Manhattan,', 'said', 'that', 'some', 'people', 'said']]\n",
+ "[['election.\"', 'The', 'New', 'York', 'Times', 'said'], 'in', ['editorials', 'for', 'Monday,', 'Nov.', '3:', 'LAME']]\n",
+ "[['when', 'leaders', 'of', '20', 'nations', 'meet'], 'in', ['Washington', 'to', 'discuss', 'the', 'global', 'financial']]\n",
+ "[['crisis.', 'With', 'only', 'two', 'months', 'left'], 'in', ['office,', 'he', 'will', 'not', 'be', 'around']]\n",
+ "[['wait', 'until', 'a', 'more', 'opportune', 'time'], 'in', [\"America's\", 'political', 'cycle.', 'With', 'the', 'world']]\n",
+ "[['his', 'way', 'out,', 'the', 'Americans', 'are'], 'in', ['no', 'position', 'to', 'sign', 'anything.', 'When']]\n",
+ "[['by', 'the', 'made-in-America', 'crisis,', 'as', 'turmoil'], 'in', ['the', 'financial', 'markets', 'weakens', 'economies', 'worldwide,']]\n",
+ "[['And', 'these', 'countries', 'deserve', 'a', 'voice'], 'in', ['any', 'long-term', 'solution.', \"We'd\", 'like', 'to']]\n",
+ "[['financial', 'calamity', '--', 'he', 'will', 'be'], 'in', ['no', 'position', 'to', 'dictate', 'terms', 'to']]\n",
+ "[['and', 'their', 'group', 'health', 'insurance', '--'], 'in', ['a', 'worsening', 'economy,', 'they', 'will', 'have']]\n",
+ "[['scramble', 'to', 'find', 'affordable', 'insurance', 'policies'], 'in', ['the', 'open', 'market.', 'The', 'problems', 'will']]\n",
+ "[['get', 'coverage', 'at', 'all.', 'The', 'inequities'], 'in', ['the', 'health', 'insurance', 'market', 'were', 'described']]\n",
+ "[['the', 'health', 'insurance', 'market', 'were', 'described'], 'in', ['a', 'recent', 'report', 'by', 'the', 'National']]\n",
+ "[['the', 'National', \"Women's\", 'Law', 'Center', 'and'], 'in', ['an', 'article', 'by', 'Robert', 'Pear', 'in']]\n",
+ "[['in', 'an', 'article', 'by', 'Robert', 'Pear'], 'in', ['The', 'Times.', 'If', 'women', 'are', 'covered']]\n",
+ "[['age.', 'The', 'study', 'also', 'found', 'that'], 'in', ['some', 'states', 'insurers', 'are', 'allowed', 'to']]\n",
+ "[['against', 'using', 'gender', 'to', 'set', 'rates'], 'in', ['employer-based', 'health', 'insurance.', 'Surely', 'it', 'is']]\n",
+ "[['is', 'time', 'to', 'eliminate', 'gender-based', 'premiums'], 'in', ['the', 'individual', 'health', 'insurance', 'market', 'as']]\n",
+ "[['Boat', 'statuettes?),', 'but', 'two', 'deserve', 'consideration'], 'in', ['the', 'character', 'assassination', 'category.', 'In', 'the']]\n",
+ "[['assassination', 'category.', 'In', 'the', 'first,', 'Republicans'], 'in', ['Pennsylvania', 'flooded', '75,000', 'Jewish', 'voters', 'with']]\n",
+ "[['retractions', 'were', 'offered', 'once', 'this', 'surfaced'], 'in', ['the', 'press,', 'but', 'too', 'late', 'for']]\n",
+ "[['Dole', 'of', 'North', 'Carolina,', 'who', 'is'], 'in', ['a', 'very', 'tight', 'race,', 'broadcast', 'her']]\n",
+ "[['fringe', 'madness', 'of', '\"Letter', 'from', '2012'], 'in', [\"Obama's\", 'America\"', '--', 'an', 'apocalyptic', 'fiction']]\n",
+ "[['evangelical', 'right,', 'with', 'an', 'audience', 'measured'], 'in', ['the', 'scores', 'of', 'millions.', 'The', 'Democrats']]\n",
+ "[['McCain', 'would', 'cut', 'Social', 'Security', 'benefits'], 'in', ['half.', \"We're\", 'not', 'excusing', 'that', 'ad']]\n",
+ "[[\"Washington's\", 'policy', 'circles', 'these', 'days', '--'], 'in', ['studies,', 'commentaries,', 'meetings,', 'congressional', 'hearings', 'and']]\n",
+ "[['of', 'the', 'most', 'thorough', 'discussions', 'is'], 'in', ['a', 'report', 'by', 'the', 'Washington-based', 'Bipartisan']]\n",
+ "[['Ashton', 'Carter,', 'a', 'senior', 'Pentagon', 'official'], 'in', ['the', 'Clinton', 'administration,', 'wrote', 'a', 'paper']]\n",
+ "[['any', 'true', 'option.\"', 'At', 'a', 'conference'], 'in', ['September', 'in', 'Virginia', 'sponsored', 'by', 'the']]\n",
+ "[['option.\"', 'At', 'a', 'conference', 'in', 'September'], 'in', ['Virginia', 'sponsored', 'by', 'the', 'Washington', 'Institute']]\n",
+ "[['choice', 'but', '\"it', 'may', 'be', 'that'], 'in', ['some', 'terrible', 'world', 'we', 'will', 'have']]\n",
+ "[['with', 'such', 'a', 'terrible', 'choice.\"', 'Early'], 'in', ['the', 'primary', 'campaign,', 'Obama', 'declared', 'that']]\n",
+ "[['as', 'president', 'he', 'would', 'sit', 'down'], 'in', ['his', 'first', 'year', 'in', 'office', 'with']]\n",
+ "[['sit', 'down', 'in', 'his', 'first', 'year'], 'in', ['office', 'with', '--', 'among', 'others', '--']]\n",
+ "[['me', 'nervous,', 'is', \"that's\", 'what', 'happened'], 'in', ['the', 'run-up', 'to', 'the', 'Iraq', 'war.']]\n",
+ "[['and', 'completely', 'focused', 'on', 'hunting', 'al-Qaida'], 'in', ['Afghanistan.', 'In', 'Washington,', 'though,', 'talk', 'quickly']]\n",
+ "[['The', 'question', 'was', 'asked', 'and', 'answered'], 'in', ['policy', 'circles', 'before', 'most', 'Americans', 'knew']]\n",
+ "[['As', 'a', 'diplomatic', 'correspondent', 'for', 'Reuters'], 'in', ['those', 'days,', 'I', 'feel', 'some', 'responsibility']]\n",
+ "[['for', 'President', 'Bill', 'Clinton,', 'said', 'that'], 'in', ['the', 'prelude', 'to', 'Iraq,', 'nearly', 'all']]\n",
+ "[['iconoclastic', 'acting', 'teacher', 'whose', '30', 'years'], 'in', ['Hollywood', 'raised', 'him', 'to', 'guru', 'status']]\n",
+ "[['Hollywood', 'raised', 'him', 'to', 'guru', 'status'], 'in', ['the', 'eyes', 'of', 'hundreds', 'of', 'actors,']]\n",
+ "[['actors,', 'many', 'of', 'them', 'famous,', 'died'], 'in', ['Los', 'Angeles', 'on', 'Oct.', '24.', 'He']]\n",
+ "[['24.', 'He', 'was', '75', 'and', 'lived'], 'in', ['Los', 'Angeles.', 'The', 'cause', 'was', 'a']]\n",
+ "[['the', 'acting', 'school', 'founded', 'by', 'Katselas'], 'in', ['1978.', 'Unlike', 'the', 'methodologists', '--', 'Stanislavski,']]\n",
+ "[['what', 'you', 'are,', 'what', 'was', 'right'], 'in', ['front', 'of', 'him,', 'tweak', 'that,\"', 'Joan']]\n",
+ "[['the', 'television', 'and', 'stage', 'actress,', 'said'], 'in', ['a', 'phone', 'interview', 'on', 'Friday.', '\"And']]\n",
+ "[['into', 'individuals', 'was', 'extraordinary,\"', 'she', 'said'], 'in', ['a', 'phone', 'interview', 'on', 'Friday.', '\"He']]\n",
+ "[['Friday.', '\"He', 'could', 'find', 'the', 'kernel'], 'in', ['you', 'that', 'was', 'holding', 'you', 'back.']]\n",
+ "[['flower', 'child', '(Blythe', 'Danner)', 'who', 'lives'], 'in', ['the', 'next-door', 'apartment.', 'He', 'went', 'to']]\n",
+ "[['directed', '\"40', 'Carats\"', 'with', 'Liv', 'Ullmann'], 'in', ['1973.', 'In', '1983,', 'Katselas', 'was', 'hired']]\n",
+ "[['with', 'Burton,\"', 'he', 'said', 'last', 'year'], 'in', ['an', 'interview', 'with', 'The', 'New', 'York']]\n",
+ "[['why.\"', 'Milton', 'George', 'Katselas', 'was', 'born'], 'in', ['Pittsburgh', 'on', 'Feb.', '22,', '1933,', 'to']]\n",
+ "[['Kazan,', 'a', 'fellow', 'Greek-American,', 'engaged', 'him'], 'in', ['conversation', 'and', 'promised', 'him', 'a', 'job.']]\n",
+ "[['Joshua', 'Logan.', \"Katselas'\", 'two', 'marriages', 'ended'], 'in', ['divorce.', 'He', 'is', 'survived', 'by', 'two']]\n",
+ "[['\"I', 'know', 'it', 'played', 'a', 'part'], 'in', ['his', 'life,\"', 'the', 'actor', 'Miguel', 'Ferrer']]\n",
+ "[['weave', 'of', 'influences', 'that', 'only', 'later'], 'in', ['life', 'led', 'him', 'to', 'the', 'pulpit,']]\n",
+ "[['died', 'Oct.', '24', 'at', 'his', 'home'], 'in', ['Manhattan.', 'He', 'was', '65.', 'He', 'died']]\n",
+ "[['Temple', 'Beth', 'El', 'of', 'Manhattan', 'Beach'], 'in', ['Brooklyn.', '\"My', 'religion', 'changed', 'from', 'Judaism']]\n",
+ "[['from', 'Judaism', 'to', 'classical', 'music,', 'and'], 'in', ['adulthood', 'it', 'changed', 'back', 'again,\"', 'Cotel']]\n",
+ "[['seems', 'beyond', 'question,\"', 'Allen', 'Hughes', 'wrote'], 'in', ['The', 'New', 'York', 'Times', 'in', '1977,']]\n",
+ "[['wrote', 'in', 'The', 'New', 'York', 'Times'], 'in', ['1977,', 'adding', 'that', 'his', 'playing', 'built']]\n",
+ "[['writings', 'of', 'poets', 'and', 'intellectuals', 'murdered'], 'in', ['the', 'Stalinist', 'pogrom', 'of', '1952.', 'It']]\n",
+ "[['of', '1952.', 'It', 'had', 'its', 'premiere'], 'in', ['New', 'York', 'in', '1978', 'with', 'the']]\n",
+ "[['had', 'its', 'premiere', 'in', 'New', 'York'], 'in', ['1978', 'with', 'the', 'actor', 'Richard', 'Dreyfuss']]\n",
+ "[['and', 'was', 'performed', 'around', 'the', 'country'], 'in', ['subsequent', 'years.', 'An', 'epiphany', 'for', 'the']]\n",
+ "[['An', 'epiphany', 'for', 'the', 'composer', 'came'], 'in', ['1994,', 'nine', 'years', 'after', 'the', 'premiere']]\n",
+ "[['was', 'based', 'on', 'the', 'treason', 'conviction'], 'in', ['1894', 'of', 'Alfred', 'Dreyfus,', 'a', 'Jewish']]\n",
+ "[['of', 'Alfred', 'Dreyfus,', 'a', 'Jewish', 'officer'], 'in', ['the', 'French', 'Army', 'whose', 'trial', 'exposed']]\n",
+ "[['Army', 'whose', 'trial', 'exposed', 'deep-rooted', 'anti-Semitism'], 'in', ['France.', 'Opera', 'News', 'praised', 'it', 'as']]\n",
+ "[['Opera', 'News', 'praised', 'it', 'as', '\"compelling'], 'in', ['its', 'traditional', 'lyricism', 'and', 'new-wave', 'originality.\"']]\n",
+ "[['were', 'scheduled', 'for', 'Germany', 'and', 'Austria'], 'in', ['the', 'early', '1990s.', 'To', 'improve', 'his']]\n",
+ "[['tutor,', 'an', 'old', 'German', 'widow', 'living'], 'in', ['Upper', 'Manhattan.', 'After', 'returning', 'from', 'Europe,']]\n",
+ "[['on', 'the', 'street.', 'She', 'greeted', 'him'], 'in', ['Hebrew', 'and', 'told', 'him', 'that', 'she']]\n",
+ "[['rabbi,\"\\'', 'Cotel', 'told', 'The', 'Juilliard', 'Journal'], 'in', ['September.', '\"Without', 'knowing', 'it,', 'I', 'had']]\n",
+ "[['Peabody', 'Conservatory', 'of', 'Johns', 'Hopkins', 'University'], 'in', ['Baltimore.', 'Soon', 'after', 'the', 'encounter', 'with']]\n",
+ "[['at', 'the', 'Academy', 'for', 'Jewish', 'Religion'], 'in', ['the', 'Bronx.', 'In', '2000,', 'he', 'retired']]\n",
+ "[['segment', 'incorporating', 'strains', 'from', \"Gershwin's\", '\"Rhapsody'], 'in', ['Blue\").', 'Morris', 'Cotel', 'was', 'born', 'in']]\n",
+ "[['in', 'Blue\").', 'Morris', 'Cotel', 'was', 'born'], 'in', ['Baltimore', 'on', 'Feb.', '20,', '1943,', 'the']]\n",
+ "[['at', 'the', 'same', 'time', 'was', 'enrolled'], 'in', ['college', 'preparatory', 'courses', 'at', 'the', 'Peabody']]\n",
+ "[['was', 'accepted', 'at', 'the', 'Juilliard', 'School'], 'in', ['New', 'York,', 'where', 'he', 'earned', \"bachelor's\"]]\n",
+ "[['he', 'earned', \"bachelor's\", 'and', \"master's\", 'degrees,'], 'in', ['1964', 'and', '1965.', 'At', '23,', 'he']]\n",
+ "[['he', 'won', 'the', 'prestigious', 'Rome', 'Prize'], 'in', ['music', 'composition.', 'Cotel', 'is', 'said', 'to']]\n",
+ "[['one', 'can', 'call', 'it', 'that', '--'], 'in', ['the', 'Paris', 'New', 'Music', \"Review's\", 'One-Minute']]\n",
+ "[['3,', '2008', '(These', 'corrections', 'will', 'appear'], 'in', ['The', 'New', 'York', 'Times', 'on', 'Monday.']]\n",
+ "[['News', 'Service', 'article', 'about', 'airport', 'expansions'], 'in', ['the', 'United', 'States', 'at', 'a', 'time']]\n",
+ "[['at', 'Detroit.', 'The', 'terminal,', 'which', 'opened'], 'in', ['September,', 'cost', '$431', 'million', '--', 'not']]\n",
+ "[['the', \"airport's\", 'McNamara', 'Terminal', 'that', 'opened'], 'in', ['2002.', 'The', 'Times', 'welcomes', 'comments', 'and']]\n",
+ "[['much', 'fault', 'with', 'the', 'performance', 'turned'], 'in', ['by', 'Patriots', 'quarterback', 'Matt', 'Cassel', 'last']]\n",
+ "[['confident', 'while', 'battling', 'another', 'AFC', 'power'], 'in', ['a', 'hostile', 'environment.', 'If', 'you', 'squinted']]\n",
+ "[['be', 'a', 'sure', 'touchdown', 'pass', 'late'], 'in', ['the', 'third', 'quarter.', 'The', 'Patriots', 'settled']]\n",
+ "[['tying', 'the', 'game', 'at', '15', 'early'], 'in', ['the', 'fourth', 'quarter.', 'Those', 'were', 'the']]\n",
+ "[['Patriots', 'scored.', 'Gaffney', 'took', 'the', 'blame'], 'in', ['the', 'locker', 'room,', 'sitting', 'in', 'a']]\n",
+ "[['blame', 'in', 'the', 'locker', 'room,', 'sitting'], 'in', ['a', 'chair', 'and', 'softly', 'telling', 'reporters']]\n",
+ "[['\"I', 'just', 'dropped', 'the', 'ball.\"', 'But'], 'in', ['an', 'interview', 'room', 'around', 'the', 'corner,']]\n",
+ "[['the', 'Colts', 'converged', 'on', 'Randy', 'Moss'], 'in', ['the', 'slot).', 'But', 'Cassel', 'did', 'know']]\n",
+ "[['winning,', 'which', 'left', 'a', 'bad', 'taste'], 'in', ['his', 'mouth.', '\"It\\'s', 'tough', 'to', 'take,\"']]\n",
+ "[['of', 'his', 'pro', 'career,', 'Cassel', 'stood'], 'in', ['the', 'pocket', 'with', 'confidence', 'and', \"didn't\"]]\n",
+ "[['He', 'rushed', 'five', 'times,', 'scrambling', 'early'], 'in', ['the', 'game', 'to', 'avoid', 'pressure,', 'but']]\n",
+ "[['to', 'avoid', 'pressure,', 'but', 'otherwise', 'stood'], 'in', ['the', 'pocket', 'and', 'delivered', 'his', 'passes']]\n",
+ "[['teammates', 'were', 'offering', 'the', 'same', 'praise'], 'in', ['return.', 'Coach', 'Bill', 'Belichick', \"wouldn't\", 'directly']]\n",
+ "[['compliment', 'his', 'quarterback,', 'choosing', 'to', 'speak'], 'in', ['generalities', 'about', \"Cassel's\", 'performance.', '\"I', 'thought']]\n",
+ "[['\"I', 'thought', 'we', 'played', 'very', 'well'], 'in', ['all', 'areas', 'and', 'just', 'came', 'up']]\n",
+ "[['he', \"couldn't\", 'produce', 'the', 'same', 'magic'], 'in', ['the', 'fourth', 'quarter.', 'After', 'an', 'unnecessary']]\n",
+ "[['contest', 'with', 'the', 'Indianapolis', 'Colts,', 'but'], 'in', ['the', 'end', 'time', 'ran', 'out', '-']]\n",
+ "[['play.', 'Despite', 'rising', 'to', 'the', 'occasion'], 'in', ['yet', 'another', 'Patriots-Colts', 'classic,', 'New', 'England']]\n",
+ "[['with', 'an', '18-15', 'loss', 'last', 'night'], 'in', ['front', 'of', '66,508', 'fans', 'at', 'Lucas']]\n",
+ "[['a', 'three-way', 'tie', 'for', 'first', 'place'], 'in', ['the', 'AFC', 'East', 'with', 'the', 'New']]\n",
+ "[['held', 'a', '34:24', 'to', '25:36', 'advantage'], 'in', ['time', 'of', 'possession,', 'and', 'held', 'the']]\n",
+ "[['Cassel,', 'who', 'acquitted', 'himself', 'quite', 'well'], 'in', ['his', 'matchup', 'against', 'Peyton', 'Manning,', 'going']]\n",
+ "[['penalty,', 'blocking', 'Colts', 'defender', 'Robert', 'Mathis'], 'in', ['the', 'back', 'after', 'the', 'whistle,', 'on']]\n",
+ "[['one', 'who', 'made', 'questionable', 'judgment', 'calls'], 'in', ['the', 'second', 'half.', 'On', 'the', \"Patriots'\"]]\n",
+ "[['no', 'timeouts', 'with', '11:38', 'to', 'go'], 'in', ['the', 'game,', 'had', 'to', 'settle', 'for']]\n",
+ "[['pass', 'at', 'the', '6-yard', 'line', 'earlier'], 'in', ['the', 'drive.', '\"I', 'dropped', 'it,\"', 'said']]\n",
+ "[['made', 'on', 'it', '-', 'proved', 'costly'], 'in', ['the', 'long', 'run', 'New', 'England', 'had']]\n",
+ "[['a', '15-12', 'lead', 'with', '3:12', 'left'], 'in', ['the', 'third', 'quarter.', 'The', \"Patriots'\", 'strategy']]\n",
+ "[['them', \"it's\", 'basically', 'like', 'playing', 'defense'], 'in', ['itself,\"', 'said', 'Patriots', 'cornerback', 'Ellis', 'Hobbs.']]\n",
+ "[['dramatically', 'when', 'Vinatieri', 'boomed', 'a', '52-yarder'], 'in', ['the', 'fourth', 'quarter', 'that', 'provided', 'the']]\n",
+ "[['the', 'Colts', 'with', 'the', 'winning', 'points'], 'in', ['an', '18-15', 'victory', 'over', 'the', 'Patriots']]\n",
+ "[['as', 'the', 'Colts', 'beat', 'the', 'Bears'], 'in', ['the', 'Super', 'Bowl', 'following', 'the', '2006']]\n",
+ "[['the', '2006', 'season.', 'Still,', \"he's\", 'been'], 'in', ['the', 'league', 'for', '13', 'years', 'and']]\n",
+ "[['goal', 'of', '50', 'yards', 'or', 'longer'], 'in', ['the', 'regular', 'season', 'since', '2002.', '\"Really?\"']]\n",
+ "[['I', 'still', 'have', 'some', 'lead', 'left'], 'in', ['the', 'pencil.\"', 'With', 'the', 'game', 'tied,']]\n",
+ "[['There', 'may', 'be', 'some', 'future', '50-plus-yarders'], 'in', [\"Vinatieri's\", 'future', 'because', 'the', 'new', 'Lucas']]\n",
+ "[['three', 'punts.', 'The', 'roof', 'was', 'open'], 'in', ['the', 'stadium,', 'but', 'the', '244-foot', 'wide']]\n",
+ "[['trail', 'undefeated', 'Tennessee', 'by', 'four', 'games'], 'in', ['the', 'AFC', 'South.', '\"Even', 'without', 'Tom']]\n",
+ "[['jtsullivan@globe.com.', 'INDIANAPOLIS', '-', 'Great', 'games', 'come'], 'in', ['different', 'forms.', 'Some', 'are', 'shootouts.', 'Some']]\n",
+ "[['the', 'Colts,', 'also', 'minus', 'key', 'players'], 'in', ['the', 'secondary,', 'needed', 'to', 'go', 'the']]\n",
+ "[['turned', 'out', 'to', 'be', 'the', 'difference'], 'in', ['the', '18-15', 'victory.', '\"You', 'try', 'to']]\n",
+ "[['teams', 'had', 'just', 'seven', 'drives,', 'and'], 'in', ['games', 'like', 'that,', 'coaches', 'and', 'players']]\n",
+ "[['the', 'team', 'that', 'makes', 'the', 'plays'], 'in', ['critical', 'situations', 'that', 'comes', 'out', 'on']]\n",
+ "[['dropped', 'would-be', 'touchdown', 'by', 'Jabar', 'Gaffney'], 'in', ['the', 'third', 'quarter,', 'and', 'a', 'devastating']]\n",
+ "[['range', 'for', 'a', 'tying', 'field', 'goal'], 'in', ['the', 'fourth.', 'It', 'also', 'hurt', 'that']]\n",
+ "[['the', 'result', 'of', 'a', 'failed', 'challenge'], 'in', ['the', 'third', 'quarter', 'in', 'which', 'Bill']]\n",
+ "[['failed', 'challenge', 'in', 'the', 'third', 'quarter'], 'in', ['which', 'Bill', 'Belichick', 'felt', 'the', 'Colts']]\n",
+ "[['the', 'field,', 'another', 'timeout', 'taken', 'later'], 'in', ['that', 'drive,', 'and', 'then', 'a', 'final']]\n",
+ "[['then', 'a', 'final', 'timeout', 'burned', 'early'], 'in', ['the', 'fourth', 'quarter', 'on', 'a', 'fourth-and-1.']]\n",
+ "[['playing', 'cover-2,', 'keeping', 'their', 'two', 'safeties'], 'in', ['the', 'deep', 'part', 'of', 'the', 'field']]\n",
+ "[['the', 'Colts', 'adjusted', 'and', 'found', 'success'], 'in', ['the', 'real', 'estate', 'in', 'front', 'of']]\n",
+ "[['found', 'success', 'in', 'the', 'real', 'estate'], 'in', ['front', 'of', 'those', 'safeties.', 'The', 'same']]\n",
+ "[['8', 'of', '14.', 'The', 'difference', 'came'], 'in', ['the', 'red', 'zone,', 'where', 'the', 'Colts']]\n",
+ "[['red', 'zone,', 'where', 'the', 'Colts', 'cashed'], 'in', ['on', 'both', 'of', 'their', 'trips', 'with']]\n",
+ "[['while', 'the', 'Patriots', 'could', 'punch', 'it'], 'in', ['just', 'once', 'in', 'four', 'tries.', 'That']]\n",
+ "[['could', 'punch', 'it', 'in', 'just', 'once'], 'in', ['four', 'tries.', 'That', 'helps', 'explain', 'how']]\n",
+ "[['still', 'lose.', 'The', 'game', 'was', 'played'], 'in', ['a', 'tidy', '2', 'hours,', '41', 'minutes,']]\n",
+ "[['The', 'execution', 'was', 'something', 'else,', 'and'], 'in', ['the', 'end,', 'Belichick', 'heard', 'more', 'hard']]\n",
+ "[['with', 'a', 'share', 'of', 'first', 'place'], 'in', ['the', 'AFC', 'East', 'scramble.', 'It', 'took']]\n",
+ "[['him)', 'to', 'beat', 'New', 'England,', 'and'], 'in', ['the', 'midnight', 'hour', 'Belichick', 'was', 'grilled']]\n",
+ "[['about', 'going', 'for', 'a', '2-point', 'conversion'], 'in', ['the', 'middle', 'of', 'the', 'third', 'quarter,']]\n",
+ "[['Belichick', 'also', 'had', 'an', 'unsuccessful', 'challenge'], 'in', ['the', 'second', 'half', 'and', 'burned', 'his']]\n",
+ "[['coach.', 'All', 'of', 'them', 'blew', 'up'], 'in', ['his', 'face.', 'And', \"that's\", 'unusual.', 'It']]\n",
+ "[['the', 'hot', 'seat', 'after', 'a', 'game'], 'in', ['which', 'his', 'master', 'plan', 'was', 'particularly']]\n",
+ "[['and', 'the', 'Patriots', 'knew', 'they', 'were'], 'in', ['trouble.', 'So', 'what', 'did', 'Belichick', 'do?']]\n",
+ "[['this', 'game,', 'they', 'would', 'have', 'been'], 'in', ['sole', 'possession', 'of', 'first', 'place', 'in']]\n",
+ "[['in', 'sole', 'possession', 'of', 'first', 'place'], 'in', ['the', 'AFC', 'East.', 'Instead,', 'they', 'are']]\n",
+ "[['They', 'play', 'both', 'at', 'Gillette', 'Stadium'], 'in', ['the', 'next', 'week', 'and', 'a', 'half.']]\n",
+ "[['toward', 'that.\"', 'Playing', 'on', 'national', 'television,'], 'in', ['front', 'of', '66,508', 'people', 'at', 'spectacular']]\n",
+ "[['It', 'was', 'the', \"Patriots'\", 'first', 'game'], 'in', ['the', \"Colts'\", 'new', 'building,', 'which', 'will']]\n",
+ "[['There', 'were', 'only', 'seven', 'offensive', 'possessions'], 'in', ['the', 'first', 'half,', 'which', 'ended', 'with']]\n",
+ "[['not', 'lose', 'yardage', 'on', 'any', 'play'], 'in', ['the', 'drive.', 'The', 'Patriots', 'answered', 'with']]\n",
+ "[['receivers.', 'He', 'was', '8', 'for', '9'], 'in', ['the', 'first', 'half,', 'but', 'the', 'completions']]\n",
+ "[['as', 'you', \"don't\", 'lean', 'too', 'far'], 'in', ['either', 'direction.', \"It's\", 'kind', 'of', 'like']]\n",
+ "[['slip', 'past', 'a', 'great', 'blue', 'heron'], 'in', ['a', 'cypress.', 'We', 'meander', 'around', 'a']]\n",
+ "[['for', 'moccasins', 'above', 'my', 'head,', 'just'], 'in', ['case.', 'Years', 'ago,', 'when', 'I', 'was']]\n",
+ "[['exaggerated.', 'Even', 'so,', 'watching', 'for', 'moccasins'], 'in', ['branches', 'has', 'become', 'a', 'lifelong', 'habit.']]\n",
+ "[['I', 'hope', 'to', 'see', 'a', 'moccasin'], 'in', ['a', 'tree', 'because', 'I', 'like', 'the']]\n",
+ "[['Florida', 'waterway.', 'Paddling', 'a', 'kayak', 'requires,'], 'in', ['addition', 'to', 'balance,', 'paying', 'attention.', 'You']]\n",
+ "[['continent,', 'Senor', 'Ponce', 'named', 'La', 'Florida'], 'in', ['1513.', 'According', 'to', 'some', 'accounts,', 'he']]\n",
+ "[['Leon', 'declined', 'to', 'take', 'a', 'dip'], 'in', ['Spruce', 'Creek.', 'You', \"couldn't\", 'pay', 'me']]\n",
+ "[['You', \"couldn't\", 'pay', 'me', 'to', 'swim'], 'in', ['it', 'on', 'purpose', 'either.', 'The', 'water']]\n",
+ "[['wild', 'side', 'of', 'the', 'river,', 'back'], 'in', ['the', 'trees,', 'lie', 'the', 'hidden', 'mounds']]\n",
+ "[['kayaker', 'sees', 'them', 'too.', 'Turn', 'around'], 'in', ['modern', 'Florida,', 'just', 'before', 'you', 'reach']]\n",
+ "[['than', '2.4-million', 'Episcopalians', 'worldwide', 'and', '34,000'], 'in', ['the', 'bay', 'area,', 'is', 'coming', 'to']]\n",
+ "[['congregations', 'and', 'dioceses', 'are', 'energetically', 'engaged'], 'in', ['serving', 'their', 'neighbors', 'both', 'nearby', 'and']]\n",
+ "[['and', 'far', 'away.', 'What', 'gets', 'reported'], 'in', ['the', 'media', 'is', 'a', 'matter', 'of']]\n",
+ "[['unhappy', 'and', 'very', 'noisy.', \"You've\", 'been'], 'in', ['office', 'for', 'almost', 'two', 'years.', 'Describe']]\n",
+ "[['there', 'are', 'a', 'variety', 'of', 'opinions'], 'in', ['this', 'church', 'about', 'the', 'current', 'hot-button']]\n",
+ "[['opinions', 'about', 'matters', 'of', 'great', 'interest'], 'in', ['the', 'church.', \"I'm\", 'fond', 'of', 'reminding']]\n",
+ "[[\"I'm\", 'fond', 'of', 'reminding', 'people', 'that'], 'in', ['the', 'late', '1800s', 'people', 'were', 'arguing']]\n",
+ "[['The', 'current', 'controversy', 'is', 'not', 'new'], 'in', ['its', 'heat.', 'What', 'is', 'new', 'is']]\n",
+ "[['a', 'matter', 'of', 'learning', 'to', 'live'], 'in', ['the', 'tension', 'of', 'not', 'moving', 'completely']]\n",
+ "[['the', 'tension', 'of', 'not', 'moving', 'completely'], 'in', ['one', 'direction', 'or', 'the', 'other.', \"That's\"]]\n",
+ "[['one', 'of', 'the', 'most', 'liberal', 'denominations'], 'in', ['the', 'United', 'States.', 'How', 'do', 'you']]\n",
+ "[[\"that's\", 'accurate.', \"We're\", 'actually', 'very', 'conservative'], 'in', ['our', 'liturgical', 'tradition.', 'We', 'worship', 'in']]\n",
+ "[['in', 'our', 'liturgical', 'tradition.', 'We', 'worship'], 'in', ['ways', 'that', 'are', 'very', 'much', 'like']]\n",
+ "[['early', 'Christian', 'communities', 'worshiped.', \"We're\", 'conservative'], 'in', ['the', 'sense', 'that', 'we', 'retain', 'the']]\n",
+ "[['from', 'the', 'past.', 'And', \"we're\", 'progressive'], 'in', ['the', 'sense', 'that', 'we', 'think', 'our']]\n",
+ "[['that', 'we', 'think', 'our', 'job', 'is,'], 'in', ['every', 'generation,', 'to', 'present', 'the', 'gospel']]\n",
+ "[['every', 'generation,', 'to', 'present', 'the', 'gospel'], 'in', ['language', 'and', 'images', 'that', 'can', 'be']]\n",
+ "[['their', 'gifts', 'are', 'welcome', 'and', 'needed'], 'in', ['this', 'church', 'and', 'that', 'we', 'lament']]\n",
+ "[['need', 'to', 'pursue', 'their', 'spiritual', 'journey'], 'in', ['another', 'place,', 'we', 'pray', 'all', 'the']]\n",
+ "[['apologize', 'recently', 'for', 'its', 'historical', 'role'], 'in', ['the', 'institution', 'of', 'slavery?', 'The', 'proximate']]\n",
+ "[['passed', 'at', 'our', 'last', 'general', 'convention'], 'in', ['2006', 'asking', 'the', 'church', 'to', 'formally']]\n",
+ "[['to', 'formally', 'apologize', 'for', 'its', 'participation'], 'in', ['the', 'sin', 'of', 'slavery.', 'We', 'did']]\n",
+ "[['sin', 'of', 'slavery.', 'We', 'did', 'that'], 'in', ['a', 'formal', 'way', 'on', 'Oct.', '4.']]\n",
+ "[['of', 'many', 'services', 'that', 'will', 'happen'], 'in', ['local', 'dioceses', 'and', 'in', 'congregations', 'as']]\n",
+ "[['will', 'happen', 'in', 'local', 'dioceses', 'and'], 'in', ['congregations', 'as', 'people', 'begin', 'to', 'discover']]\n",
+ "[['several', 'hundred', 'years.', 'How', \"they've\", 'participated'], 'in', ['slavery,', 'how', \"they've\", 'benefited', 'from', 'slavery,']]\n",
+ "[['they', 'continue', 'to', 'benefit', 'from', 'injustice'], 'in', ['this', 'country.', 'What', 'have', 'you', 'learned']]\n",
+ "[['learned', 'about', 'yourself', 'since', \"you've\", 'been'], 'in', ['office?', \"I've\", 'learned', 'that', 'I', 'keep']]\n",
+ "[['Every', 'day', 'presents', 'opportunities', 'for', 'discovering'], 'in', ['greater', 'depth', 'what', 'it', 'means', 'to']]\n",
+ "[['be', 'a', 'messenger', 'of', 'good', 'news'], 'in', ['this', 'world.', 'How', 'would', 'you', 'characterize']]\n",
+ "[['How', 'would', 'you', 'characterize', 'your', 'time'], 'in', ['office?', 'Busy', 'and', 'full.', 'And', 'a']]\n",
+ "[['joy', 'to', 'see', 'the', 'church', 'engaged'], 'in', ['mission', 'in', 'all', 'its', 'varied', 'parts']]\n",
+ "[['see', 'the', 'church', 'engaged', 'in', 'mission'], 'in', ['all', 'its', 'varied', 'parts', 'and', 'contexts.']]\n",
+ "[['Association', 'of', 'Episcopal', 'Schools', 'biannual', 'meeting'], 'in', ['Tampa.', 'Conference', 'attendees', 'only.', 'Friday:', 'Meets']]\n",
+ "[['reception', 'at', 'St.', \"Mark's\", 'Episcopal', 'Church'], 'in', ['Venice.', 'Tickets', 'required.', 'Saturday:', 'Visits', 'young']]\n",
+ "[['Saturday:', 'Visits', 'young', 'adults', 'at', 'retreat'], 'in', ['Ellenton.', 'Lunches', 'with', 'Southwest', 'Florida', 'diocesan']]\n",
+ "[['School', 'and', 'St.', \"John's\", 'Day', 'School'], 'in', ['Tampa.', 'Sunday:', 'Celebrates', 'the', 'Eucharist', 'and']]\n",
+ "[['Church,', '4311', 'W', 'San', 'Miguel', 'St.'], 'in', ['Tampa.', 'The', 'public', 'is', 'invited.', 'Questions?']]\n",
+ "[['doors', 'opened,', 'they', 'lined', 'up', 'outside'], 'in', ['the', 'dark.', 'Later,', 'they', 'stood', 'in']]\n",
+ "[['in', 'the', 'dark.', 'Later,', 'they', 'stood'], 'in', ['a', 'cold,', 'steady', 'rain.', 'Some', 'cradled']]\n",
+ "[['cradled', 'sleeping', 'children', 'as', 'they', 'waited'], 'in', ['line', 'for', 'hours.', 'In', 'an', 'age']]\n",
+ "[['a', 'record-shattering', 'season', 'of', 'early', 'voting'], 'in', ['Florida.', 'More', 'than', 'a', 'third', 'of']]\n",
+ "[['ballot,', 'nearly', '1.7-million.', 'Many', 'who', 'waited'], 'in', ['long', 'lines', 'Sunday', 'saw', 'this', 'as']]\n",
+ "[['has', 'to', 'open', 'up', 'her', 'business'], 'in', ['the', 'mornings.', 'I', 'work', 'in', 'Tampa']]\n",
+ "[['business', 'in', 'the', 'mornings.', 'I', 'work'], 'in', ['Tampa', 'and', 'take', 'our', 'two', 'kids']]\n",
+ "[['Many', 'of', 'the', 'Obama', 'supporters', 'waiting'], 'in', ['line', 'Sunday', 'said', 'they', \"didn't\", 'trust']]\n",
+ "[['they', \"didn't\", 'trust', 'mail-in', 'ballots.', '\"Not'], 'in', ['Florida,\"', 'said', 'Debra', 'Gooden', 'of', 'Clearwater.']]\n",
+ "[['outside', 'the', 'Supervisor', 'of', 'Elections', 'Office'], 'in', ['Largo', 'provided', 'a', 'captive', 'audience', 'for']]\n",
+ "[['as', 'Sunday,', 'but', 'Hillsborough', 'voters', 'waited'], 'in', ['two-hour', 'lines', 'Sunday', 'for', 'absentee', 'ballots']]\n",
+ "[['absentee', 'ballots', 'at', 'the', 'County', 'Center'], 'in', ['Tampa.', 'Elections', 'employees', 'shuttled', 'groups', 'of']]\n",
+ "[['where', 'they', 'could', 'fill', 'out', 'ballots'], 'in', ['the', 'office', 'or', 'take', 'them', 'home.']]\n",
+ "[['\"Otherwise', \"I'd\", 'probably', 'be', 'standing', 'outside'], 'in', ['some', 'other', 'line,\"', 'said', 'Ed', 'Fine']]\n",
+ "[['midnight', 'rally', 'Sunday', 'and', 'will', 'be'], 'in', ['Tampa', 'first', 'thing', 'this', 'morning.', 'Obama']]\n",
+ "[['first', 'thing', 'this', 'morning.', 'Obama', 'is'], 'in', ['Jacksonville', 'today.', 'The', 'equation', 'is', 'a']]\n",
+ "[['volunteering', 'for', 'Obama,', 'took', 'a', 'break'], 'in', ['the', 'stands', 'of', 'the', 'Ford', 'Amphitheatre']]\n",
+ "[['the', 'stands', 'of', 'the', 'Ford', 'Amphitheatre'], 'in', ['Tampa', 'for', \"Sunday's\", 'free', 'Buffett', 'concert.']]\n",
+ "[['But', 'McCain', \"isn't\", 'going', 'it', 'alone'], 'in', ['Florida.', 'At', 'Square', 'One', 'Burgers', 'in']]\n",
+ "[['in', 'Florida.', 'At', 'Square', 'One', 'Burgers'], 'in', ['South', 'Tampa', 'earlier', 'in', 'the', 'day,']]\n",
+ "[['One', 'Burgers', 'in', 'South', 'Tampa', 'earlier'], 'in', ['the', 'day,', 'about', '225', 'people', 'turned']]\n",
+ "[['A.J.', \"O'Connor,\", 'who', 'happened', 'to', 'be'], 'in', ['town.', 'They', \"hadn't\", 'been', 'to', 'any']]\n",
+ "[['\"We', 'really', 'wish', 'he', \"could've\", 'stayed'], 'in', ['the', 'running,\"', 'Ceragno', 'said.', '\"But', 'we']]\n",
+ "[['He', 'said', 'polls', 'that', 'show', 'Obama'], 'in', ['the', 'lead', 'are', '\"just', 'trying', 'to']]\n",
+ "[['pull', 'off', '\"the', 'greatest', 'comeback', 'victory\"'], 'in', ['history.', '\"Right', 'now,\"', 'he', 'told', 'the']]\n",
+ "[['Langford', 'Green', 'at', 'Florida', 'State', 'University'], 'in', ['Tallahassee.', 'He', 'borrowed', 'the', 'old', 'Reagan']]\n",
+ "[['a', 'maverick', 'if', 'all', \"you've\", 'been'], 'in', ['the', 'last', 'eight', 'years', 'is', 'a']]\n",
+ "[['at', '(813)', '226-3354', 'or', 'azayassptimes.com.', 'McCain'], 'in', ['Tampa', 'Sen.', 'John', 'McCain', 'stops', 'in']]\n",
+ "[['in', 'Tampa', 'Sen.', 'John', 'McCain', 'stops'], 'in', ['Tampa', 'this', 'morning', 'as', 'part', 'of']]\n",
+ "[['19-seat', 'turboprops,', 'among', 'the', 'smallest', 'planes'], 'in', ['commercial', 'aviation.', \"There's\", 'no', 'flight', 'attendant']]\n",
+ "[['parent,', 'Gulfstream', 'International', 'Group,', 'went', 'public'], 'in', ['December', 'after', '20', 'years', 'of', 'private']]\n",
+ "[['lost', '$3-million', 'on', 'revenue', 'of', '$112-million'], 'in', ['2007.', 'One', 'of', 'the', \"company's\", 'other']]\n",
+ "[[\"company's\", 'other', 'businesses', 'has', 'raised', 'eyebrows'], 'in', ['the', 'pilot', 'community.', 'It', 'runs', 'an']]\n",
+ "[['program', 'that', 'includes', 'flying', '250', 'hours'], 'in', ['the', 'right', 'seat', 'of', 'a', 'Gulfstream']]\n",
+ "[['also', 'faces', 'a', 'whistle-blower', 'complaint', 'filed'], 'in', ['December', 'by', 'a', 'former', 'Gulfstream', 'captain.']]\n",
+ "[['he', 'considered', 'too', 'hazardous.', 'A', 'device'], 'in', ['the', 'cockpit', 'that', 'warns', 'pilots', 'of']]\n",
+ "[['at', 'a', 'restaurant', 'near', 'his', 'home'], 'in', ['Phoenix.', '\"I', 'think', 'passengers', 'would', 'rather']]\n",
+ "[['they', 'never', 'performed.', 'The', 'agency', 'concluded'], 'in', ['February', 'that', 'Gulfstream', \"hadn't\", 'broken', 'any']]\n",
+ "[['County', 'Democratic', 'Party', 'has', 'endorsed', 'candidates'], 'in', ['two', 'of', 'three', 'nonpartisan', 'School', 'Board']]\n",
+ "[['recommends', 'Janet', 'Clark', 'over', 'Jennifer', 'Crockett'], 'in', ['the', 'District', '1', 'race,', 'and', 'Nina']]\n",
+ "[['and', 'Nina', 'Hayden', 'over', 'Sean', \"O'Flannery\"], 'in', ['District', '2.', 'The', 'common', 'element?', 'The']]\n",
+ "[['surprisingly', 'well', 'against', 'conservative', 'Ronda', 'Storms'], 'in', ['a', 'state', 'Senate', 'race', 'two', 'years']]\n",
+ "[['Ashley', 'P.', 'from', 'Cypress', 'Creek', 'High'], 'in', ['Orlando.', '\"Its', '(sic)', 'obvious', 'that', 'FCAT']]\n",
+ "[['that', 'FCAT', 'is', 'not', 'the', 'solution'], 'in', ['measuring', 'student', 'abilities,', 'let', 'alone', 'determine']]\n",
+ "[['mouths.', 'Their', 'fans,', 'once', 'boppy', \"'tweens\"], 'in', ['scrunchies', 'and', 'leggings,', 'are', 'now', 'career']]\n",
+ "[['the', 'last', 'row.', 'The', 'fans,', 'decked'], 'in', ['souvenir', 'buttons', 'and', 'their', 'old', 'shirts,']]\n",
+ "[['on', 'New', 'Kids', 'pillowcases,', 'who', 'lived'], 'in', ['their', 'black', 'bomber', 'jackets', 'from', 'the']]\n",
+ "[['they', 'danced', 'on', 'a', 'round', 'platform'], 'in', ['a', 'sea', 'of', 'fans.', 'They', 'brought']]\n",
+ "[['thoroughly', 'reminded', 'of', 'a', 'simple', 'time'], 'in', ['life', 'when', 'their', 'biggest', 'problem', 'was']]\n",
+ "[['The', 'New', 'Kids', 'say', 'it', 'best'], 'in', ['their', 'new', 'song,', 'Summertime', '\"It\\'s', 'been']]\n",
+ "[['right,', 'it', 'also', 'carries', 'certain', 'responsibilities'], 'in', ['fact,', 'state', 'law', 'says', \"it's\", 'up']]\n",
+ "[['could', 'be', 'waits', 'of', 'an', 'hour'], 'in', ['some', 'locations.', 'What', 'sort', 'of', 'identification']]\n",
+ "[['your', 'signature,', 'you', 'need', 'to', 'bring'], 'in', ['something', 'with', 'your', 'signature', 'on', 'it.']]\n",
+ "[['place?', 'No.', 'You', 'have', 'to', 'vote'], 'in', ['the', 'precinct', 'where', \"you're\", 'registered.', 'If']]\n",
+ "[['use', 'it.', 'Can', 'I', 'still', 'vote'], 'in', ['person?', 'Yes,', 'but', 'you', 'should', 'take']]\n",
+ "[['count.', 'You', 'can', 'also', 'return', 'it'], 'in', ['person', 'to', 'the', 'county', 'elections', \"supervisor's\"]]\n",
+ "[['voters.', 'If', 'I', 'am', 'still', 'waiting'], 'in', ['line', 'to', 'vote', 'when', 'the', 'polls']]\n",
+ "[['away?', 'Generally,', 'poll', 'workers', 'allow', 'anyone'], 'in', ['line', 'at', 'closing', 'to', 'vote,', 'as']]\n",
+ "[['matter', 'of', 'how', 'fast', 'the', 'computers'], 'in', ['67', 'counties', 'can', 'tabulate', 'the', 'results']]\n",
+ "[['the', 'side.', 'We', 'put', 'our', 'heads'], 'in', ['the', 'sand.\"', 'Amen', 'to', 'that.', '\"It\\'s']]\n",
+ "[['to', 'that.', '\"It\\'s', 'not', 'here,', 'not'], 'in', ['our', 'churches.', 'Then', 'we', 'found', 'members']]\n",
+ "[['than', 'any', 'other', 'ethnic', 'group.', 'One'], 'in', ['85', 'blacks', 'in', 'Hillsborough', 'County', 'is']]\n",
+ "[['ethnic', 'group.', 'One', 'in', '85', 'blacks'], 'in', ['Hillsborough', 'County', 'is', 'infected.', 'That', 'is']]\n",
+ "[['is', 'more', 'pronounced', 'among', 'women.', 'One'], 'in', ['every', '92', 'black', 'women', 'in', 'Hillsborough']]\n",
+ "[['One', 'in', 'every', '92', 'black', 'women'], 'in', ['Hillsborough', 'is', 'infected.', 'That', 'is', '11']]\n",
+ "[['preys', 'on', 'even', 'fathers', 'and', 'mothers'], 'in', ['the', 'pews,', 'children', 'in', 'Sunday', 'school.']]\n",
+ "[['and', 'mothers', 'in', 'the', 'pews,', 'children'], 'in', ['Sunday', 'school.', 'He', 'wants', 'the', 'full']]\n",
+ "[['congregation,', 'and', 'he', 'wants', 'it', 'based'], 'in', ['his', 'landmark', 'church,', 'one', 'founded', 'in']]\n",
+ "[['in', 'his', 'landmark', 'church,', 'one', 'founded'], 'in', ['1865', 'for', 'freed', 'slaves.', 'He', 'wants']]\n",
+ "[['providing', 'a', 'church', 'for', 'HIV', 'screening'], 'in', ['every', 'county.', \"They're\", 'halfway', 'to', 'their']]\n",
+ "[['beliefs', 'are', 'biblically', 'founded', 'get', 'caught'], 'in', ['a', 'moral', 'paradox.', 'If', 'they', 'base']]\n",
+ "[['never', 'been', 'about', 'options.', 'One', 'church'], 'in', ['Miami', 'resolved', 'the', 'paradox', 'by', 'leaving']]\n",
+ "[['resolved', 'the', 'paradox', 'by', 'leaving', 'condoms'], 'in', ['a', 'garbage', 'can', 'outside', 'the', 'church.']]\n",
+ "[['Brown', 'on', 'the', 'devastation', 'of', 'AIDS'], 'in', [\"Tampa's\", 'black', 'communities.', 'No', 'one', 'need']]\n",
+ "[['seen', 'HIV', 'face-to-face,', 'on', 'his', 'patrols,'], 'in', ['his', 'prison', 'ministry,', 'among', 'ex-inmates,', 'and']]\n",
+ "[['and', 'babies.', 'He', 'has', 'seen', 'it'], 'in', ['the', 'church', 'pews.', '\"We', \"don't\", 'require']]\n",
+ "[['a', 'word', 'he', 'has', 'ever', 'used'], 'in', ['his', 'ministry.', 'Brown', 'was', 'once', 'known']]\n",
+ "[['different.', 'You', 'park', 'your', 'car', 'right,'], 'in', ['one', 'space.', 'You', 'live', 'right,', 'you']]\n",
+ "[['space.', 'You', 'live', 'right,', 'you', 'sleep'], 'in', ['one', 'bed.', 'Brown', 'will', 'not', 'criticize']]\n",
+ "[['strategy,', 'but', 'the', 'Mean', 'Dean', 'Brown'], 'in', ['him', \"can't\", 'bring', 'himself', 'to', 'find']]\n",
+ "[['bring', 'himself', 'to', 'find', 'any', 'good'], 'in', ['the', 'word', 'condom.', \"It's\", 'another', 'way']]\n",
+ "[['name', 'should', 'have', 'been', 'better', 'known'], 'in', ['Tampa.', 'He', 'should', 'have', 'been', 'a']]\n",
+ "[['He', 'should', 'have', 'been', 'a', 'star'], 'in', ['the', 'NAACP.', 'He', 'broke', 'the', 'color']]\n",
+ "[['with', 'the', 'Southern', 'Christian', 'Leadership', 'Conference'], 'in', ['Atlanta', 'and', 'helped', 'him', 'get', 'into']]\n",
+ "[['people', 'say?', 'There', 'was', 'a', 'taboo'], 'in', ['the', 'black', 'churches.', 'There', 'was', 'no']]\n",
+ "[['was', 'no', 'compassion.\"', 'Nealy', 'stopped', 'hiding'], 'in', ['1994,', 'obtaining', 'the', 'medicines', 'that', 'have']]\n",
+ "[['openness', 'through', 'the', 'Minority', 'AIDS', 'Council'], 'in', ['Tampa.', 'He', 'would', 'like', 'the', 'words']]\n",
+ "[['will', 'help', 'anyone.', 'Still,', 'he', 'lives'], 'in', ['alternate', 'worlds.', 'The', 'faith', 'and', 'church']]\n",
+ "[['testing', 'at', 'Greene', 'Chapel', 'AME', 'Church'], 'in', ['Largo.', 'His', 'was', 'the', 'first', 'in']]\n",
+ "[['in', 'Largo.', 'His', 'was', 'the', 'first'], 'in', ['Pinellas.', 'He', 'has', 'formed', 'partnerships', 'with']]\n",
+ "[['has', 'now', 'put', 'almost', '20', 'years'], 'in', ['HIV', 'prevention.', '\"Where', 'do', 'we', 'go']]\n",
+ "[['saying', 'the', 'word', '\"condom.\"', '\"We', 'believe'], 'in', ['abstinence,\"', 'he', 'says.', 'Has', 'Smith', 'ever']]\n",
+ "[['Has', 'Smith', 'ever', 'placed', 'a', 'condom'], 'in', [\"someone's\", 'hands?', 'He', 'pauses', 'for', 'several']]\n",
+ "[['has', 'he', 'ever', 'put', 'a', 'condom'], 'in', ['a', \"person's\", 'hand?', 'He', 'pauses', 'again.']]\n",
+ "[['an', 'advocate', 'with', 'the', 'Father.', 'Here'], 'in', ['the', 'humble', 'Oakhurst', 'Square', 'apartments,', 'words']]\n",
+ "[['an', 'advocate.', \"There's\", 'a', 'Greek', 'word'], 'in', ['the', 'New', 'Testament', 'that', 'also', 'resonates']]\n",
+ "[['The', 'series', 'This', 'is', 'the', 'third'], 'in', ['a', 'series', 'of', 'occasional', 'stories', 'looking']]\n",
+ "[['people', 'reconcile', 'faith,', 'reason', 'and', 'religion'], 'in', ['their', 'lives.', 'To', 'read', 'the', 'others,']]\n",
+ "[['magazine.tampabay.com.', 'Dean', 'Rivett', 'sold', 'his', 'home'], 'in', ['a', 'short', 'sale', 'in', 'September.', 'Like']]\n",
+ "[['his', 'home', 'in', 'a', 'short', 'sale'], 'in', ['September.', 'Like', 'millions', 'of', 'others', 'across']]\n",
+ "[['blame', 'greedy', 'lenders', 'preying', 'on', 'those'], 'in', ['financial', 'trouble.', 'Others', 'point', 'the', 'finger']]\n",
+ "[['predatory', 'lending.', '\"We\\'re', 'looking', 'for', 'restitution'], 'in', ['the', 'seven', 'figures,\"', 'said', 'Jesse', 'Ray']]\n",
+ "[['said', 'Jesse', 'Ray', 'Wagoner,', 'an', 'attorney'], 'in', ['Tampa', 'representing', 'Rivett.', '\"I', 'think', 'they']]\n",
+ "[['really', 'targeted', 'Dean.', 'They', 'trapped', 'him'], 'in', ['a', 'loan', 'that', 'almost', 'guaranteed', \"he'd\"]]\n",
+ "[['always', 'productive,', 'she', 'said.', '\"When', \"you're\"], 'in', ['a', 'M..A..S..H', 'unit', 'doing', 'triage', 'every']]\n",
+ "[['and', 'say,', \"'Who\", 'put', 'this', 'hole'], 'in', ['this', 'person?\\'?\"', 'Charney', 'said.', '\"You', 'just']]\n",
+ "[['Bank', 'at', '14965', 'N.', 'Florida', 'Ave.,'], 'in', ['early', '2007', 'when', 'the', 'banker', 'came']]\n",
+ "[['started', 'taking', 'after', 'a', 'car', 'crash'], 'in', ['2004.', 'Around', 'that', 'time', 'the', 'economy']]\n",
+ "[['deal.', \"Rivett's\", 'home,', 'which', 'he', 'purchased'], 'in', ['2002', 'for', 'a', 'little', 'more', 'than']]\n",
+ "[['recalled.', '\"But', 'this', 'will', 'put', 'money'], 'in', ['your', 'bank', 'right', 'now,', 'and', \"we'll\"]]\n",
+ "[['and', \"we'll\", 'turn', 'around', 'and', 'refinance'], 'in', ['a', 'couple', 'months.\"', 'A', 'few', 'days']]\n",
+ "[['his', 'drug', 'use.', 'After', 'a', 'stint'], 'in', ['rehab', 'helped', 'clear', 'his', 'mind,', 'he']]\n",
+ "[['has', 'one', 'future', 'Hall', 'of', 'Famer'], 'in', ['his', 'corner:', 'former', 'Bucs', 'standout', 'Warren']]\n",
+ "[['State', 'at', 'No.', '6.', 'Wilner', 'explained'], 'in', ['his', 'blog', 'how', 'he', 'put', 'together']]\n",
+ "[['all', 'media', 'types', 'look', 'like', 'clowns'], 'in', ['the', 'eyes', 'of', 'the', 'public.', 'You']]\n",
+ "[['right.', 'Texas', 'remains', 'ahead', 'of', 'Florida'], 'in', ['the', 'BCS', 'standings.', 'But,', 'in', 'more']]\n",
+ "[['Florida', 'in', 'the', 'BCS', 'standings.', 'But,'], 'in', ['more', 'strange', 'AP', 'poll', 'doings,', 'Florida']]\n",
+ "[['best)', 'if', 'we', 'threw', 'them', 'all'], 'in', ['the', 'field', '(and', 'asked)', \"who's\", 'going']]\n",
+ "[['to', 'beat', 'who,', 'the', 'best', 'team'], 'in', ['college', 'football,', 'in', 'my', 'opinion,', 'is']]\n",
+ "[['the', 'best', 'team', 'in', 'college', 'football,'], 'in', ['my', 'opinion,', 'is', 'the', 'Florida', 'Gators.\"']]\n",
+ "[['State,', 'Texas', 'Tech,', 'Florida', 'and', 'Oklahoma'], 'in', ['that', 'order', 'as', 'his', 'top', 'five.']]\n",
+ "[['for', 'apparently', 'pulling', 'down', 'his', 'pants'], 'in', ['a', 'motivational', 'half-time', 'speech.', \"CBS's\", 'Shannon']]\n",
+ "[['has', 'one', 'future', 'Hall', 'of', 'Famer'], 'in', ['his', 'corner:', 'former', 'Bucs', 'standout', 'Warren']]\n",
+ "[['that', 'you', 'could', 'put', 'each', 'one'], 'in', ['a', 'deck', 'of', 'cards.', 'The', 'card']]\n",
+ "[['even', 'up', '9-7.', 'Best', 'story', 'Back'], 'in', ['2004,', 'Illinois', 'Republicans', 'tried', 'to', 'talk']]\n",
+ "[['off', 'No.', '1', 'Texas', 'on', 'Saturday'], 'in', ['the', 'best', 'college', 'game', 'of', 'the']]\n",
+ "[['as', 'the', 'game', 'of', 'the', 'year'], 'in', ['college', 'football.', 'True,', 'the', 'game', 'was']]\n",
+ "[['Sooners', 'and', 'Huskers', 'fans)', 'was', 'tuned'], 'in', ['to', 'Texas-Texas', 'Tech.', 'How', 'strange', 'is']]\n",
+ "[['Oklahoma-Nebraska', \"wasn't\", 'even', 'the', 'best', 'game'], 'in', ['that', 'conference', 'on', 'that', 'day,', 'let']]\n",
+ "[['that', 'you', 'could', 'put', 'each', 'one'], 'in', ['a', 'deck', 'of', 'cards.', 'The', 'card']]\n",
+ "[['even', 'up', '9-7.', 'Best', 'story', 'Back'], 'in', ['2004,', 'Illinois', 'Republicans', 'tried', 'to', 'talk']]\n",
+ "[['off', 'No.', '1', 'Texas', 'on', 'Saturday'], 'in', ['the', 'best', 'college', 'game', 'of', 'the']]\n",
+ "[['as', 'the', 'game', 'of', 'the', 'year'], 'in', ['college', 'football.', 'True,', 'the', 'game', 'was']]\n",
+ "[['Sooners', 'and', 'Huskers', 'fans)', 'was', 'tuned'], 'in', ['to', 'Texas-Texas', 'Tech.', 'How', 'strange', 'is']]\n",
+ "[['Oklahoma-Nebraska', \"wasn't\", 'even', 'the', 'best', 'game'], 'in', ['that', 'conference', 'on', 'that', 'day,', 'let']]\n",
+ "[['team', 'fall', 'behind', 'by', '21', 'points'], 'in', ['the', 'second', 'quarter,', 'Matt', 'Bryant', 'never']]\n",
+ "[['Bryant', 'never', 'dreamed', 'the', 'greatest', 'comeback'], 'in', ['Bucs', 'history', 'would', 'come', 'down', 'to']]\n",
+ "[['times', 'within', 'a', 'matter', 'of', 'seconds'], 'in', ['overtime', 'and', 'the', 'seventh-year', 'pro', 'out']]\n",
+ "[['34-yard', 'field', 'goal', 'with', '4:36', 'elapsed'], 'in', ['overtime', 'gave', 'Tampa', 'Bay', 'an', 'improbable']]\n",
+ "[['The', 'wind', 'was', 'doing', 'goofy', 'things'], 'in', ['that', 'stadium.', 'It', 'was', 'swirling', 'and']]\n",
+ "[['that.', 'When', 'you', 'won', 'the', 'toss'], 'in', ['overtime,', 'how', 'did', 'you', 'feel', 'about']]\n",
+ "[['Mo.', 'Ike', 'Hilliard', 'held', 'his', 'face'], 'in', ['his', 'hands', 'after', 'dressing', 'slowly', 'at']]\n",
+ "[['watching', 'his', 'team', 'fall', 'behind', '24-3'], 'in', ['the', 'first', 'half', 'only', 'to', 'outscore']]\n",
+ "[['and', 'record', 'the', 'biggest', 'comeback', 'win'], 'in', ['franchise', 'history,', 'Hilliard', 'put', 'it', 'into']]\n",
+ "[['road.', 'On', 'the', 'other', 'hand', 'unreal'], 'in', ['terms', 'of', 'the', 'resiliency', 'that', 'these']]\n",
+ "[['Nowhere', 'was', 'that', 'more', 'apparent', 'than'], 'in', ['the', 'final', 'two', 'drives', 'directed', 'by']]\n",
+ "[['tied', 'it', 'with', '19', 'seconds', 'left'], 'in', ['regulation.', 'Garcia', 'kept', 'the', 'football', 'away']]\n",
+ "[['the', 'football', 'away', 'from', 'the', 'Chiefs'], 'in', ['overtime,', 'hitting', 'Michael', 'Clayton', 'for', '29']]\n",
+ "[['that', 'entered', '1-6.', 'Two', 'fumbles', 'came'], 'in', ['the', 'red', 'zone,', 'where', 'Tampa', 'Bay']]\n",
+ "[['a', 'pass', 'into', 'the', 'end', 'zone'], 'in', ['four', 'tries', 'on', 'the', 'final', 'drive']]\n",
+ "[['tremendous', 'catch', 'while', 'tightroping', 'the', 'sideline'], 'in', ['the', 'end', 'zone.', '\"The', 'protection', 'up']]\n",
+ "[['favorite', 'target', 'was', 'Bryant,', 'who', 'hauled'], 'in', ['a', 'team-high', 'eight', 'catches', 'for', '115']]\n",
+ "[['of', 'the', 'two-point', 'conversion,', 'which', 'resulted'], 'in', ['a', 'sprained', 'right', 'ankle,', 'came', 'on']]\n",
+ "[['behind', 'the', 'idle', 'Panthers', 'for', 'first'], 'in', ['the', 'NFC', 'South,', 'won', 'the', 'coin']]\n",
+ "[['was', 'the', 'biggest', 'catch', 'he', 'made'], 'in', ['this', 'game.\"', 'The', 'comeback,', 'however,', 'would']]\n",
+ "[['kickoff', 'return', 'for', 'a', 'touchdown', 'late'], 'in', ['the', 'first', 'half', 'and', 'the', 'forced']]\n",
+ "[['and', 'recovery', 'by', 'safety', 'Tanard', 'Jackson'], 'in', ['the', 'fourth', 'quarter.', \"Jackson's\", 'play', 'came']]\n",
+ "[['snap', 'after', 'Clifton', 'Smith,', 'this', 'time'], 'in', ['at', 'running', 'back,', 'fumbled', 'at', 'the']]\n",
+ "[['made', 'a', 'play.', \"That's\", 'the', 'difference'], 'in', ['this', 'league,\"', 'Bucs', 'coach', 'Jon', 'Gruden']]\n",
+ "[['them.', 'We', 'had', 'a', 'dramatic', 'victory'], 'in', ['Chicago', '(on', 'Sept.', '21),', 'much', 'like']]\n",
+ "[['Road', 'OT', 'victories', 'for', 'the', 'Bucs'], 'in', ['franchise', 'history', '(against', 'nine', 'losses);', 'two']]\n",
+ "[['3-yard', 'touchdown', 'on', 'a', 'halfback', 'pass'], 'in', ['the', 'fourth', 'quarter,', 'the', 'fruition', 'of']]\n",
+ "[['it', 'out', 'a', 'little', 'bit', 'earlier'], 'in', ['the', 'season', 'but', 'never', 'called', 'it,\"']]\n",
+ "[['it,\"', 'Smith', 'said.', '\"We', 'put', 'it'], 'in', ['(the', 'game', 'plan)', 'this', 'week', 'because']]\n",
+ "[['me,', 'so', 'he', 'just', 'put', 'it'], 'in', ['the', 'vicinity.', 'Fortunately,', 'the', 'defense', 'bit']]\n",
+ "[['see', 'they', 'were', 'digging', 'their', 'cleats'], 'in', ['there.\"', 'Depending', 'on', 'how', 'you', 'look']]\n",
+ "[['takes', 'the', 'lead', 'with', '57', '(54'], 'in', ['the', 'regular', 'season', 'and', 'three', 'in']]\n",
+ "[['in', 'the', 'regular', 'season', 'and', 'three'], 'in', ['the', 'postseason', 'all', 'during', 'Tampa', \"Bay's\"]]\n",
+ "[['the', 'all-time', 'list', 'with', '45', 'wins'], 'in', ['1976-1984.', 'In', 'his', 'seventh', 'season', 'with']]\n",
+ "[['won', 'three', 'division', 'titles,', 'the', 'most'], 'in', ['team', 'history,', 'and', 'led', 'the', 'team']]\n",
+ "[['97-yard', 'kickoff', 'return', 'for', 'a', 'touchdown'], 'in', ['the', 'second', 'quarter.', 'Was', 'it', 'the']]\n",
+ "[['yards', 'to', 'the', 'Chiefs', '3-yard', 'line'], 'in', ['the', 'fourth', 'quarter.', 'The', 'Bucs', 'appeared']]\n",
+ "[['QB', 'Jeff', 'Garcia', 'attempted', '43', 'passes'], 'in', ['an', 'effort', 'to', 'rally,', 'making', 'their']]\n",
+ "[['on', 'top.\"', 'The', 'Bucs', \"weren't\", 'successful'], 'in', ['giving', 'Garcia', 'adequate', 'time', 'to', 'throw']]\n",
+ "[['Garcia', 'adequate', 'time', 'to', 'throw', 'late'], 'in', ['last', \"week's\", 'loss', 'to', 'Dallas.', 'Against']]\n",
+ "[['QB', 'Jeff', 'Garcia', 'attempted', '43', 'passes'], 'in', ['an', 'effort', 'to', 'rally,', 'making', 'their']]\n",
+ "[['on', 'top.\"', 'The', 'Bucs', \"weren't\", 'successful'], 'in', ['giving', 'Garcia', 'adequate', 'time', 'to', 'throw']]\n",
+ "[['Garcia', 'adequate', 'time', 'to', 'throw', 'late'], 'in', ['last', \"week's\", 'loss', 'to', 'Dallas.', 'Against']]\n",
+ "[[\"hasn't\", 'had', 'a', 'propensity', 'for', 'fumbles'], 'in', ['his', 'Bucs', 'career,', 'but', 'he', \"won't\"]]\n",
+ "[['against', 'Kansas', 'City.', 'In', '271', 'touches'], 'in', ['2007,', 'when', 'he', 'had', 'his', 'heaviest']]\n",
+ "[['60', 'yards', 'to', 'the', 'Chiefs', '7'], 'in', ['the', 'fourth', 'quarter.', 'He', 'lost', 'the']]\n",
+ "[['plays', 'on', 'the', 'tying', 'drive', 'late'], 'in', ['the', 'fourth', 'quarter.', '\"The', 'biggest', 'thing']]\n",
+ "[['of', 'ups', 'and', 'downs.', \"That's\", 'life'], 'in', ['general.', \"It's\", 'about', 'what', 'you', 'do']]\n",
+ "[['gives', 'him', '18', '300-yard', 'passing', 'games'], 'in', ['his', 'career.', '.', 'Bucs', 'TEs', 'Alex']]\n",
+ "[['QB', 'Jeff', 'Garcia', 'attempted', '43', 'passes'], 'in', ['an', 'effort', 'to', 'rally,', 'making', 'their']]\n",
+ "[['on', 'top.\"', 'The', 'Bucs', \"weren't\", 'successful'], 'in', ['giving', 'Garcia', 'adequate', 'time', 'to', 'throw']]\n",
+ "[['Garcia', 'adequate', 'time', 'to', 'throw', 'late'], 'in', ['last', \"week's\", 'loss', 'to', 'Dallas.', 'Against']]\n",
+ "[['3-yard', 'touchdown', 'on', 'a', 'halfback', 'pass'], 'in', ['the', 'fourth', 'quarter,', 'the', 'fruition', 'of']]\n",
+ "[['it', 'out', 'a', 'little', 'bit', 'earlier'], 'in', ['the', 'season', 'but', 'never', 'called', 'it,\"']]\n",
+ "[['it,\"', 'Smith', 'said.', '\"We', 'put', 'it'], 'in', ['(the', 'game', 'plan)', 'this', 'week', 'because']]\n",
+ "[['me,', 'so', 'he', 'just', 'put', 'it'], 'in', ['the', 'vicinity.', 'Fortunately,', 'the', 'defense', 'bit']]\n",
+ "[['see', 'they', 'were', 'digging', 'their', 'cleats'], 'in', ['there.\"', 'Fumble', 'trouble', '.', 'RB', 'Earnest']]\n",
+ "[[\"hasn't\", 'had', 'a', 'propensity', 'for', 'fumbles'], 'in', ['his', 'Bucs', 'career,', 'but', 'he', \"won't\"]]\n",
+ "[['against', 'Kansas', 'City.', 'In', '271', 'touches'], 'in', ['2007,', 'when', 'he', 'had', 'his', 'heaviest']]\n",
+ "[['60', 'yards', 'to', 'the', 'Chiefs', '7'], 'in', ['the', 'fourth', 'quarter.', 'He', 'lost', 'the']]\n",
+ "[['plays', 'on', 'the', 'tying', 'drive', 'late'], 'in', ['the', 'fourth', 'quarter.', '\"The', 'biggest', 'thing']]\n",
+ "[['of', 'ups', 'and', 'downs.', \"That's\", 'life'], 'in', ['general.', \"It's\", 'about', 'what', 'you', 'do']]\n",
+ "[['takes', 'the', 'lead', 'with', '57', '(54'], 'in', ['the', 'regular', 'season', 'and', 'three', 'in']]\n",
+ "[['in', 'the', 'regular', 'season', 'and', 'three'], 'in', ['the', 'postseason', 'all', 'during', 'Tampa', \"Bay's\"]]\n",
+ "[['the', 'all-time', 'list', 'with', '45', 'wins'], 'in', ['1976-1984.', 'In', 'his', 'seventh', 'season', 'with']]\n",
+ "[['won', 'three', 'division', 'titles,', 'the', 'most'], 'in', ['team', 'history,', 'and', 'led', 'the', 'team']]\n",
+ "[['97-yard', 'kickoff', 'return', 'for', 'a', 'touchdown'], 'in', ['the', 'second', 'quarter.', 'Was', 'it', 'the']]\n",
+ "[['gives', 'him', '18', '300-yard', 'passing', 'games'], 'in', ['his', 'career.', '.', 'Bucs', 'TEs', 'Alex']]\n",
+ "[[\"Artyukhin's\", 'return', 'after', 'two', 'years', 'playing'], 'in', ['his', 'native', 'Russia.', 'It', 'was', 'perfect']]\n",
+ "[['Artyukhin', 'as', 'well,', 'as', 'the', 'Lightning,'], 'in', ['desperate', 'need', 'of', 'big,', 'physical', 'bodies,']]\n",
+ "[['to', 'succeed.', 'He', 'was', 'a', 'differencemaker'], 'in', [\"Saturday's\", '3-2', 'victory', 'over', 'the', 'Senators']]\n",
+ "[['six', 'hits,', 'and', 'the', 'winning', 'goal'], 'in', ['the', 'eighth', 'round', 'of', 'the', 'shootout.']]\n",
+ "[['$1.9-million', 'deal,', 'is', 'a', 'rough-edged', 'work'], 'in', ['progress.', 'He', 'loves', 'carrying', 'the', 'puck']]\n",
+ "[['though', 'not', 'as', 'much', 'as', 'earlier'], 'in', ['the', 'season.', 'He', 'is', 'not', 'afraid']]\n",
+ "[['time', 'before', 'he', 'starts', 'putting', 'some'], 'in', ['the', 'net.', 'Most', 'notable,', 'though,', 'is']]\n",
+ "[['17', 'points', 'and', '90', 'penalty', 'minutes'], 'in', ['72', 'games', 'for', 'Tampa', 'Bay', 'in']]\n",
+ "[['in', '72', 'games', 'for', 'Tampa', 'Bay'], 'in', ['2005-06.', '\"In', 'my', 'mind,', 'I', 'feel']]\n",
+ "[['Coach', 'Bobby', 'Bowden', \"can't\", 'recall', 'losing'], 'in', ['quite', 'the', 'same', 'fashion', 'as', \"Saturday's\"]]\n",
+ "[['a', 'fumble', 'near', 'the', 'goal', 'line'], 'in', ['the', 'final', 'minute.', '\"I', 'guess', 'if']]\n",
+ "[['goals.', 'And', 'there', 'was', 'the', 'night'], 'in', ['1995', 'at', 'Virginia', 'when', 'Warrick', 'Dunn']]\n",
+ "[['been', 'one', 'of', 'the', 'best', 'comebacks'], 'in', ['FSU', 'history,', 'a', '\"masterpiece,\"', 'perhaps', 'mentioned']]\n",
+ "[['from', '28', 'down', 'to', 'tie', 'Florida'], 'in', ['the', '\"Choke', 'at', 'Doak,\"', 'and', 'the']]\n",
+ "[['believe', 'that,', 'despite', 'trailing', 'by', '14'], 'in', ['the', 'first', 'half', 'and', '11', 'in']]\n",
+ "[['in', 'the', 'first', 'half', 'and', '11'], 'in', ['the', 'fourth', 'quarter,', 'they', 'would', 'win.']]\n",
+ "[['by', 'Kansas', 'City', 'the', 'biggest', 'comeback'], 'in', ['the', 'history', 'of', 'our', 'franchise', 'today.']]\n",
+ "[['who', 'love', 'the', 'game', 'and', 'believe'], 'in', ['what', \"we're\", 'doing.', 'And', 'they', 'know']]\n",
+ "[['their', 'own', 'to', 'get', 'right', 'back'], 'in', ['the', 'game.', 'They', 'had', 'a', 'lot']]\n",
+ "[['do', 'have', 'character', 'and', 'we', 'are'], 'in', ['the', 'race,', 'and', \"that's\", 'significant.\"', 'On']]\n",
+ "[['back.', 'We', 'had', 'two', 'young', 'guys'], 'in', ['there,', 'and', 'one', 'of', 'them', 'was']]\n",
+ "[['this', 'week.', 'Actually,', '(Thigpen)', 'dropped', 'it'], 'in', ['practice', 'and', 'then', 'we', 'came', 'back']]\n",
+ "[['little', 'farther.', 'The', 'one', 'we', 'did'], 'in', ['practice', 'he', 'was', 'standing', 'in', 'the']]\n",
+ "[['did', 'in', 'practice', 'he', 'was', 'standing'], 'in', ['the', 'end', 'zone.', 'Mark', 'threw', 'a']]\n",
+ "[['to', 'see', 'how', 'he', 'has', 'fared'], 'in', ['the', 'British', 'press.', 'The', 'day', 'after']]\n",
+ "[['of', 'another', 'four', 'years', 'of', 'Republicans'], 'in', ['the', 'White', 'House.', 'If', 'everyone', 'on']]\n",
+ "[['If', 'everyone', 'on', 'Earth', 'could', 'vote'], 'in', [\"Tuesday's\", 'election,', 'Obama', 'would', 'win', 'in']]\n",
+ "[['in', \"Tuesday's\", 'election,', 'Obama', 'would', 'win'], 'in', ['a', 'landslide,', 'according', 'to', 'an', 'online']]\n",
+ "[['(Obama),', 'with', 'the', 'latter', 'so', 'overwhelming'], 'in', ['number', 'as', 'to', 'make', 'a', 'global']]\n",
+ "[['has', 'supported', 'both', 'Republicans', 'and', 'Democrats'], 'in', ['the', 'past,', 'said', 'it', 'would', 'vote']]\n",
+ "[['hero', 'for', 'upstaging', 'the', 'Bush', 'administration'], 'in', ['dealing', 'with', 'the', 'global', 'financial', 'crisis.']]\n",
+ "[['country', 'that', 'has', 'suffered', 'significant', 'casualties'], 'in', ['Iraq,', 'McCain', 'is', 'seen', 'as', 'too']]\n",
+ "[['member', 'of', 'the', 'European', 'Parliament,', 'wrote'], 'in', ['the', 'Daily', 'Telegraph.', '\"Some', 'white', 'Americans,']]\n",
+ "[['its', '49-10', 'victory', 'over', 'rival', 'Georgia'], 'in', ['the', 'records,', 'the', 'Gators', 'practiced', 'Sunday']]\n",
+ "[['up', 'one', 'spot', 'to', 'No.', '4'], 'in', ['the', 'AP', 'poll', 'Sunday,', 'and', 'rose']]\n",
+ "[['rose', 'two', 'spots', 'to', 'No.', '5'], 'in', ['the', \"coaches'\", 'poll.', 'And', 'with', 'then-No.']]\n",
+ "[['defense', 'is', 'ranked', 'No.', '5', 'nationally'], 'in', ['scoring,', 'allowing', '11.6', 'points', 'per', 'game,']]\n",
+ "[['points', 'per', 'game,', 'and', 'No.', '13'], 'in', ['rushing,', '103.1', 'yards.', 'The', 'Gators', 'have']]\n",
+ "[['have', 'not', 'allowed', 'a', 'rushing', 'touchdown'], 'in', ['two', 'games,', 'and', 'they', 'are', 'tied']]\n",
+ "[['has', 'had', 'at', 'least', 'one', 'interception'], 'in', ['seven', 'of', 'eight', 'games.', 'The', \"Gators'\"]]\n",
+ "[['seen', 'many', 'marathons', 'that', 'are', 'decided'], 'in', ['the', 'last', 'minute,\"', 'Gomes', 'said.', '\"So']]\n",
+ "[['his', 'second', 'New', 'York', 'City', 'Marathon'], 'in', ['three', 'years', 'with', 'a', 'time', 'of']]\n",
+ "[['one', 'of', 'the', 'most', 'remarkable', 'reversals'], 'in', ['major', 'marathon', 'history.', '\"I', 'proved', 'it']]\n",
+ "[['time,\"', 'said', 'the', '31-year-old', 'Gomes,', 'who,'], 'in', ['2006,', 'outran', 'five', 'Kenyans', 'and', 'the']]\n",
+ "[['becoming', 'the', 'first', 'US', \"men's\", 'winner'], 'in', ['26', 'years', 'dissolved', 'on', 'First', 'Avenue']]\n",
+ "[['homeboys.', 'There', 'were', 'four', 'American', 'men'], 'in', ['the', 'top', '10', 'for', 'the', 'first']]\n",
+ "[[\"Britain's\", 'Paula', 'Radcliffe', 'had', 'a', 'walk'], 'in', ['the', 'park,', 'winning', 'her', 'third', 'title']]\n",
+ "[['the', 'park,', 'winning', 'her', 'third', 'title'], 'in', ['five', 'years', 'by', 'finishing', 'in', '2:23:56.']]\n",
+ "[['title', 'in', 'five', 'years', 'by', 'finishing'], 'in', ['2:23:56.', 'She', 'crossed', '1', 'minute', '47']]\n",
+ "[['with', 'Kara', 'Goucher', 'a', 'startling', 'third'], 'in', ['2:25:53,', 'the', 'best', \"women's\", 'marathon', 'debut']]\n",
+ "[['podium', 'finish', 'since', 'Anne', 'Marie', 'Letko'], 'in', ['1994.', '\"As', 'much', 'as', 'I', 'was']]\n",
+ "[['the', '30-year-old', 'Goucher,', 'who', 'was', 'born'], 'in', ['Queens', 'and', 'whose', 'father', 'was', 'killed']]\n",
+ "[['killed', 'here', 'by', 'a', 'drunk', 'driver'], 'in', ['1982.', '\"I\\'ll', 'be', 'back', 'for', 'sure.\"']]\n",
+ "[['sure.\"', 'It', 'was', 'the', 'first', 'time'], 'in', ['her', 'three', 'victories', 'that', 'Radcliffe', \"wasn't\"]]\n",
+ "[[\"Kenya's\", 'Susan', 'Chepkemei', 'by', 'three', 'seconds'], 'in', ['the', 'closest', \"women's\", 'finish', 'in', 'race']]\n",
+ "[['seconds', 'in', 'the', 'closest', \"women's\", 'finish'], 'in', ['race', 'history.', 'Last', 'year,', 'though', 'she']]\n",
+ "[['miles,', 'posting', 'the', 'biggest', 'victory', 'margin'], 'in', ['nine', 'years.', '\"It', 'was', 'nice', 'to']]\n",
+ "[['and', 'now', 'is', '8', 'for', '8'], 'in', ['marathons', 'not', 'held', 'at', 'Olympus.', 'Radcliffe,']]\n",
+ "[['the', 'wind,\"', 'she', 'said.', '\"Everyone', 'was'], 'in', ['single', 'file', 'behind', 'me.', 'I', 'thought,']]\n",
+ "[['who', 'finished', 'out', 'of', 'the', 'medals'], 'in', ['both', 'the', '5,000', 'and', '10,000', 'meters']]\n",
+ "[['both', 'the', '5,000', 'and', '10,000', 'meters'], 'in', ['Beijing', 'and', 'never', 'had', 'run', 'longer']]\n",
+ "[['and', 'Goumri', 'ran', 'shoulder', 'to', 'shoulder'], 'in', ['and', 'out', 'of', 'the', 'Bronx,', 'until']]\n",
+ "[['By', 'the', 'time', 'they', 'went', 'back'], 'in', ['for', 'the', 'final', 'time,', 'Gomes', 'was']]\n",
+ "[['gone.', 'It', 'was', 'the', 'third', 'time'], 'in', ['two', 'years', 'that', 'Goumri', 'had', 'finished']]\n",
+ "[['years', 'that', 'Goumri', 'had', 'finished', 'second'], 'in', ['a', 'major', 'marathon,', 'but', 'he', 'was']]\n",
+ "[['for', 'me,\"', 'said', 'Mikitenko,', 'who', 'won'], 'in', ['London', 'and', 'Berlin', 'this', 'year', 'and']]\n",
+ "[['Berlin', 'this', 'year', 'and', 'was', 'second'], 'in', ['Berlin', 'last', 'year.', '\"It', 'was', 'a']]\n",
+ "[[\"yesterday's\", 'race', 'after', 'breaking', 'his', 'foot'], 'in', ['the', 'Lisbon', 'half', 'marathon,', 'already', 'had']]\n",
+ "[['by', 'improving', 'on', 'her', 'third-place', 'finish'], 'in', ['London', 'last', 'spring.', 'When', 'she', 'placed']]\n",
+ "[['65', 'points.', 'Since', 'they', 'were', 'tied'], 'in', ['head-to-head', 'results', 'at', 'one', 'apiece,', 'the']]\n",
+ "[['based', 'on', 'her', 'scoring', 'her', 'points'], 'in', ['three', 'races', 'to', \"Wami's\", 'four', 'and']]\n",
+ "[['new', 'ballgame.', '(I', 'follow', 'common', 'usage'], 'in', ['dispensing', 'with', 'the', 'adverb', 'wholly', 'because']]\n",
+ "[['hunters', 'say,', 'on', 'the', 'emphasis', 'shift'], 'in', ['this', 'phrase', 'with', 'my', 'favorite', 'etymological']]\n",
+ "[['early', 'usage', 'of', 'the', 'shifted', 'stress'], 'in', ['a', 'violent', 'song', 'by', 'the', 'heavy-metal']]\n",
+ "[['picked', 'up', 'by', 'television', 'advertising', 'copywriters'], 'in', ['scenes', 'dramatizing', 'creative', 'work', 'in', 'boardrooms:']]\n",
+ "[['copywriters', 'in', 'scenes', 'dramatizing', 'creative', 'work'], 'in', ['boardrooms:', 'An', 'executive', 'asks', 'for', 'ideas,']]\n",
+ "[['what', 'the', 'pioneer', 'slanguist', 'Francis', 'Grose'], 'in', ['his', '1811', 'dictionary', 'called', '\"the', 'vulgar']]\n",
+ "[['event.\"', 'Here', 'is', 'a', 'vogue', 'phrase'], 'in', ['which', 'punctuation', 'marks', 'define', 'meaning.', 'If']]\n",
+ "[['get', 'moving,', 'Buster,', 'or', 'get', 'trampled'], 'in', ['the', 'rush.', 'BOOTS', 'ON', 'THE', 'GROUND']]\n",
+ "[['the', 'lead', 'on', 'Dan', \"Balz's\", 'report'], 'in', ['The', 'Washington', 'Post', 'of', 'the', 'Obama']]\n",
+ "[['of', 'the', 'Obama', \"campaign's\", 'final', 'thrust'], 'in', ['Colorado.', 'This', 'used', 'to', 'be', 'a']]\n",
+ "[['Army', 'Historical', 'Foundation,', 'can', 'find', 'is'], 'in', ['an', 'April', '11,', '1980,', 'article', 'in']]\n",
+ "[['in', 'an', 'April', '11,', '1980,', 'article'], 'in', ['The', 'Christian', 'Science', 'Monitor.', 'During', 'the']]\n",
+ "[['for', 'a', 'rescue', 'operation1', 'were', 'made'], 'in', ['the', 'Carter', 'administration,', 'and', 'there', 'were']]\n",
+ "[['soon', 'triumphed', 'over', 'the', 'formal', '\"infantry'], 'in', ['the', 'field.\"', 'The', 'word', 'boot,', 'in']]\n",
+ "[['in', 'the', 'field.\"', 'The', 'word', 'boot,'], 'in', ['this', 'symbolism,', 'does', 'not', 'stand', 'for']]\n",
+ "[['boots,', 'and', 'their', 'introduction', 'to', 'service'], 'in', ['World', 'War', 'II', 'was', 'in', 'boot']]\n",
+ "[['service', 'in', 'World', 'War', 'II', 'was'], 'in', ['boot', 'camp.', 'As', 'mechanized', 'armor,', 'air']]\n",
+ "[['overshadowed,', 'but', 'as', 'T.R.', 'Fehrenbach', 'wrote'], 'in', ['1963', 'about', 'the', 'Korean', 'conflict,', 'to']]\n",
+ "[['did,', 'by', 'putting', 'your', 'young', 'men'], 'in', ['the', 'mud.\"', 'By', 'the', 'time', 'of']]\n",
+ "[['U.S.', '\"boots\"', 'from', 'Iraq.', 'However,', 'candidates'], 'in', ['both', 'political', 'camps', '(military', 'metaphors', 'are']]\n",
+ "[['political', 'camps', '(military', 'metaphors', 'are', 'common'], 'in', ['politics)', 'agreed', 'on', 'the', 'need', 'for']]\n",
+ "[['troops', 'to', 'suppress', 'a', 'rising', 'threat'], 'in', ['Afghanistan.', 'In', 'time,', 'defense', 'and', 'diplomatic']]\n",
+ "[['diplomatic', 'officials', 'responsible', 'for', 'national', 'security'], 'in', ['the', 'incoming', 'administration', 'will', 'face', 'a']]\n",
+ "[['administration', 'will', 'face', 'a', 'question', 'framed'], 'in', ['a', 'phrase', 'with', 'historical', 'echoes:', 'Will']]\n",
+ "[['fax:', '732-390-4697;', 'e-mail:', 'weyded@nytimes.com.', 'CONNIE', 'WHITE'], 'in', ['the', 'Midwest', 'at', '816-333-4004;', 'e-mail:', 'nytimes.conniewhite@earthlink.net.']]\n",
+ "[['EAST,', 'AFRICA', 'and', 'INDIA:', 'PHILIPPE', 'HERTZBERG'], 'in', ['Paris,', 'France,', 'at', '33-1-53-05-76-50;', 'fax:', '33-1-47-42-80-44;']]\n",
+ "[['fax:', '33-1-47-42-80-44;', 'e-mail:', 'hertzberg@nytimes.com.', 'MILENA', 'TREVISANI'], 'in', ['Barcelona,', 'Spain,', 'at', '34-93-218-8398;', 'e-mail:', 'trevisani@nytimes.com.']]\n",
+ "[['at', '34-93-218-8398;', 'e-mail:', 'trevisani@nytimes.com.', 'ISABEL', 'WIESMANN'], 'in', ['Bad', 'Nauheim,', 'Germany,', 'at', '49-173-703-9485;', 'e-mail:']]\n",
+ "[['and', 'the', 'PACIFIC', 'RIM:', 'ALVIN', \"CH'NG\"], 'in', ['Singapore', 'at', '65-6832-8098;', 'fax:', '65-6736-0283;', 'e-mail:']]\n",
+ "[['chng@nytimes.com.', '--LATIN', 'AMERICA:', 'ISABEL', 'AMORIM', 'SICHERLE'], 'in', ['Sao', 'Paulo,', 'Brazil,', 'at', '55-11-3812-5588;', 'fax:']]\n",
+ "[['Gunmen', 'kidnapped', 'a', 'French', 'aid', 'worker'], 'in', ['central', 'Kabul', 'Monday', 'morning', 'and', 'shot']]\n",
+ "[['of', 'incidents', 'spreading', 'alarm', 'among', 'foreigners'], 'in', ['the', 'capital.', 'It', 'was', 'carried', 'out']]\n",
+ "[['nationality,', 'Gayle', 'Williams,', '34,', 'was', 'killed'], 'in', ['Kabul', 'and', 'the', 'Taliban', 'said', 'it']]\n",
+ "[['an', 'Afghan', 'working', 'as', 'a', 'driver'], 'in', ['the', 'intelligence', 'service', 'tackled', 'one', 'of']]\n",
+ "[['drove', 'off,', 'witnesses', 'said.', 'News', 'reports'], 'in', ['Paris', 'said', 'the', 'abducted', 'man', 'was']]\n",
+ "[['and', 'education', 'expert', 'who', 'had', 'been'], 'in', ['Kabul', 'for', 'only', 'a', 'week.', 'He']]\n",
+ "[['colleagues', 'from', 'AFRANE,', 'which', 'also', 'specializes'], 'in', ['education', 'projects,', 'but', 'worked', 'for', 'a']]\n",
+ "[['has', 'been', 'a', 'string', 'of', 'kidnappings'], 'in', ['the', 'capital', 'and', 'neighboring', 'provinces', 'recently']]\n",
+ "[['of', 'a', 'prominent', 'banker', 'were', 'kidnapped'], 'in', ['recent', 'weeks', 'but', 'were', 'freed', 'by']]\n",
+ "[['to', 'be', 'released', 'because', 'of', 'failings'], 'in', ['the', 'judicial', 'system.', 'In', 'a', 'separate']]\n",
+ "[['the', 'Ministry', 'of', 'Information', 'and', 'Culture'], 'in', ['central', 'Kabul,', 'then', 'blew', 'himself', 'up,']]\n",
+ "[['were', 'shot', 'dead', 'outside', 'their', 'office'], 'in', ['Kabul.', 'The', 'police', 'said', 'the', 'assailant']]\n",
+ "[['top', 'negotiator', 'on', 'Taiwan', 'matters', 'arrived'], 'in', ['Taipei', 'on', 'Monday', 'to', 'begin', 'five']]\n",
+ "[['the', 'end', 'of', 'the', 'civil', 'war'], 'in', ['1949', 'and', 'his', 'arrival', 'signals', 'a']]\n",
+ "[['bodies', 'for', 'the', 'two', 'governments', 'met'], 'in', ['June', 'in', 'Beijing', 'after', 'a', 'long']]\n",
+ "[['the', 'two', 'governments', 'met', 'in', 'June'], 'in', ['Beijing', 'after', 'a', 'long', 'hiatus', 'and']]\n",
+ "[['mainland.', 'But', \"Ma's\", 'popularity', 'has', 'sagged'], 'in', ['recent', 'months', '--', \"Taiwan's\", 'economic', 'performance']]\n",
+ "[['politician', 'while', 'visiting', 'the', 'Confucius', 'Temple'], 'in', ['the', 'southern', 'city', 'of', 'Tainan,', 'a']]\n",
+ "[['KMT.', 'Traffic', 'controls', 'have', 'been', 'put'], 'in', ['place', 'to', 'guard', \"Chen's\", 'motorcade,', 'and']]\n",
+ "[['rebel', 'province', 'that', 'split', 'from', 'China'], 'in', ['1949,', 'when', 'the', 'KMT', 'sought', 'refuge']]\n",
+ "[['that', 'the', 'Beijing', 'government', 'first', 'made'], 'in', ['2005', 'but', 'that', 'was', 'rejected', 'by']]\n",
+ "[['the', 'pandas.', 'There', 'is', 'rampant', 'speculation'], 'in', ['both', 'China', 'and', 'Taiwan', 'over', 'whether']]\n",
+ "[['that', 'Ma', 'holds', 'a', 'title', 'that'], 'in', ['international', 'affairs', 'is', 'usually', 'accorded', 'only']]\n",
+ "[['crew', 'is', 'working', 'feverishly', 'to', 'get'], 'in', ['a', 'slew', 'of', 'last-minute', 'licks', 'before']]\n",
+ "[['rules', 'and', 'regulations', 'by', 'administrative', 'order'], 'in', ['time', 'to', 'immunize', 'them', 'against', 'easy']]\n",
+ "[['were', 'and,', 'anyway,', 'often', 'revel', 'only'], 'in', ['being', 'fiendishly', 'biased.', 'But', \"that's\", 'a']]\n",
+ "[['lease', '9.5', 'million', 'previously', 'protected', 'acres'], 'in', ['eastern', 'Utah', 'for', 'oil', 'and', 'gas']]\n",
+ "[['some', 'pitiful', 'remnant', 'of', 'floundering', 'competition'], 'in', ['order', 'to', 'be', 'free', 'of', 'antitrust']]\n",
+ "[['rushed', 'through', 'regulations', 'that', 'had', 'been'], 'in', ['the', 'works', 'for', 'years', 'so', 'late']]\n",
+ "[['the', 'works', 'for', 'years', 'so', 'late'], 'in', ['the', 'day', 'that', 'the', 'requisite', 'period']]\n",
+ "[['There', 'is', 'at', 'least', 'small', 'hope'], 'in', ['the', 'fact', 'that', 'the', 'sound', 'of']]\n",
+ "[['for', 'Cox', 'Newspapers.', 'He', 'is', 'based'], 'in', ['Atlanta.', 'E-mail:', 'teepencolumn', 'AT', 'earthlink.net.', 'Cox']]\n",
+ "[['election', 'viewers', 'Tuesday', 'because', 'the', 'trends'], 'in', ['the', 'presidential', 'and', 'congressional', 'races', 'may']]\n",
+ "[['guide', 'of', 'what', 'to', 'watch', 'for'], 'in', ['the', 'presidential', 'contest', 'between', 'Democrat', 'Barack']]\n",
+ "[['Times', 'indicate', 'the', 'latest', 'polling', 'closing'], 'in', ['the', 'state', '(some', 'states', 'have', 'multiple']]\n",
+ "[['states', 'have', 'multiple', 'closing', 'times).', 'But'], 'in', ['the', 'past,', 'in', 'some', 'states,', 'officials']]\n",
+ "[['closing', 'times).', 'But', 'in', 'the', 'past,'], 'in', ['some', 'states,', 'officials', 'have', 'responded', 'to']]\n",
+ "[['and', 'Indiana,', 'two', 'staunchly', 'Republican', 'states'], 'in', ['presidential', 'voting,', 'it', 'is', 'probably', 'going']]\n",
+ "[['McCain', 'wins', 'or', 'is', 'very', 'close'], 'in', ['Virginia,', 'where', 'Obama', 'has', 'had', 'a']]\n",
+ "[['Senate', 'seat', 'pickup', 'for', 'the', 'Democrats'], 'in', ['their', 'bid', 'for', 'a', '60-seat', 'filibuster-proof']]\n",
+ "[['Mark', 'Warner', 'is', 'the', 'overwhelming', 'favorite'], 'in', ['the', 'Commonwealth.', 'But', 'also', 'watch', 'Georgia']]\n",
+ "[['loss', 'of', 'the', 'Senate', 'seat', 'held'], 'in', ['Georgia', 'by', 'Saxby', 'Chambliss', 'would', 'be']]\n",
+ "[['loss', 'would', 'be', 'the', 'Senate', 'seat'], 'in', ['Kentucky', 'held', 'by', 'Mitch', 'McConnell,', 'the']]\n",
+ "[['by', 'Mitch', 'McConnell,', 'the', 'Republican', 'leader'], 'in', ['the', 'Senate,', 'who', 'is', 'in', 'an']]\n",
+ "[['leader', 'in', 'the', 'Senate,', 'who', 'is'], 'in', ['an', 'unexpectedly', 'tough', 're-election', 'contest.', '7:30']]\n",
+ "[['prize', 'here', 'is', 'Ohio,', 'ground', 'zero'], 'in', ['the', 'last', 'presidential', 'election', 'and', 'a']]\n",
+ "[['North', 'Carolina,', 'which', 'rarely', 'votes', 'Democratic'], 'in', ['presidential', 'elections,', 'that', 'landslide', 'could', 'be']]\n",
+ "[['presidential', 'elections,', 'that', 'landslide', 'could', 'be'], 'in', ['the', 'making,', 'possibly', 'even', 'burying', 'the']]\n",
+ "[['two', 'of', 'the', 'most', 'important', 'states'], 'in', ['this', \"year's\", 'presidential', 'campaign.', 'But', 'viewers']]\n",
+ "[['state', 'has', 'voted', 'for', 'the', 'winner'], 'in', ['every', 'presidential', 'election', 'since', '1904,', 'with']]\n",
+ "[['this', 'hour.', 'These', 'are', 'key', 'states'], 'in', ['the', 'Obama', 'strategy.', 'But', 'both', 'camps']]\n",
+ "[['The', 'polls', 'have', 'been', 'tightening', 'there'], 'in', ['recent', 'days.', 'Several', 'Senate', 'races', 'are']]\n",
+ "[['seats', 'vacated', 'by', 'Republican', 'incumbents.', 'And'], 'in', ['Minnesota,', 'former', '\"Saturday', 'Night', 'Live\"', 'comedian']]\n",
+ "[['The', 'drama', 'this', 'hour', 'will', 'be'], 'in', ['the', 'swing', 'states', 'of', 'Iowa', 'and']]\n",
+ "[['state', 'that', 'has', 'been', 'trending', 'Democratic'], 'in', ['state', 'elections,', 'could', 'be', 'a', 'surprise']]\n",
+ "[['a', 'measure', 'of', 'the', \"party's\", 'success'], 'in', ['targeting', 'the', 'West.', '11:00', 'PM', '(5']]\n",
+ "[['But', 'check', 'out', 'the', 'Senate', 'returns'], 'in', ['Oregon.', 'Republican', 'incumbent', 'Gordon', 'Smith', 'has']]\n",
+ "[['countered', 'with', 'ads', 'touting', 'his', 'work'], 'in', ['the', 'Senate', 'with', 'Obama.', '1:00', 'AM']]\n",
+ "[['e-mail', 'address', 'is', 'sshepardcoxnews.com', 'Vehicle', 'sales'], 'in', ['the', 'United', 'States', 'tumbled', 'in', 'October']]\n",
+ "[['sales', 'in', 'the', 'United', 'States', 'tumbled'], 'in', ['October', 'compared', 'with', 'a', 'year', 'ago,']]\n",
+ "[['October', 'compared', 'with', 'a', 'year', 'ago,'], 'in', ['a', 'month', 'filled', 'with', 'turmoil', 'for']]\n",
+ "[['likes', 'of', 'which', \"haven't\", 'been', 'seen'], 'in', ['more', 'than', 'two', 'decades.\"', 'Overall', 'sales']]\n",
+ "[['all-time', 'low', 'level', 'of', 'consumer', 'confidence'], 'in', ['October', 'was', 'reflected', 'in', 'particularly', 'poor']]\n",
+ "[['consumer', 'confidence', 'in', 'October', 'was', 'reflected'], 'in', ['particularly', 'poor', 'showroom', 'traffic,\"', 'Brian', 'A.']]\n",
+ "[['an', 'analyst', 'with', 'Barclays', 'Capital,', 'wrote'], 'in', ['a', 'report', 'to', 'clients.', 'General', 'Motors']]\n",
+ "[['Motors', 'and', 'Chrysler,', 'which', 'are', 'involved'], 'in', ['merger', 'discussions', 'as', 'they', 'rapidly', 'deplete']]\n",
+ "[['reserves,', 'were', 'expected', 'to', 'fare', 'worst'], 'in', ['October.', 'New', 'restrictions', 'by', 'the', 'two']]\n",
+ "[['were', 'particularly', 'challenging', 'amid', 'the', 'chaos'], 'in', ['the', 'financial', 'markets.', 'Fewer', 'than', 'a']]\n",
+ "[['than', 'a', 'million', 'vehicles', 'were', 'sold'], 'in', ['September,', 'the', 'first', 'time', 'that', 'happened']]\n",
+ "[['to', 'less', 'than', '$2', 'a', 'gallon'], 'in', ['some', 'states.', 'Sales', 'of', 'profitable', 'trucks']]\n",
+ "[['about', '14', 'percent', 'of', 'the', 'market'], 'in', ['October,', 'up', 'from', '8.6', 'percent', 'in']]\n",
+ "[['in', 'October,', 'up', 'from', '8.6', 'percent'], 'in', ['May', 'when', 'gasoline', 'was', 'selling', 'for']]\n",
+ "[['Monday', 'became', 'the', 'first', 'commercial', 'lender'], 'in', ['Germany', 'to', 'accept', 'government', 'cash,', 'while']]\n",
+ "[['an', 'indication', 'of', 'the', 'continuing', 'weakness'], 'in', ['the', 'sector.', 'Commerzbank,', 'based', 'in', 'Frankfurt,']]\n",
+ "[['weakness', 'in', 'the', 'sector.', 'Commerzbank,', 'based'], 'in', ['Frankfurt,', 'said', 'it', 'would', 'avail', 'itself']]\n",
+ "[['it', 'announced', 'a', '$7.2', 'billion', 'loss'], 'in', ['January', 'that', 'it', 'pinned', 'on', 'a']]\n",
+ "[['It', 'wrote', 'off', '1.4', 'billion', 'euros'], 'in', ['the', 'latest', 'quarter.', '\"This', 'shows', 'that']]\n",
+ "[['a', 'banking', 'analyst', 'at', 'MF', 'Global'], 'in', ['London,', 'said.', 'Markets', 'worldwide', 'were', 'buffeted']]\n",
+ "[['London,', 'said.', 'Markets', 'worldwide', 'were', 'buffeted'], 'in', ['the', 'third', 'quarter,', 'when', 'the', 'investment']]\n",
+ "[['lending', 'largely', 'ground', 'to', 'a', 'halt'], 'in', ['the', 'quarter.', 'After', 'factoring', 'out', 'the']]\n",
+ "[['the', 'slowing', 'global', 'economy', 'is', 'evident'], 'in', ['terms', 'of', 'declining', 'asset', 'quality.', '\"This']]\n",
+ "[['said', 'the', \"government's\", 'aid', 'would', 'be'], 'in', ['the', 'form', 'of', '\"silent', 'participation\"', '--']]\n",
+ "[['The', 'bank', 'will', 'pay', 'no', 'dividend'], 'in', ['2009', 'or', '2010,', 'and', 'will', 'limit']]\n",
+ "[['euros', '($632000)', 'a', 'year.', 'Commerzbank', 'said'], 'in', ['August', 'that', 'it', 'would', 'pay', '9.8']]\n",
+ "[['offered', '\"additional', 'and', 'attractive', 'refinancing', 'options,'], 'in', ['case', 'markets', 'should', 'deteriorate', 'again.\"', 'Commerzbank']]\n",
+ "[['and', 'wrote', 'down', '952', 'million', 'euros'], 'in', ['investments.', 'Last', 'week,', 'Hypo', 'Real', 'Estate,']]\n",
+ "[['Monday', 'that', 'its', 'losses', 'grew', 'sharply'], 'in', ['the', 'first', 'nine', 'months.', 'It', 'said']]\n",
+ "[['or', '$2.8', 'billion,', 'for', 'soured', 'loans'], 'in', ['its', 'corporate', 'division,', 'and', 'had', 'lost']]\n",
+ "[['of', '150', 'million', 'pounds', 'were', 'likely'], 'in', ['relation', 'to', 'losses', 'on', 'Icelandic', 'bank']]\n",
+ "[['TSB', 'is', 'planning', 'to', 'buy', 'HBOS'], 'in', ['a', 'deal', 'worth', 'more', 'than', '6']]\n",
+ "[['to', 'write', 'off', '300', 'million', 'pound'], 'in', ['corporate', 'loans', 'in', 'the', 'second', 'half,']]\n",
+ "[['300', 'million', 'pound', 'in', 'corporate', 'loans'], 'in', ['the', 'second', 'half,', 'and', 'that', 'it']]\n",
+ "[['Shares', 'of', 'Commerzbank', 'rose', '1.6', 'percent'], 'in', ['Frankfurt', 'afternoon', 'trading,', 'while', 'Societe', 'Generale']]\n",
+ "[['while', 'Societe', 'Generale', 'rose', '0.2', 'percent'], 'in', ['Paris.', 'In', 'London,', 'shares', 'of', 'HBOS']]\n",
+ "[['interest', 'rates', 'on', 'Tuesday,', 'the', 'latest'], 'in', ['a', 'string', 'of', 'steps', 'by', 'governments']]\n",
+ "[['struggling', 'to', 'pay', 'billions', 'of', 'dollars'], 'in', ['short-term', 'loans,', 'has', 'announced', 'a', 'series']]\n",
+ "[['announced', 'a', 'series', 'of', 'emergency', 'measures'], 'in', ['recent', 'weeks.', 'The', 'latest,', 'announced', 'by']]\n",
+ "[['included', 'an', 'additional', '11', 'trillion', 'won'], 'in', ['government', 'spending', 'and', '3', 'trillion', 'in']]\n",
+ "[['in', 'government', 'spending', 'and', '3', 'trillion'], 'in', ['tax', 'cuts.', 'These', 'are', 'aimed', 'mainly']]\n",
+ "[['had', 'slowed', 'to', 'its', 'lowest', 'level'], 'in', ['13', 'months', 'in', 'October.', 'Economists', 'said']]\n",
+ "[['its', 'lowest', 'level', 'in', '13', 'months'], 'in', ['October.', 'Economists', 'said', 'the', 'export', 'figures']]\n",
+ "[['This', 'would', 'be', 'the', 'second', 'cut'], 'in', ['two', 'weeks,', 'after', 'last', \"week's\", 'surprise']]\n",
+ "[['a', 'percentage', 'point.', 'Weak', 'economic', 'data'], 'in', ['Australia', 'were', 'also', 'expected', 'prompt', 'that']]\n",
+ "[['Sept.', '3,', 'and', 'bring', 'the', 'total'], 'in', ['rate', 'cuts', 'to', '1.75', 'percentage', 'points.']]\n",
+ "[['prices', 'for', 'iron', 'ore', 'and', 'copper'], 'in', ['recent', 'months.', 'Data', 'out', 'on', 'Monday']]\n",
+ "[['showed', 'retail', 'sales', 'fell', '1.1', 'percent'], 'in', ['September,', 'much', 'more', 'than', 'had', 'been']]\n",
+ "[['a', 'flurry', 'of', 'interest', 'rate', 'cuts'], 'in', ['the', 'United', 'States', 'and', 'elsewhere,', 'over']]\n",
+ "[['loosening', 'limits', 'on', 'bank', 'lending.', 'Signs'], 'in', ['China', 'also', 'indicate', 'that', 'growth', 'is']]\n",
+ "[[\"country's\", 'embattled', 'minorities', 'fewer', 'guaranteed', 'seats'], 'in', ['upcoming', 'elections.', 'The', 'prospects', 'for', 'the']]\n",
+ "[['wounded', 'when', 'two', 'roadside', 'bombs', 'exploded'], 'in', ['quick', 'succession', 'in', 'front', 'of', 'the']]\n",
+ "[['roadside', 'bombs', 'exploded', 'in', 'quick', 'succession'], 'in', ['front', 'of', 'the', 'headquarters', 'of', 'the']]\n",
+ "[['Ministry', 'of', \"Interior's\", 'criminal', 'investigations', 'unit'], 'in', [\"Baghdad's\", 'central', 'Karada', 'district,', 'according', 'to']]\n",
+ "[['deadliest', 'of', 'the', 'bombs', 'was', 'planted'], 'in', ['front', 'of', 'the', 'protective', 'concrete', 'wall']]\n",
+ "[['years.', '\"Who', 'can', 'plant', 'a', 'bomb'], 'in', ['this', 'fortified', 'area', 'in', 'the', 'presence']]\n",
+ "[['a', 'bomb', 'in', 'this', 'fortified', 'area'], 'in', ['the', 'presence', 'of', 'police', 'patrols?\"', 'The']]\n",
+ "[['his', 'driver', 'when', 'a', 'bomb', 'planted'], 'in', ['his', 'car', 'exploded,', 'according', 'to', 'a']]\n",
+ "[['into', 'the', 'car', 'at', 'his', 'home'], 'in', ['the', 'northern', 'Baghdad', 'neighborhood', 'of', 'Ataifiya']]\n",
+ "[['visited', 'the', 'ministry', 'to', 'discuss', 'investments'], 'in', [\"Iraq's\", 'lucrative', 'oil', 'and', 'gas', 'sectors.']]\n",
+ "[['Monday,', 'a', 'huge', 'car', 'bomb', 'exploded'], 'in', ['a', 'parking', 'lot', 'next', 'to', 'the']]\n",
+ "[['the', 'headquarters', 'of', 'the', 'local', 'government'], 'in', ['Baquba', 'in', 'Diyala', 'province,', 'killing', 'at']]\n",
+ "[['of', 'the', 'local', 'government', 'in', 'Baquba'], 'in', ['Diyala', 'province,', 'killing', 'at', 'least', 'three']]\n",
+ "[['attack', 'was', 'proof', 'that', 'the', 'situation'], 'in', ['the', 'province', 'remained', '\"fragile\"', 'and', 'that']]\n",
+ "[['the', \"government's\", 'lauded', 'recent', 'security', 'operation'], 'in', ['Diyala', 'had', '\"only', 'accomplished', 'a', 'fraction']]\n",
+ "[['fraction', 'of', 'its', 'goals.\"', 'The', 'attacks'], 'in', ['Baghdad', 'and', 'Baquba', 'came', 'one', 'day']]\n",
+ "[['and', 'sectarian', 'groups,', 'Parliament', 'voted', 'Monday'], 'in', ['favor', 'of', 'a', 'bill', 'that', 'would']]\n",
+ "[['Christians', 'a', 'single', 'seat', 'on', 'councils'], 'in', ['Baghdad,', 'Basra', 'and', 'Nineveh', 'instead', 'of']]\n",
+ "[['seats', 'proposed', 'by', 'the', 'U.N.', 'mission'], 'in', ['each', 'of', 'Baghdad', 'and', 'Nineveh.', 'The']]\n",
+ "[['since', 'the', 'start', 'of', 'the', 'war'], 'in', ['2003,', 'were', 'given', 'one', 'seat', 'in']]\n",
+ "[['in', '2003,', 'were', 'given', 'one', 'seat'], 'in', ['Nineveh', 'instead', 'of', 'the', 'three', 'proposed.']]\n",
+ "[['compromise', 'following', 'the', 'controversy', 'that', 'erupted'], 'in', ['late', 'September', 'when', 'Parliament', 'had', 'passed']]\n",
+ "[['article', 'that', 'had', 'provided', '13', 'seats'], 'in', ['six', 'provinces', 'for', 'Iraqi', 'Christians,', 'Yazidis']]\n",
+ "[['Younadim', 'Kanna,', 'one', 'of', 'two', 'Christians'], 'in', ['Parliament,', 'called', \"Monday's\", 'vote', '\"a', 'great']]\n",
+ "[['the', 'company', 'has', 'dominated', 'this', 'segment'], 'in', ['much', 'the', 'same', 'way', 'the', 'Ford']]\n",
+ "[['come', 'close', 'to', 'the', 'current', 'models'], 'in', ['the', 'Chrysler', 'LLC', 'minivan', 'lineup.', 'Sales']]\n",
+ "[['the', 'Chrysler', 'and', 'Dodge', 'minivans', 'come'], 'in', ['five', 'different', 'models,', 'with', 'three', 'different']]\n",
+ "[['the', 'extended', 'length.', 'Dodge', 'versions', 'come'], 'in', ['base', 'SE', 'and', 'uplevel', 'SXT', 'models,']]\n",
+ "[['the', 'SE', 'model', 'are', 'the', 'latest'], 'in', [\"Chrysler's\", 'stow-and-go', 'seats,', 'which', 'can', 'be']]\n",
+ "[['between', 'the', 'seats', 'so', 'the', 'people'], 'in', ['the', 'back', 'can', 'play', 'games', 'or']]\n",
+ "[['on', 'the', 'highway,', 'the', '3.3-liter', 'comes'], 'in', ['a', 'vehicle', 'whose', 'overall', 'price', 'is']]\n",
+ "[['capacity:', '32.7', 'cubic', 'feet', '(3rd', 'seat'], 'in', ['place).EPA', 'fuel', 'economy:', '17', 'city/24', 'highway']]\n",
+ "[['trying', 'to', 'build', 'a', 'golf', 'course'], 'in', ['northwestern', 'Connecticut.', 'Many', 'residents', 'in', 'the']]\n",
+ "[['course', 'in', 'northwestern', 'Connecticut.', 'Many', 'residents'], 'in', ['the', 'towns', 'of', 'Norfolk', 'and', 'North']]\n",
+ "[['the', 'forests,', 'meadows,', 'and', 'trout', 'streams'], 'in', ['their', 'corner', 'of', 'the', 'Litchfield', 'Hills.']]\n",
+ "[['rushed', 'through', 'while', 'Bush', 'is', 'still'], 'in', ['office.', 'The', 'developer,', 'Roland', 'Betts,', 'knows']]\n",
+ "[['use', 'the', 'best', 'scientific', 'data', 'available'], 'in', ['making', 'decisions.', 'To', 'abide', 'by', 'the']]\n",
+ "[['getting', 'special', 'treatment', 'from', 'his', 'buddy'], 'in', ['the', 'Oval', 'Office,', 'Fish', 'and', 'Wildlife']]\n",
+ "[['should', 'withdraw', 'its', 'finding', 'until', 'appointees'], 'in', ['the', 'next', 'administration', 'have', 'a', 'chance']]\n",
+ "[['has', 'surged', 'to', 'a', 'record', 'high'], 'in', ['Massachusetts.', 'Some', '2,500', 'families', 'are', 'homeless,']]\n",
+ "[['than', '600', 'homeless', 'families', 'are', 'staying'], 'in', ['motels,', 'caring', 'for', 'children', 'in', 'rooms,']]\n",
+ "[['staying', 'in', 'motels,', 'caring', 'for', 'children'], 'in', ['rooms,', 'often', 'far', 'from', 'school,', 'with']]\n",
+ "[['even', 'more', 'families', 'could', 'end', 'up'], 'in', ['shelters.', 'This', 'renewed', 'dependence', 'on', 'putting']]\n",
+ "[['renewed', 'dependence', 'on', 'putting', 'homeless', 'families'], 'in', ['temporary', 'quarters', 'represents', 'a', 'step', 'backward']]\n",
+ "[[\"state's\", 'ability', 'to', 'handle', 'each', 'case'], 'in', ['a', 'comprehensive', 'way,', 'this', 'far-reaching', 'approach']]\n",
+ "[['sure', 'families', 'stay', 'off', 'the', 'streets'], 'in', ['the', 'long', 'term.', 'Shelter', 'alone', 'may']]\n",
+ "[['addiction.', 'And', 'families', 'who', 'are', 'already'], 'in', ['shelters', 'need', 'help', 'moving', 'out', 'more']]\n",
+ "[['this', 'year.', 'Armed', 'with', '$10', 'million'], 'in', ['state', 'funds,', 'the', \"state's\", 'Interagency', 'Council']]\n",
+ "[['sweeping', 'experiment:', 'Instead', 'of', 'automatic', 'placement'], 'in', ['shelters,', 'homeless', 'families', 'will', 'be', 'able']]\n",
+ "[['develop', 'the', 'skills', 'to', 'support', 'themselves'], 'in', ['permanent', 'housing.', 'The', \"state's\", 'overburdened', 'shelter']]\n",
+ "[['turned:', 'American', 'air', 'strikes', 'against', 'militants'], 'in', ['the', 'tribal', 'areas', 'are', 'unhelpful.', 'Petraeus,']]\n",
+ "[['the', 'former', 'commander', 'of', 'American', 'forces'], 'in', ['Iraq,', 'arrived', 'in', 'Pakistan', 'as', 'missile']]\n",
+ "[['of', 'American', 'forces', 'in', 'Iraq,', 'arrived'], 'in', ['Pakistan', 'as', 'missile', 'strikes', 'from', 'drone']]\n",
+ "[['aircraft', 'against', 'the', 'Taliban', 'and', 'al-Qaida'], 'in', [\"Pakistan's\", 'tribal', 'areas', 'have', 'escalated.', 'There']]\n",
+ "[['bomber', 'killed', 'eight', 'Pakistani', 'paramilitary', 'soldiers'], 'in', ['South', 'Waziristan', 'Sunday.', 'After', 'the', 'meeting']]\n",
+ "[['Asif', 'Ali', 'Zardari', 'of', 'Pakistan', 'said'], 'in', ['a', 'statement,', '\"Continuing', 'drone', 'attacks', 'on']]\n",
+ "[['attacks', 'on', 'our', 'territory,', 'which', 'result'], 'in', ['loss', 'of', 'precious', 'lives', 'and', 'property,']]\n",
+ "[['returned.', 'Petraeus,', 'who', 'has', 'been', 'consulting'], 'in', ['recent', 'weeks', 'with', 'a', 'wide', 'range']]\n",
+ "[['Pakistani', 'military', 'to', 'quell', 'the', 'insurgency'], 'in', ['the', 'tribal', 'areas', 'and', 'on', 'the']]\n",
+ "[['areas', 'and', 'on', 'the', 'deteriorating', 'situation'], 'in', ['Afghanistan,', 'on', 'Friday', 'took', 'over', 'Central']]\n",
+ "[['over', 'Central', 'Command', ',', 'putting', 'him'], 'in', ['overall', 'charge', 'of', 'the', 'American-led', 'military']]\n",
+ "[['charge', 'of', 'the', 'American-led', 'military', 'operations'], 'in', ['both', 'Iraq', 'and', 'Afghanistan.', 'The', \"general's\"]]\n",
+ "[['Ahmad', 'Mukhtar.', 'The', 'American', 'missile', 'attacks'], 'in', ['the', 'tribal', 'areas', 'were', 'generating', '\"anti-American']]\n",
+ "[['uproar', 'among', 'the', 'people,\"', 'Mukhtar', 'said'], 'in', ['a', 'statement.', 'A', 'senior', 'Pakistani', 'military']]\n",
+ "[['the', 'air', 'strikes', 'have', 'been', 'couched'], 'in', ['less', 'dramatic', 'language', 'than', \"Kayani's\", 'declaration']]\n",
+ "[['declaration', 'after', 'an', 'American', 'ground', 'raid'], 'in', ['September', 'in', 'which', 'he', 'said', 'Pakistan']]\n",
+ "[['an', 'American', 'ground', 'raid', 'in', 'September'], 'in', ['which', 'he', 'said', 'Pakistan', 'would', 'defend']]\n",
+ "[['have', 'been', 'no', 'known', 'ground', 'raids'], 'in', ['the', 'tribal', 'areas', 'since.', 'On', 'a']]\n",
+ "[['the', 'border', 'between', 'Afghanistan', 'and', 'Pakistan'], 'in', ['the', 'area', 'of', 'Bajaur', 'in', 'the']]\n",
+ "[['Pakistan', 'in', 'the', 'area', 'of', 'Bajaur'], 'in', ['the', 'tribal', 'area.', 'The', 'Pakistani', 'army']]\n",
+ "[['Pakistani', 'army', 'is', 'fighting', 'Taliban', 'militants'], 'in', ['Bajaur,', 'and', 'has', 'criticized', 'the', 'United']]\n",
+ "[['is', 'the', 'failure', 'of', 'American', 'troops'], 'in', ['Afghanistan', 'to', 'stop', 'Afghan', 'militants', 'crossing']]\n",
+ "[['Pakistani', 'forces', 'face', 'against', 'the', 'insurgents'], 'in', ['the', 'tribal', 'areas,', 'the', 'military', 'planned']]\n",
+ "[['he', 'said,', 'referring', 'to', 'the', 'area'], 'in', ['Afghanistan', 'near', 'the', 'Pakistani', 'border', 'from']]\n",
+ "[['to', 'have', 'escaped', 'from', 'American', 'troops'], 'in', ['late', '2001.', 'During', 'a', 'visit', 'Tuesday']]\n",
+ "[['the', 'paramilitary', 'force', 'that', 'is', 'fighting'], 'in', ['Bajaur.', 'After', 'a', 'long', 'delay,', 'several']]\n",
+ "[['instructing', 'Pakistani', 'officers', 'last', 'month,', 'who'], 'in', ['turn', 'will', 'train', 'the', 'Frontier', 'Corps']]\n",
+ "[['turn', 'will', 'train', 'the', 'Frontier', 'Corps'], 'in', ['an', 'effort', 'to', 'turn', 'the', 'paramilitary']]\n",
+ "[['planned', 'to', 'ask', 'Petraeus', 'for', 'help'], 'in', ['increasing', 'the', \"army's\", '\"operational', 'capabilities,\"', 'meaning']]\n",
+ "[['refuses', 'to', 'be', 'lassoed.', 'Arrestingly', 'photographed'], 'in', ['black', 'and', 'white', '(\"The', 'Red', 'Balloon\"']]\n",
+ "[['and', 'white', '(\"The', 'Red', 'Balloon\"', 'is'], 'in', ['Technicolor),', '\"White', 'Mane\"', 'is', '\"The', 'Red']]\n",
+ "[[\"you're\", '9,', 'come', 'back', 'to', 'them'], 'in', ['about', '10', 'years.', 'Extras:', 'Theatrical', 'trailers']]\n",
+ "[['By', 'Arturo', 'P?rez-Reverte.', 'The', 'fourth', 'novel'], 'in', ['the', 'consistently', 'fine', 'Captain', 'Alatriste', 'series']]\n",
+ "[['satisfyingly', 'bleak', 'novel', 'of', 'intrigue', 'set'], 'in', ['Hamburg', '(Scribner,', '$28).', 'The', 'Hemingses,', 'of']]\n",
+ "[['$35).', 'Selected', 'from', 'books', 'recently', 'reviewed'], 'in', ['the', 'Globe.', 'Poetry', 'and', 'motion', 'Dan']]\n",
+ "[['Review', 'as', 'well', 'as', 'a', 'poet'], 'in', ['his', 'own', 'right,', 'has', 'added', 'a']]\n",
+ "[['book', 'about', 'the', 'role', 'of', 'autobiography'], 'in', ['poetry.', 'The', 'roots', 'of', \"Chiasson's\", 'identity']]\n",
+ "[['as', 'a', 'critic', 'and', 'poet', 'lie'], 'in', ['his', 'education.', 'When', 'he', 'attended', 'Amherst']]\n",
+ "[['he', 'was', 'working', 'on', 'his', 'doctorate'], 'in', ['English', 'at', 'Harvard,', 'he', 'decided', 'to']]\n",
+ "[['Bookstore,', 'badly', 'damaged', 'by', 'a', 'fire'], 'in', ['July,', 'has', 'a', 'new', 'owner', 'and']]\n",
+ "[['Texas.', 'The', 'bookstore', 'on', 'Main', 'Street'], 'in', ['Vineyard', 'Haven', '-', 'two', 'blocks', 'from']]\n",
+ "[['Bunch', 'of', 'Grapes', 'store', 'will', 'open'], 'in', ['town', 'before', 'Thanksgiving.', 'Braasch', 'has', 'a']]\n",
+ "[['before', 'Thanksgiving.', 'Braasch', 'has', 'a', 'background'], 'in', ['business,', 'having', 'launched', 'a', 'catering', 'company']]\n",
+ "[['unconventional', 'war', 'correspondent', 'Martha', 'Gellhorn,', 'born'], 'in', ['St.', 'Louis', 'in', '1908,', 'may', 'have']]\n",
+ "[['Martha', 'Gellhorn,', 'born', 'in', 'St.', 'Louis'], 'in', ['1908,', 'may', 'have', 'spent', 'more', 'time']]\n",
+ "[['time', 'outside', 'the', 'United', 'States', 'than'], 'in', ['it.', 'Before', 'she', 'died,', 'at', '89,']]\n",
+ "[['and', 'the', 'US', 'invasion', 'of', 'Panama'], 'in', ['a', 'career', 'that', 'spanned', 'six', 'decades.']]\n",
+ "[['Chasse', 'of', 'the', 'Kennebunk', 'Book', 'Port,'], 'in', ['Kennebunkport,', 'Maine,', 'recommends', '\"Once', 'Were', 'Cops,\"']]\n",
+ "[['wild', 'Irish', 'cop', 'on', 'the', 'loose'], 'in', ['the', 'NYPD', 'is', 'a', 'great', 'introduction,']]\n",
+ "[['dealings', 'with', 'the', 'senator,', 'reassessing', 'them'], 'in', ['the', 'context', 'of', 'the', 'bribery', 'allegations.']]\n",
+ "[['others', 'have', 'denied', 'specific', 'charges', 'contained'], 'in', ['the', 'FBI', 'affidavit,', 'that', 'they', 'helped']]\n",
+ "[['Winn?', 'The', 'feds', 'are', 'quite', 'interested'], 'in', ['answering', 'these', 'questions', 'themselves,', 'apparently.', 'Winn']]\n",
+ "[['just', 'one', 'of', 'the', 'many', 'developments'], 'in', ['which', 'Wilkerson', 'took', 'an', 'interest.', 'What']]\n",
+ "[['provided', 'enough', 'benefits', 'to', 'the', 'community'], 'in', ['return', 'for', 'the', 'right', 'to', 'bring']]\n",
+ "[['a', 'year', 'later?', 'Was', 'she', 'acting'], 'in', ['the', 'best', 'interests', 'of', 'her', 'constituents,']]\n",
+ "[['of', 'her', 'stances', 'on', 'other', 'projects'], 'in', ['her', 'district', '-', 'the', 'biolab', 'proposed']]\n",
+ "[['she', 'backs', 'and', 'other', 'elected', 'officials'], 'in', ['her', 'district', 'vehemently', 'oppose.', 'Maybe', 'her']]\n",
+ "[['-', 'and', 'she', 'had', 'a', 'say'], 'in', ['many', 'of', 'them', '-', 'were', 'on']]\n",
+ "[['bribes', 'to', 'subvert', 'the', 'legislative', 'process'], 'in', ['the', 'interests', 'of', 'one', 'developer', 'in']]\n",
+ "[['in', 'the', 'interests', 'of', 'one', 'developer'], 'in', ['Roxbury', 'has', 'cast', 'suspicion', 'on', 'her']]\n",
+ "[['other', 'mysteries.', 'What', 'about', 'that', '$6,000'], 'in', ['cash', 'Wilkerson', 'was', 'carrying', 'when', 'she']]\n",
+ "[['does', 'one', 'pay', 'with', 'six', 'grand'], 'in', ['cash', 'anyway?', 'While', \"we're\", 'at', 'it,']]\n",
+ "[['the', 'senator', 'buy', 'with', 'the', '$23,500'], 'in', ['bribes', 'she', 'allegedly', 'collected', 'during', 'the']]\n",
+ "[['to', 'Foxwoods', 'like', 'the', 'one', 'described'], 'in', ['the', 'affidavit?', 'Lastly,', 'is', 'the', 'Boston']]\n",
+ "[['backroom', 'deal-making', 'body', 'Wilkerson', 'allegedly', 'describes'], 'in', ['a', 'conversation', 'recorded', 'by', 'the', 'FBI?']]\n",
+ "[['on', 'the', 'island,', 'where', 'a', 'sign'], 'in', ['the', 'town', \"clerk's\", 'office', 'reads,', '\"Thank']]\n",
+ "[['lifelong', 'islanders', 'by', 'two', 'horrific', 'rapes'], 'in', ['which', 'an', 'intruder,', 'still', 'at', 'large,']]\n",
+ "[['at', 'large,', 'walked', 'into', 'unlocked', 'homes'], 'in', ['the', 'dead', 'of', 'night.', 'In', 'the']]\n",
+ "[['of', 'night.', 'In', 'the', 'first', 'crime,'], 'in', ['July,', 'the', 'rapist', 'bound', 'his', 'victim']]\n",
+ "[['rapes', 'are', 'the', 'most', 'prominent', 'crimes'], 'in', ['a', 'surge', 'of', 'violence', 'that', 'has']]\n",
+ "[['was', 'nearly', 'double', 'the', 'number', 'reported'], 'in', ['all', 'of', '2007.', 'Aggravated', 'assaults', 'surged']]\n",
+ "[['nearly', 'four', 'times', 'the', 'six', 'recorded'], 'in', ['2007,', 'and', '100', 'simple', 'assaults', 'were']]\n",
+ "[['107', 'tallied', 'throughout', 'last', 'year.', 'Now,'], 'in', ['a', 'place', 'where', 'unlocked', 'doors', 'were']]\n",
+ "[['was', 'almost', 'a', 'badge', 'of', 'courage'], 'in', ['the', 'old', 'days', 'that', 'you', \"didn't\"]]\n",
+ "[['for', 'the', 'other', 'reasons.\"', 'The', 'surge'], 'in', ['crime', 'has', 'unnerved', 'an', 'island', 'that']]\n",
+ "[['the', 'crime', 'wave,', 'or', 'an', 'increase'], 'in', ['alcohol', 'and', 'drug', 'problems.', 'But', 'also']]\n",
+ "[['alcohol', 'and', 'drug', 'problems.', 'But', 'also'], 'in', ['the', 'mix,', 'many', 'say,', 'is', 'a']]\n",
+ "[['many', 'say,', 'is', 'a', 'massive', 'surge'], 'in', ['population,', 'largely', 'because', 'of', 'workers', 'who']]\n",
+ "[['say', 'that', '10,880', 'residents', 'are', 'recorded'], 'in', ['Nantucket,', 'but', 'that', 'an', 'estimated', '20,000']]\n",
+ "[['by', 'a', 'landscaper', 'and', 'sexually', 'assaulted'], 'in', ['his', 'truck', 'and', 'home', 'before', 'being']]\n",
+ "[['sees', 'alcohol', 'as', 'a', 'continuing', 'factor'], 'in', ['many', 'of', 'the', \"island's\", 'problems,', 'particularly']]\n",
+ "[['that', 'there', 'has', 'been', 'a', 'surge'], 'in', ['violent,', 'high-profile', 'crime.', 'Although', 'the', 'reason']]\n",
+ "[['Pittman', 'agreed', 'that', 'Nantucket', 'had', 'changed'], 'in', ['the', 'four', 'years', 'he', 'has', 'worked']]\n",
+ "[['anymore,\"\\'', 'Pittman', 'said.', 'Over', 'and', 'over,'], 'in', ['interviews', 'across', 'the', 'island,', 'residents', 'described']]\n",
+ "[['\"There', 'are', 'just', 'too', 'many', 'rats'], 'in', ['the', 'cage,\"', 'Stover', 'said', 'of', 'Nantucket,']]\n",
+ "[['for', 'decades,', 'laborers,', 'landscapers,', 'and', 'workers'], 'in', ['the', 'construction', 'trades', 'have', 'looked', 'to']]\n",
+ "[['quick', 'money', 'and', 'entertainment.', 'But', 'unlike'], 'in', ['the', 'past,', 'Pittman', 'and', 'others', 'said,']]\n",
+ "[['misunderstandings.\"', 'Some', 'of', 'that', 'tension', 'results'], 'in', ['imagined', 'threats.', 'Police', 'once', 'were', 'called']]\n",
+ "[['laborer.', '\"You\\'ve', 'got', 'some', 'guy', 'sitting'], 'in', ['the', 'bike', 'path,', '...', 'and', 'suddenly']]\n",
+ "[['and', 'suddenly', 'the', 'cops', 'are', 'swooping'], 'in', ['on', 'him,\"', 'Pittman', 'said.', 'Those', 'extra']]\n",
+ "[['Stover', 'said.', '\"But', 'we', 'also', 'deserve,'], 'in', ['return,', 'to', 'know', 'who', 'they', 'are']]\n",
+ "[['iconic', 'Z', 'car', 'that', 'has', 'been'], 'in', ['the', \"automaker's\", 'lineup', 'off', 'and', 'on']]\n",
+ "[['want', 'to', 'take', 'a', 'virtual', 'spin'], 'in', ['the', 'new', 'Z', 'car,', 'about', 'eight']]\n",
+ "[['by', 'Black', 'Box', 'of', 'Vancouver,', 'Canada,'], 'in', ['conjunction', 'with', \"Nissan's\", 'designers.', 'It', 'will']]\n",
+ "[[\"Nissan's\", 'designers.', 'It', 'will', 'be', 'offered'], 'in', ['all', 'of', 'the', 'key', 'video', 'game']]\n",
+ "[['of', 'one', 'of', 'its', 'new', 'models'], 'in', ['a', 'video', 'game,', 'Nissan', 'said.', '\"For']]\n",
+ "[['for', 'marketing', 'at', 'Electronic', 'Arts,', 'said'], 'in', ['an', 'announcement.', '\"As', 'such,', 'we', 'are']]\n",
+ "[['a', 'new', 'vehicle', 'can', 'be', 'driven'], 'in', ['a', 'game', 'before', \"it's\", 'available', 'at']]\n",
+ "[['relationship', 'with', 'EA', 'has', 'been', 'instrumental'], 'in', ['bringing', 'the', 'Nissan', 'brand', 'to', 'a']]\n",
+ "[['have', 'truly', 'integrated', 'the', 'all-new', '370Z'], 'in', ['the', 'overall', 'game', 'experience', 'in', 'a']]\n",
+ "[['370Z', 'in', 'the', 'overall', 'game', 'experience'], 'in', ['a', 'meaningful,', 'multilayered', 'and', 'profound', 'way.\"']]\n",
+ "[['action', 'with', 'gamers', 'whipping', 'the', '370Z'], 'in', ['and', 'out', 'of', 'traffic', 'at', 'high']]\n",
+ "[['a', 'close-up', 'look', 'at', 'the', 'car'], 'in', ['July', 'in', 'a', 'secure', 'future-product', 'vault']]\n",
+ "[['look', 'at', 'the', 'car', 'in', 'July'], 'in', ['a', 'secure', 'future-product', 'vault', 'in', 'the']]\n",
+ "[['July', 'in', 'a', 'secure', 'future-product', 'vault'], 'in', ['the', 'basement', 'of', \"Nissan's\", 'new', '$100']]\n",
+ "[['building,', 'which', 'the', 'automaker', 'began', 'occupying'], 'in', ['early', 'July.', 'The', 'car', 'will', 'come']]\n",
+ "[['replacing', 'the', '3.5-liter', 'VQ', 'engine', 'used'], 'in', ['the', '2008', 'model.', 'The', 'current', '350Z']]\n",
+ "[['previous', 'generation,', 'the', '300ZX,', 'was', 'discontinued'], 'in', ['1996.', 'The', '2009', '370Z', 'has', 'been']]\n",
+ "[['been', 'released', 'yet', 'for', 'the', 'engine'], 'in', ['the', '370Z', '--', 'but', 'in', 'the']]\n",
+ "[['engine', 'in', 'the', '370Z', '--', 'but'], 'in', ['the', '2009', 'G37', 'coupe,', \"it's\", 'rated']]\n",
+ "[['coupe,', \"it's\", 'rated', 'at', '330', 'horsepower;'], 'in', ['the', 'G37', 'sedan,', 'it', 'has', '328']]\n",
+ "[['G37', 'and', 'presumably', 'would', 'be', 'available'], 'in', ['the', '370Z', 'as', 'well.', 'The', '2008']]\n",
+ "[['the', 'second', 'and', 'third', 'largest', 'banks'], 'in', ['Massachusetts.', '\"We\\'re', 'on', 'pins', 'and', 'needles,\"']]\n",
+ "[['flight', 'of', 'depositors', 'and', 'a', 'free-fall'], 'in', ['its', 'share', 'price.', 'Both', 'banks', 'and']]\n",
+ "[['In', 'the', 'case', 'of', 'Citizens', 'Bank'], 'in', ['particular,', 'Grogan', 'and', 'others', 'wonder', 'whether']]\n",
+ "[['executive', 'of', 'FleetBoston', 'Financial', 'Corp.,', 'said'], 'in', ['an', 'interview', 'he', 'expects', 'Citizens', 'will']]\n",
+ "[['to', '19', 'percent', 'of', 'total', 'deposits'], 'in', ['the', 'state,', 'according', 'to', 'the', 'latest']]\n",
+ "[['combine', 'some', 'wealth-management', 'operations', 'including', 'many'], 'in', ['Boston.', 'Also,', 'the', 'fourth-largest', 'bank', 'in']]\n",
+ "[['in', 'Boston.', 'Also,', 'the', 'fourth-largest', 'bank'], 'in', ['the', 'state,', 'TD', 'Bank,', 'is', 'owned']]\n",
+ "[['is', 'completed,', '28', 'percent', 'of', 'deposits'], 'in', ['Massachusetts', 'would', 'be', 'held', 'by', 'foreign']]\n",
+ "[['the', 'great', 'experiment', \"that's\", 'going', 'on'], 'in', ['terms', 'of', 'globalization,\"', 'said', 'Robert', 'L.']]\n",
+ "[['so', 'far', \"hasn't\", 'meant', 'major', 'differences'], 'in', ['the', 'way', 'the', 'banks', 'conduct', 'themselves']]\n",
+ "[['to', 'lend', 'money', 'both', 'to', 'individuals,'], 'in', ['the', 'form', 'of', 'mortgages', 'or', 'home']]\n",
+ "[['little', 'about', 'its', 'intentions', 'for', 'Sovereign,'], 'in', ['which', 'it', 'had', 'already', 'purchased', 'a']]\n",
+ "[['remaining', '75', 'percent', 'for', '$1.9', 'billion'], 'in', ['stock,', 'ending', 'a', 'period', 'of', 'uncertainty']]\n",
+ "[['and', 'replaced', 'its', 'chief', 'executive', 'suddenly'], 'in', ['September.', 'Santander', 'has', 'since', 'told', 'Sovereign']]\n",
+ "[['seems', 'to', 'have', 'reassured', 'depositors', 'who'], 'in', ['the', 'third', 'quarter', 'had', 'pulled', '$4.2']]\n",
+ "[['stabilized', 'and', 'stressed', 'a', 'similar', 'theme'], 'in', ['newspaper', 'advertisements', 'it', 'began', 'running', 'last']]\n",
+ "[['One', 'reads:', '\"You', 'can', 'have', 'confidence'], 'in', ['Sovereign', 'because', 'one', 'of', 'the', \"world's\"]]\n",
+ "[['the', 'right,', 'the', 'Brodney', 'Gallery,', 'specializing'], 'in', ['antique', 'jewelry.', 'You', \"don't\", 'see', 'them?']]\n",
+ "[['Street', 'to', 'No.', '88', 'and', 'see'], 'in', ['memory', 'my', 'terribly', 'sick', 'father', 'sitting']]\n",
+ "[['memory', 'my', 'terribly', 'sick', 'father', 'sitting'], 'in', ['a', 'lawn', 'chair', 'on', 'the', 'stoop,']]\n",
+ "[['think', 'and', 'worry', 'about', 'memory', 'loss'], 'in', ['ourselves', 'and', 'loved', 'ones.', 'But', 'another']]\n",
+ "[['us', 'alone.', 'Especially', 'if', \"we've\", 'lived'], 'in', ['one', 'place', 'all', 'our', 'lives,', 'everywhere']]\n",
+ "[['the', 'white', 'porcelain', 'handle,', 'and', 'see'], 'in', ['the', 'dark', 'tunnel', 'the', 'reflected', 'face']]\n",
+ "[['sure', 'that', 'the', 'memories', 'rattling', 'around'], 'in', ['his', 'brain', 'must', 'be', 'as', 'interesting']]\n",
+ "[['to', 'be.\"', 'Often', 'we', 'are', 'interested'], 'in', [\"elders'\", 'memory', 'of', 'historic', 'events', 'that']]\n",
+ "[['was', 'a', 'horror.', 'The', 'smell', 'hung'], 'in', ['the', 'streets', 'for', 'years.\"', 'The', 'young']]\n",
+ "[['else.', 'It', 'interests', 'us', 'because', 'change'], 'in', ['our', 'lives', 'is', 'a', 'proof', 'of']]\n",
+ "[['now', 'on', 'display,', 'like', \"Lenin's\", 'corpse,'], 'in', ['Boylston', 'Station,', 'that', 'means', 'I', \"can't\"]]\n",
+ "[['previous', 'model', 'went', 'out', 'of', 'production'], 'in', ['2002.', 'GM', 'showed', 'the', 'concept', 'version']]\n",
+ "[['the', 'Texas', 'State', 'Fair', 'auto', 'show'], 'in', ['Dallas.', 'No', 'prices', 'have', 'been', 'announced']]\n",
+ "[['America', 'Vice', 'President', 'Ed', 'Peper', 'said'], 'in', ['an', 'announcement', 'of', 'the', 'pricing.', '\"The']]\n",
+ "[['down', 'to', 'levels', 'we', \"haven't\", 'seen'], 'in', ['about', 'two', 'years', '(and', 'actually', 'under']]\n",
+ "[['(and', 'actually', 'under', '$2', 'a', 'gallon'], 'in', ['some', 'areas),', 'consumers', 'are', 'returning', 'to']]\n",
+ "[['for', 'the', 'Camaro', 'when', 'it', 'arrives'], 'in', ['the', 'first', 'quarter', 'of', '2009.', 'But']]\n",
+ "[['site.', 'GM', 'says', 'production', 'will', 'begin'], 'in', ['mid-February', 'at', 'the', 'plant', 'in', 'Oshawa,']]\n",
+ "[['begin', 'in', 'mid-February', 'at', 'the', 'plant'], 'in', ['Oshawa,', 'Ontario,', 'Canada;', 'and', 'the', 'cars']]\n",
+ "[['ordered', 'and', 'installed', 'before', 'delivery,', 'and'], 'in', ['some', 'cases', 'even', 'can', 'be', '\"rolled']]\n",
+ "[['Already,', 'the', 'new', 'Camaro', 'is', 'starring'], 'in', ['a', 'TV', 'show', '--', 'a', 'new']]\n",
+ "[['spy.', 'Earlier,', 'the', 'Camaro', 'also', 'appeared'], 'in', ['a', 'movie', '--', \"2007's\", '\"Transformers.\"', 'Three']]\n",
+ "[['GM', 'answer', 'to', 'the', 'original', 'Mustang'], 'in', ['the', \"mid-'60s.\", 'For', 'its', 'part,', 'Dodge']]\n",
+ "[['of', 'girls', 'who', 'get', 'caught', 'up'], 'in', ['street', 'life.', 'Urban', 'fiction', '-', 'also']]\n",
+ "[['depicts', 'drugs,', 'violence,', 'and', 'sexual', 'promiscuity'], 'in', ['black', 'and', 'Latino', 'neighborhoods.', 'Some', 'of']]\n",
+ "[['the', 'drug', 'trade.', 'The', 'sex', 'scenes'], 'in', ['some', 'of', 'the', 'novels', 'are', 'extremely']]\n",
+ "[['of', 'pimps,', 'gangsters,', 'and', 'drug', 'dealers'], 'in', ['the', '1970s.', 'But', 'recently', 'a', 'younger']]\n",
+ "[['few', 'years,', 'the', 'genre', 'has', 'exploded'], 'in', ['popularity.', 'According', 'to', 'Nielsen', 'BookScan,', 'only']]\n",
+ "[['4,000', 'urban', 'fiction', 'novels', 'were', 'sold'], 'in', ['2005,', 'representing', '0.2', 'percent', 'of', 'adult']]\n",
+ "[['drug', 'use', 'tends', 'to', 'be', 'mentioned'], 'in', ['passing', 'rather', 'than', 'described', 'explicitly.', 'The']]\n",
+ "[['adults', 'and', 'teens', 'mirrors', 'the', 'dialogues'], 'in', ['mainstream', 'pop', 'culture', 'about', 'the', 'appropriateness']]\n",
+ "[['horror', 'stories', 'or', 'the', 'sexual', 'promiscuity'], 'in', ['the', 'book', 'and', 'television', 'series', '\"Gossip']]\n",
+ "[['says', 'Amy', 'Pattee,', 'an', 'assistant', 'professor'], 'in', ['the', 'Graduate', 'School', 'of', 'Library', 'and']]\n",
+ "[['says', 'she', 'appreciates', 'the', 'social', 'commentary'], 'in', ['books', 'such', 'as', 'Nikki', \"Turner's\", '\"A']]\n",
+ "[['these', 'books', 'point', 'out', 'the', 'ways'], 'in', ['which', 'the', 'larger', 'world', 'is', 'failing']]\n",
+ "[['for', 'teens.', 'The', 'first', 'book,', 'released'], 'in', ['April,', 'tells', 'the', 'story', 'of', 'two']]\n",
+ "[['Eric', 'Jerome', \"Dickey's\", 'romantic', 'novel', '\"Milk'], 'in', ['My', 'Coffee.\"', 'Cowan', 'is', 'open', 'about']]\n",
+ "[['-', 'infidelity', 'is', 'a', 'perennial', 'theme'], 'in', ['urban', 'fiction', '-', 'but', 'Cowan', 'also']]\n",
+ "[['her,\"', 'says', 'Cowan,', '43,', 'who', 'lives'], 'in', ['Roxbury.', '\"I', 'let', 'her', 'know', \"what's\"]]\n",
+ "[['urban', 'fiction', 'is', 'for', 'teens', 'living'], 'in', ['certain', 'neighborhoods.', '\"The', 'same', 'things', 'that']]\n",
+ "[['\"The', 'same', 'things', 'that', 'are', 'happening'], 'in', ['the', 'books,\"', 'she', 'says,', '\"is', 'happening']]\n",
+ "[['the', 'books,\"', 'she', 'says,', '\"is', 'happening'], 'in', ['Boston', 'today:', 'the', 'gang', 'violence,', 'the']]\n",
+ "[['Pryce,', '17,', 'visited', 'Frugal', 'Book', 'Store'], 'in', ['the', 'Washington', 'Park', 'Mall', 'in', 'Roxbury']]\n",
+ "[['Store', 'in', 'the', 'Washington', 'Park', 'Mall'], 'in', ['Roxbury', 'recently', 'to', 'buy', '\"A', \"Gangster's\"]]\n",
+ "[['deal', 'with', 'young', 'girls', 'who', 'fall'], 'in', ['love', 'with', 'drug', 'dealers.', 'The', 'bookstore']]\n",
+ "[['she', 'says,', 'that', 'she', 'finished', 'it'], 'in', ['one', 'sitting.', 'Cox', 'News', 'Service', 'TULUM,']]\n",
+ "[['and', 'turquoise', 'to', 'the', 'south.', 'But'], 'in', ['the', 'beach', 'town', 'of', 'Tulum,', 'about']]\n",
+ "[['the', 'beach.', '\"We', 'had', 'just', 'fallen'], 'in', ['love', 'with', 'the', 'jungle,\"', 'Mari', 'Pintkowski']]\n",
+ "[['couple', 'has', 'fashioned', 'exquisitely', 'landscaped', 'pools'], 'in', ['front', 'of', 'the', 'rooms', 'with', 'cool,']]\n",
+ "[['(and', 'got', 'a', 'few', 'mosquito', 'bites'], 'in', ['the', 'process).', 'A', 'hollowed-out', 'tree', 'trunk']]\n",
+ "[['trunk', 'holding', 'a', 'living', 'fern', 'sat'], 'in', ['the', 'corner', 'of', 'the', 'shower.', 'We']]\n",
+ "[['our', 'plush', 'surroundings,', 'we', 'were', 'indeed'], 'in', ['the', 'jungle', '-', 'the', 'room', 'came']]\n",
+ "[['of', 'thousands', 'of', 'insects.', 'But', 'being'], 'in', ['Tulum,', 'we', \"couldn't\", 'deprive', 'ourselves', 'of']]\n",
+ "[['resort-style', 'places', 'have', 'moved', 'to', 'Tulum'], 'in', ['recent', 'years,', 'but', 'are', 'embroiled', 'in']]\n",
+ "[['in', 'recent', 'years,', 'but', 'are', 'embroiled'], 'in', ['a', 'lengthy', 'legal', 'battle', 'with', 'the']]\n",
+ "[['they', 'were', 'built', 'too', 'large', 'or'], 'in', ['sensitive', 'areas.', 'There', 'is', 'a', 'large']]\n",
+ "[['There', 'is', 'a', 'large', 'Italian', 'population'], 'in', ['the', 'Mayan', 'Riviera,', 'and', 'as', 'an']]\n",
+ "[['and', 'Guatemala,', 'are', 'best', 'visited', 'early'], 'in', ['the', 'morning.', 'Not', 'only', 'is', 'the']]\n",
+ "[['jungle', 'canopy', 'or', 'explore', 'the', 'ruins'], 'in', ['Coba.', 'Hanging', 'lazily', 'in', 'our', 'hammock,']]\n",
+ "[['the', 'ruins', 'in', 'Coba.', 'Hanging', 'lazily'], 'in', ['our', 'hammock,', 'suspended', 'above', 'the', 'natural']]\n",
+ "[['seafood;', 'Restaurant', 'at', 'the', 'Om', 'Hotel'], 'in', [\"Tulum's\", 'beach-side', 'hotel', 'zone', 'is', 'a']]\n",
+ "[['is', 'a', 'chance', 'to', 'see', 'ruins'], 'in', ['a', 'pristine', 'jungle', 'setting', '(admission', 'about']]\n",
+ "[['Mass.', '-', 'A', 'few', 'months', 'ago,'], 'in', ['a', 'cavernous', 'new', 'gallery', 'space', 'at']]\n",
+ "[['described', 'the', 'task.', 'Each', 'day,', 'ruler'], 'in', ['hand,', 'Fekishazy', 'added', 'to', 'the', 'piece,']]\n",
+ "[['of', 'Fekishazy', 'and', '68', 'others', 'brought'], 'in', ['by', 'Mass', 'MoCA', 'last', 'summer', 'will']]\n",
+ "[['clear', 'is', 'that', 'Sol', 'was', 'interested'], 'in', ['making', 'beautiful', 'things,\"', 'said', 'Mass', 'MoCA']]\n",
+ "[['creation', 'It', 'is', 'hard', 'to', 'stay'], 'in', ['one', 'place', 'for', 'long', 'within', 'the']]\n",
+ "[['with', 'new', 'internal', 'walls', 'that', 'stand'], 'in', ['contrast', 'to', 'the', 'aged', 'brick', 'structure']]\n",
+ "[['largest', 'campus', 'of', 'any', 'contemporary', 'museum'], 'in', ['the', 'United', 'States,', 'with', 'a', 'series']]\n",
+ "[['wall', 'drawings,', 'something', \"he'd\", 'encouraged,', 'appeared'], 'in', ['conflict', 'with', 'the', 'notion', 'of', 'an']]\n",
+ "[['LeWitt', 'for', 'a', 'nearly', 'six-hour', 'visit'], 'in', ['2003.', 'Not', 'long', 'afterward,', 'the', 'artist']]\n",
+ "[['directions', 'LeWitt', 'began', 'creating', 'wall', 'drawings'], 'in', ['the', 'late', \"'60s.\", 'A', 'response', 'to']]\n",
+ "[['for', 'installing', 'the', 'pieces', 'were', 'generally'], 'in', ['the', 'subtitles.', 'For', 'example,', \"1970's\", '\"Wall']]\n",
+ "[['four', 'equal', 'parts,', 'each', 'with', 'lines'], 'in', ['four', 'directions', 'superimposed', 'progressively.\"', \"LeWitt's\", 'idea']]\n",
+ "[['installers', '-', 'all', 'of', 'them', 'artists'], 'in', ['their', 'own', 'right', '-', 'taped', 'pages']]\n",
+ "[['Building', '7.', 'They', 'shared', 'rented', 'apartments'], 'in', ['town', 'and', 'blasted', 'music', 'in', 'the']]\n",
+ "[['apartments', 'in', 'town', 'and', 'blasted', 'music'], 'in', ['the', 'space', 'as', 'they', 'worked.', 'Nick']]\n",
+ "[['secret', 'weapon?', 'Breaks.', '\"It\\'s', 'very', 'relaxing'], 'in', ['a', 'way', 'because', 'you', 'have', 'an']]\n",
+ "[['someday.\"', 'Many', 'of', 'the', 'workers', 'left'], 'in', ['August,', 'and', 'the', 'rest', 'were', 'gone']]\n",
+ "[['remembers', 'LeWitt', 'coming', 'to', 'visit', 'him'], 'in', ['1971,', 'at', 'a', 'time', 'when', 'Reich']]\n",
+ "[['feel', 'Sol', 'with', 'his', 'finger', 'right'], 'in', ['your', 'rib', 'cage.\"', 'Thompson', 'said', 'raising']]\n",
+ "[['rock', 'star', 'living', 'like', 'a', 'hermit'], 'in', ['suburbia.', 'The', 'inspirational', 'recluse', 'was', 'Syd']]\n",
+ "[['named', 'Lenka', 'sits', 'at', 'a', 'table'], 'in', ['Cambridge,', 'England,', 'with', 'an', 'aging', 'communist,']]\n",
+ "[['Stoppard', 'at', '71', '-', 'tick.', 'Set'], 'in', ['Cambridge', 'and', 'Prague,', '\"Rock', \"'n'\", 'Roll\"']]\n",
+ "[['revolutions', 'of', 'heart,', 'mind,', 'and', 'state'], 'in', ['\"Rock', \"'n'\", 'Roll,\"', 'which', 'opens', 'Friday']]\n",
+ "[['Huntington', 'Theatre.', 'Barrett', 'is', 'a', 'character'], 'in', ['the', 'play,', 'albeit', 'one', 'seen', 'only']]\n",
+ "[['was', 'booted', 'out', 'of', 'Pink', 'Floyd'], 'in', ['1968;', 'he', 'died', 'a', 'month', 'after']]\n",
+ "[['month', 'after', '\"Rock', \"'n'\", 'Roll\"', 'opened'], 'in', ['2006.)', 'Even', 'more', 'integral', 'to', 'the']]\n",
+ "[['That', 'spirit', 'is', 'the', 'connective', 'thread'], 'in', ['\"Rock', \"'n'\", 'Roll,\"', 'as', 'Stoppard', 'chronicles']]\n",
+ "[['Prague', 'Spring', 'and', 'the', 'Velvet', 'Revolution)'], 'in', ['the', 'life', 'of', 'Max,', 'a', 'brilliant']]\n",
+ "[['of', 'an', 'alter-ego,', 'Stoppard', 'was', 'born'], 'in', ['Prague,', 'in', '1939.', 'His', 'family', 'fled']]\n",
+ "[['alter-ego,', 'Stoppard', 'was', 'born', 'in', 'Prague,'], 'in', ['1939.', 'His', 'family', 'fled', 'to', 'Singapore,']]\n",
+ "[['the', 'invasion.', 'Stoppard', 'moved', 'to', 'England'], 'in', ['1946,', 'when', 'his', 'mother', 'married', 'a']]\n",
+ "[['life', 'I', 'would', 'have', 'had,', 'but'], 'in', ['one', 'way', \"Jan's\", 'could', 'be', 'considered']]\n",
+ "[['Deserves', 'Favour,\"', 'about', 'a', 'dissident', 'imprisoned'], 'in', ['a', 'mental', 'hospital;', '\"Indian', 'Ink,\"', 'which']]\n",
+ "[['\"Indian', 'Ink,\"', 'which', 'examines', 'British', 'rule'], 'in', ['India;', 'and', '\"The', 'Coast', 'of', 'Utopia,\"']]\n",
+ "[['the', 'origins', 'of', 'modern', 'political', 'radicalism'], 'in', ['19th-century', 'Russia.', '\"As', 'he', 'gets', 'older']]\n",
+ "[['would', 'by', 'all', 'logic', 'be', 'cast'], 'in', ['stone', '-', 'say,', 'the', 'script', 'for']]\n",
+ "[['Tom', 'is', 'very', 'subtle', 'and', 'buried'], 'in', ['those', 'relationships', 'and', 'you', 'really', 'have']]\n",
+ "[['and', \"I'm\", 'not', 'really', 'very', 'interested'], 'in', ['doing', 'that,\"', 'Stoppard', 'says.', '\"Theater', 'is']]\n",
+ "[[\"It's\", 'not', 'really', 'a', 'text,', 'except'], 'in', ['a', 'secondary', 'way,', 'and', 'if', 'you']]\n",
+ "[['way,', 'and', 'if', 'you', 'were', 'interested'], 'in', ['writing', 'a', 'text', 'in', 'which', 'these']]\n",
+ "[['were', 'interested', 'in', 'writing', 'a', 'text'], 'in', ['which', 'these', 'different', 'parts', 'of', 'the']]\n",
+ "[['parts', 'of', 'the', 'map', 'were', 'connected'], 'in', ['some', 'interesting,', 'intelligent', 'way,', 'then', 'the']]\n",
+ "[['love', 'story,', 'principally,', 'a', 'love', 'story'], 'in', ['the', 'context', 'of', 'all', 'these', 'other']]\n",
+ "[['death', 'and', 'a', 'teenager', 'grow', 'up'], 'in', ['the', 'shadow', 'of', 'her', 'brilliant', 'parents.']]\n",
+ "[['of', 'the', 'game.\"', 'He', 'wrote', 'that'], 'in', ['1954,', 'when', 'there', 'were', 'only', '16']]\n",
+ "[['The', 'World', 'Series', 'ended', 'last', 'week'], 'in', ['the', 'worst', 'possible', 'weather', 'conditions', 'because']]\n",
+ "[['you', \"can't\", 'physically', 'start', 'a', 'game'], 'in', ['a', 'blizzard.', 'You', 'can,', 'and', 'they']]\n",
+ "[['did,', 'start', 'a', 'game', 'last', 'week'], 'in', ['sleet', 'that', 'left', 'it', 'possible', 'to']]\n",
+ "[['contracts.', 'With', 'the', 'premier', 'games', 'deep'], 'in', ['football', 'season,', 'baseball', 'has', 'to', 'play']]\n",
+ "[['also', 'part', 'of', 'a', 'show.', 'Trapped'], 'in', ['a', \"doctor's\", 'office,', 'one', 'could', 'hear']]\n",
+ "[['McCain', 'was', 'for', 'staying', 'and', 'surging'], 'in', ['Iraq,', 'and', 'Obama', 'stood', 'for', '\"let\\'s']]\n",
+ "[['has', 'worked', 'militarily', 'but', 'failed', 'politically'], 'in', ['Baghdad,', 'and', 'the', 'Bush', 'administration', 'is']]\n",
+ "[['coming', 'home.', 'Obama', 'wanted', 'to', 'fight'], 'in', ['Pakistan,', 'and', 'McCain', \"didn't\", 'want', 'to']]\n",
+ "[[\"didn't\", 'want', 'to', 'talk', 'about', 'it'], 'in', ['public.', 'Now,', 'the', 'Bush', 'administration', 'fights']]\n",
+ "[['public.', 'Now,', 'the', 'Bush', 'administration', 'fights'], 'in', ['Pakistan', 'and', 'talks', 'about', 'it.', 'While']]\n",
+ "[['that', 'a', 'Republican', 'administration', 'would', '\"invest\"'], 'in', ['banks', 'and', 'an', 'insurance', 'company', 'and']]\n",
+ "[['about', 'absorbing', 'home', 'mortgages', 'and', '\"investing\"'], 'in', ['failing', 'auto', 'companies.', 'It', 'would', 'not']]\n",
+ "[['that', 'the', 'baseball', 'championship', 'was', 'decided'], 'in', ['a', 'game', 'that', 'started', 'on', 'Tuesday']]\n",
+ "[['tv\"', \"you'll\", 'find', 'plenty', 'of', 'others'], 'in', ['the', 'same', 'boat.', 'The', 'problem', 'is']]\n",
+ "[['empty', 'boxes', 'with', 'a', 'red', 'X'], 'in', ['the', 'left', 'corner.', 'I', 'have', 'tried']]\n",
+ "[['offers', 'to', 'block', 'images', 'when', 'sent'], 'in', ['HTML', 'format', 'used', 'on', 'the', 'Web.']]\n",
+ "[['and', 'some', 'sneaky', 'programs', 'that', 'hide'], 'in', ['image', 'form', 'and', 'let', 'spammers', 'determine']]\n",
+ "[['like', 'the', 'one', 'I', 'just', 'described'], 'in', ['either', 'the', 'Advanced', 'Options', 'or', 'Security']]\n",
+ "[['thought', 'you', 'sounded', 'detached', '-', 'not'], 'in', ['the', 'fray,', 'but', 'above', 'it.', 'A.']]\n",
+ "[['to', 'look', 'at', 'when', 'he', 'was'], 'in', ['his', 'heyday', 'was', 'Roger', 'Mudd,', 'and']]\n",
+ "[[\"I'm\", 'very', 'familiar', 'with.', 'Q.', 'Yet'], 'in', ['this', 'election,', 'the', 'pitch', 'of', 'the']]\n",
+ "[['have', 'things', 'that', 'have', 'happened', 'here'], 'in', ['Washington', 'that', 'have', 'contributed.', 'When', 'I']]\n",
+ "[['recount.', 'Then', 'you', 'have', 'the', 'war'], 'in', ['Iraq.', 'You', 'add', 'all', 'those', 'things']]\n",
+ "[['have', 'now', 'is', '-', 'I', 'worked'], 'in', ['the', 'mainstream', 'media', 'for', 'years', 'as']]\n",
+ "[['newspapers.', 'There', 'was', 'never', 'any', 'doubt'], 'in', ['my', 'mind,', 'after', 'I', 'woke', 'up']]\n",
+ "[['some', 'countervailing', 'forces.', \"There's\", 'a', 'blend'], 'in', ['the', 'media', 'and', 'more', 'of', 'a']]\n",
+ "[['there', 'are', 'stories', 'that', 'we', 'develop'], 'in', ['a', 'different', 'way', 'than', 'others', 'do']]\n",
+ "[['it.', 'It', 'is', 'now', 'a', 'consensus'], 'in', ['the', 'media', 'that', 'the', 'Swift', 'Boat']]\n",
+ "[['problem', 'with', 'me.', 'When', \"I'm\", 'sitting'], 'in', ['the', 'anchor', 'chair,', 'I', \"don't\", 'state']]\n",
+ "[['a', 'honeymoon', 'as', 'there', 'has', 'been'], 'in', ['the', 'past.', 'Now', 'if', 'the', 'president']]\n",
+ "[['turns', 'out', 'to', 'be', 'as', 'moderate'], 'in', ['policy', 'as', 'he', 'is', 'in', 'temperament,']]\n",
+ "[['moderate', 'in', 'policy', 'as', 'he', 'is'], 'in', ['temperament,', 'the', 'honeymoon', 'could', 'last', 'a']]\n",
+ "[['a', 'top-of-the-line', 'gadget.', \"There's\", 'a', 'joy'], 'in', ['luxury.', 'Maybe', \"I'm\", 'fooling', 'myself,', 'but']]\n",
+ "[['money', 'over', 'the', 'long', 'run,', 'but'], 'in', ['some', 'cases', 'the', 'cost', 'of', 'luxury']]\n",
+ "[[\"aren't\", 'the', 'most', 'expensive', 'gadgets', 'available'], 'in', ['their', 'class,', 'they', 'represent', 'the', 'kind']]\n",
+ "[['I', 'had', 'never', 'bothered', 'to', 'send'], 'in', ['the', 'warranty', 'information.', 'I', 'called', 'Koss']]\n",
+ "[['given', 'the', 'state', 'of', 'customer', 'service'], 'in', ['general.', 'What', 'a', 'surprise!', 'No', 'warranty']]\n",
+ "[['wide-format', 'inkjet', 'and', 'found', 'they', 'start'], 'in', ['the', 'mid-$400s', 'and', 'extended', 'to', '$600.']]\n",
+ "[['tomorrow.\"', 'Behind', 'him', 'was', 'McLean', 'Hospital'], 'in', ['Belmont,', 'Mass.,', 'where', 'the', 'staff', 'wanted']]\n",
+ "[['him', 'against', 'his', 'will.', 'Another', 'stay'], 'in', ['a', 'mental', 'hospital,', 'he', 'felt,', 'would']]\n",
+ "[['clear', 'tracks.', 'This', 'was', 'the', 'climax'], 'in', ['a', 'series', 'of', 'psychiatric', 'implosions', 'that']]\n",
+ "[['psychiatric', 'implosions', 'that', 'had', 'landed', 'Delman'], 'in', ['hospitals,', 'driven', 'away', 'girlfriends,', 'stymied', 'his']]\n",
+ "[['huge', 'obstacles', 'and', 'take', 'commanding', 'action'], 'in', ['local', 'communities\"', 'on', 'healthcare', 'issues.', 'Delman,']]\n",
+ "[['Delman,', 'who', 'is', '49', 'and', 'lives'], 'in', ['Stoneham,', 'founded', 'and', 'runs', 'Consumer', 'Quality']]\n",
+ "[['and', 'the', 'traditional', 'dominance', 'of', 'academics'], 'in', ['research,', 'Delman', 'has', 'had', 'to', 'fight']]\n",
+ "[['mental', 'illness,', 'hospitalized', 'numerous', 'times,', 'down'], 'in', ['the', 'dumps', 'and', 'facing', 'so', 'many']]\n",
+ "[['overcome', 'those', 'barriers', 'because', 'of', 'advantages'], 'in', ['my', 'life', '-', 'family', 'and', 'education']]\n",
+ "[['job.\"', 'All', 'around', 'him,', 'Delman', 'said'], 'in', ['an', 'interview,', 'he', 'sees', 'people', 'in']]\n",
+ "[['in', 'an', 'interview,', 'he', 'sees', 'people'], 'in', ['positions', 'similar', 'to', 'his', 'a', 'decade']]\n",
+ "[['to', 'his', 'a', 'decade', 'ago', 'caught'], 'in', ['the', 'Catch', '22', 'that', 'because', 'they']]\n",
+ "[['after', 'his', 'crises', 'and', 'hospitalizations', 'began'], 'in', ['his', 'thirties,', 'he', 'found', 'it', 'impossible']]\n",
+ "[['as', 'a', 'person', 'with', 'mental', 'illness'], 'in', ['the', 'mid-1990s,', 'as', 'he', 'sought', 'to']]\n",
+ "[['a', 'table', 'at', 'a', \"Bickford's\", 'restaurant'], 'in', ['Waltham,', 'he', 'was', 'confessing', 'his', 'love']]\n",
+ "[['across', 'the', 'table,', 'tears', 'welling', 'up'], 'in', ['her', 'eyes,', 'and', 'took', 'his', 'hand.']]\n",
+ "[['you.\"', '\"It', 'was', 'the', 'greatest', 'moment'], 'in', ['my', 'life,\"', 'Jonathan', 'Delman', 'said.', 'Since']]\n",
+ "[['psychiatric', 'patient', 'now', 'informs', \"Delman's\", 'work'], 'in', ['helping', 'others.', 'For', 'example,', 'he', 'said,']]\n",
+ "[['agency', 'began', 'to', 'survey', 'psychiatric', 'patients'], 'in', ['hospitals,', 'it', 'asked', 'about', 'staff-and-patient', 'interactions.']]\n",
+ "[['Delman,', 'but', 'when', 'he', 'was', 'hospitalized'], 'in', ['the', 'mid-1990s,', 'he', 'was', 'abruptly', 'taken']]\n",
+ "[['has', 'changed', 'thousands', 'of', \"people's\", 'lives'], 'in', ['Massachusetts,', 'but', 'they', \"don't\", 'know', 'Jon']]\n",
+ "[['focusing', 'on', 'giving', 'consumers', 'more', 'voice'], 'in', ['the', 'treatments', 'they', 'received,', 'but', 'he']]\n",
+ "[['he', 'is', 'on', 'track', 'to', 'receive'], 'in', ['2010.', 'That', 'leaves', 'little', 'free', 'time,']]\n",
+ "[['research', 'about', 'physical', 'activity', 'and', 'health'], 'in', ['more', 'than', 'a', 'decade.', 'Key', 'guidelines']]\n",
+ "[['backpack.', 'Aerobic', 'activity', 'should', 'be', 'performed'], 'in', ['episodes', 'of', 'at', 'least', '10', 'minutes.']]\n",
+ "[['whose', 'habit', 'it', 'is', 'to', 'engage'], 'in', ['vigorous', 'aerobic', 'activity', 'or', 'who', 'are']]\n",
+ "[['allow', 'for', 'meeting', 'these', 'guidelines,', 'engaging'], 'in', ['regular', 'physical', 'activity', 'according', 'to', 'abilities']]\n",
+ "[['site', 'is', 'www.ohtrainer.com.', 'This', 'article', 'appeared'], 'in', ['the', 'Dayton', 'Daily', 'News.', 'Before', 'there']]\n",
+ "[['had', 'one', 'of', 'the', 'giddier', 'rides'], 'in', ['prime-time', 'history.', 'It', 'went', 'from', 'near']]\n",
+ "[['a', 'brief', 'spot', 'at', 'No.', '1'], 'in', ['the', 'Nielsen', 'ratings).', 'In', 'the', 'process']]\n",
+ "[['the', 'names', 'Napoleon', 'and', 'Ilya', '(as'], 'in', ['Kuryakin,', \"Solo's\", 'sidekick)', \"aren't\", 'much', 'behind']]\n",
+ "[['behind', 'John,', 'Paul,', 'George,', 'and', 'Ringo'], 'in', ['summoning', 'up', 'the', 'onset', 'of', 'the']]\n",
+ "[['Ellison.', 'Richard', 'Donner', 'directed', 'four', 'episodes'], 'in', ['1964', '(making', 'Solo', 'and', 'Kuryakin', 'the']]\n",
+ "[['creator,', 'Ian', 'Fleming,', 'had', 'briefly', 'assisted'], 'in', ['creating', 'the', 'series.', 'His', 'sole', 'contribution']]\n",
+ "[['debonair', 'secret', 'agent', 'who', 'looks', 'good'], 'in', ['a', 'tux', 'and', 'is', 'caviar', 'to']]\n",
+ "[['Sound', 'familiar?', 'The', 'unaired', 'pilot', '(included'], 'in', ['the', 'DVD', 'set)', 'was', 'called', '\"Solo.\"']]\n",
+ "[['weekly', 'thanks', 'offered', 'to', 'the', 'organization'], 'in', ['the', \"show's\", 'closing', 'credits,', 'it', \"didn't\"]]\n",
+ "[['it', 'played', 'up', 'Leo', 'G.', 'Carroll,'], 'in', ['the', 'role', 'of', 'professorial', 'spymaster', 'Alexander']]\n",
+ "[['Carroll', 'had', 'played', 'a', 'similar', 'part'], 'in', ['Alfred', \"Hitchcock's\", '\"North', 'by', 'Northwest\"', '(1959).']]\n",
+ "[['Imagine', 'a', 'suave', 'Hugh', 'Hefner', 'trading'], 'in', ['his', 'pipe', 'and', 'Pepsi', 'for', 'a']]\n",
+ "[['a', 'Walther', 'P38.', 'Small', 'wonder', 'that'], 'in', [\"Vaughn's\", 'best-known', 'film', 'role,', 'in', '\"Bullitt\"']]\n",
+ "[['that', 'in', \"Vaughn's\", 'best-known', 'film', 'role,'], 'in', ['\"Bullitt\"', '(1968),', 'he', 'would', 'be', 'cast']]\n",
+ "[['McCallum', 'was', 'a', 'distant', 'second.', 'Add'], 'in', ['his', 'blond', 'bangs,', 'high', 'cerebral', 'forehead,']]\n",
+ "[['the', 'son', 'of', 'Lawrence', 'of', 'Arabia'], 'in', ['a', 'season', 'two', 'episode,', 'it', \"didn't\"]]\n",
+ "[['more', 'fan', 'mail', 'than', 'any', 'actor'], 'in', ['the', 'history', 'of', 'MGM,', 'the', 'studio']]\n",
+ "[['first', 'beachhead', 'of', 'the', \"'60s\", 'youthquake'], 'in', ['prime', 'time.', 'It', 'was', 'a', 'fluke.']]\n",
+ "[['McCallum', 'had', 'all', 'of', 'two', 'lines'], 'in', ['the', 'pilot.', 'The', 'producers', 'quickly', 'realized']]\n",
+ "[['\"Mission:', 'Impossible\"', '(Schifrin', 'would', 'be', 'called'], 'in', ['to', 'reorchestrate', 'the', '\"U.N.C.L.E.\"', 'theme', 'for']]\n",
+ "[['the', 'right', 'reasons.', 'Seeking', 'to', 'cash'], 'in', ['on', \"McCallum's\", 'youth', 'appeal,', 'the', 'producers']]\n",
+ "[[\"McCallum's\", 'youth', 'appeal,', 'the', 'producers', 'brought'], 'in', ['the', 'likes', 'of', 'Sonny', '&', 'Cher']]\n",
+ "[['the', 'world', 'today', 'as', 'it', 'was'], 'in', ['the', 'days', 'of', 'Alexander', 'the', 'Great!\"']]\n",
+ "[['mfeeney@globe.com.', 'REVIEW', 'FIRST', 'DOUBT:', 'Optical', 'Confusion'], 'in', ['Modern', 'Photography', 'At', 'the', 'Yale', 'UniversityArt']]\n",
+ "[['point', 'of', '\"First', 'Doubt:', 'Optical', 'Confusion'], 'in', ['Modern', 'Photography,\"', 'which', 'runs', 'at', 'the']]\n",
+ "[['as', 'he', 'puts', 'it,', '\"a', 'dislocation'], 'in', ['the', 'usual.\"', 'That', 'dislocation', 'can', 'take']]\n",
+ "[['of', 'darkroom', 'manipulation.', 'The', '114', 'images'], 'in', ['the', 'show', 'are', 'all', 'examples', 'of']]\n",
+ "[['be', 'conceptually', 'opaque.', 'Each', 'specific', 'element'], 'in', ['Raghubir', \"Singh's\", '\"Pavement', 'Mirror', 'Shop,', 'Howrah,']]\n",
+ "[['times', \"it's\", 'motion', 'that', 'provides', 'resolution'], 'in', ['figuring', 'out', \"what's\", 'before', 'our', 'eyes.']]\n",
+ "[['the', 'slightest', 'bit', 'of', 'follicular', 'flapping'], 'in', ['Jessica', \"Raimi's\", '\"Liz', 'on', 'Piermont', 'Pier\"']]\n",
+ "[['windy', 'day.', \"There's\", 'one', 'famous', 'photograph'], 'in', ['the', 'show,', 'William', \"Klein's\", '\"Gun', '1,']]\n",
+ "[['lens', 'while', 'buddy', 'calmly', 'looks', 'on'], 'in', ['profile.', 'The', 'rest', 'are', 'relatively', 'unfamiliar,']]\n",
+ "[['Mount', 'Rushmore,', 'rather', 'than', 'mountain', 'itself,'], 'in', ['front', 'of', 'camera-toting', 'tourists).', 'Yet', 'the']]\n",
+ "[['and', 'tension', 'between', 'continuity', 'and', 'disruption'], 'in', ['the', 'Friedlander', 'picture', 'here,', '\"England,\"', 'are']]\n",
+ "[['his', 'fondness', 'for', 'eccentric', 'surfaces', 'seen'], 'in', ['minute', 'detail,', 'or', 'even', 'Andre', 'Kertesz']]\n",
+ "[['a', 'full-body', 'portrait', 'of', 'man', 'standing'], 'in', ['front', 'of', 'the', 'camera.', 'What', 'could']]\n",
+ "[['which', 'Herbert', 'Bayer', 'took', '\"Xanti', 'Schavinksy'], 'in', ['a', 'Handstand', 'Position\"', 'makes', 'it', 'look']]\n",
+ "[['squeezing', 'people', 'this', 'winter,', 'relief', 'organizations'], 'in', ['communities', 'across', 'the', 'state', 'are', 'facing']]\n",
+ "[['the', 'state', 'are', 'facing', 'profound', 'increases'], 'in', ['families', 'seeking', 'food', 'and', 'are', 'girding']]\n",
+ "[['and', 'are', 'girding', 'for', 'a', 'spike'], 'in', ['holiday', 'demand.', 'The', 'Greater', 'Boston', 'Food']]\n",
+ "[['Ninety', 'percent', 'reported', 'a', 'sharp', 'increase'], 'in', ['need.', '\"We\\'re', 'seeing', 'both', 'the', 'individual']]\n",
+ "[['with', 'food', 'or', 'energy', 'bills', 'soared;'], 'in', ['Framingham,', 'requests', 'were', 'up', '66', 'percent,']]\n",
+ "[['Framingham,', 'requests', 'were', 'up', '66', 'percent,'], 'in', ['Hyannis', '47', 'percent,', 'and', 'in', 'Milford']]\n",
+ "[['percent,', 'in', 'Hyannis', '47', 'percent,', 'and'], 'in', ['Milford', '48', 'percent.', 'Greenfield', 'experienced', 'an']]\n",
+ "[['Cambridge', 'served', 'twice', 'as', 'many', 'people'], 'in', ['the', 'soup', 'kitchen', 'this', 'September', 'as']]\n",
+ "[['time', '-', 'beginning', 'Nov.', '12', '-'], 'in', ['the', 'hopes', 'of', 'restoring', 'Christmastime', 'donations']]\n",
+ "[['where', 'demand', 'went', 'from', '56', 'families'], 'in', ['October', '2007', 'to', '150', 'last', 'month']]\n",
+ "[['faces.', 'During', 'a', 'particularly', 'busy', 'month'], 'in', ['September', '2008,', '165', 'families', 'were', 'served,']]\n",
+ "[['woman.', '\"My', 'husband', \"wouldn't\", 'even', 'come'], 'in', ['with', 'me', '...', 'I', \"wouldn't\", 'even']]\n",
+ "[['report', 'by', 'Giving', 'USA', 'Foundation', 'released'], 'in', ['September', 'found', 'that', 'during', 'recessions', 'or']]\n",
+ "[['relief', 'organization', '-', 'relies', 'on', 'something'], 'in', ['short', 'supply', 'in', 'many', 'other', 'corners']]\n",
+ "[['relies', 'on', 'something', 'in', 'short', 'supply'], 'in', ['many', 'other', 'corners', 'these', 'days:', 'faith.']]\n",
+ "[['he', 'used', 'to', 'be', 'the', 'one'], 'in', ['an', 'Ohio', 'branch', 'buying', '$40,000', 'worth']]\n",
+ "[['be', 'reached', 'at', 'ebbert@globe.com.', 'Readers', 'interested'], 'in', ['donating', 'turkeys', 'or', 'other', 'items', 'to']]\n",
+ "[['of', 'his', 'good', 'days.', 'Kaufman', 'is'], 'in', ['town', 'to', 'promote', '\"Synecdoche,', 'New', 'York,\"']]\n",
+ "[['-', 'actually,', 'that', 'sentence', 'is', 'unusual'], 'in', ['a', 'number', 'of', 'ways.', 'The', 'film,']]\n",
+ "[['of', 'ways.', 'The', 'film,', 'which', 'opens'], 'in', ['Boston', 'on', 'Friday,', 'is', 'the', 'acclaimed']]\n",
+ "[['a', 'feature-length', 'M.C.', 'Escher', 'drawing.', 'Set'], 'in', ['Schenectady,', 'N.Y.,', '\"Synecdoche\"', 'stars', 'Philip', 'Seymour']]\n",
+ "[['director', 'who', 're-stages', 'his', 'own', 'life'], 'in', ['a', 'downtown', 'warehouse.', 'The', 'film', 'is']]\n",
+ "[['say', 'I', \"don't\", 'explain', 'what', 'happens'], 'in', ['my', 'movies', 'because', 'I', 'want', 'the']]\n",
+ "[['(laughs)', 'Q.', 'How', 'does', 'it', 'feel'], 'in', ['practice?', 'A.', 'I', 'like', 'writing', 'but']]\n",
+ "[['have', 'to', 'be', 'the', 'designated', 'adult'], 'in', ['the', 'room.', 'A.', 'I', 'do,', 'and']]\n",
+ "[['a', 'parent.', 'I', \"don't\", 'mean', 'that'], 'in', ['a', 'condescending', 'way,', 'but', 'simply', 'that']]\n",
+ "[['I', 'did', 'it.', 'It', 'was', 'easier'], 'in', ['the', 'mornings.', 'The', 'days', 'which', 'ran']]\n",
+ "[['far', 'back', 'have', 'you', 'been', 'interested'], 'in', ['writing', 'these', 'nonlinear', 'boxes', 'within', 'boxes?']]\n",
+ "[['A.', 'I', 'remember', 'reading', '\"Six', 'Characters'], 'in', ['Search', 'of', 'an', 'Author\"', 'in', 'high']]\n",
+ "[['Characters', 'in', 'Search', 'of', 'an', 'Author\"'], 'in', ['high', 'school', 'and', 'being', 'amazed', 'that']]\n",
+ "[['like', 'Monty', 'Python', 'and', 'National', 'Lampoon'], 'in', ['the', \"'70s,\", 'Ionesco,', 'stuff', 'that', 'questioned']]\n",
+ "[['what', 'we', 'accept', 'as', 'reality,', 'sometimes'], 'in', ['a', 'very', 'comic', 'way.', 'At', 'the']]\n",
+ "[['for', 'a', 'while.', 'A.', 'I', 'was'], 'in', ['the', 'acting', 'program', 'at', 'BU.', 'I']]\n",
+ "[['write', 'now.', 'It', 'was', 'fairly', 'experimental'], 'in', ['terms', 'of', 'structure,', 'and', 'the', 'professor']]\n",
+ "[['to', 'make', 'it,', 'and', 'he', 'was'], 'in', ['a', 'position', 'to', 'be', 'able', 'to.']]\n",
+ "[['did', 'you', 'set', 'the', 'new', 'film'], 'in', ['Schenectady?', 'Because', 'of', 'the', 'wordplay', 'with']]\n",
+ "[['I', 'like', 'them,', 'so', 'I', 'continue'], 'in', ['that', 'direction.', \"It's\", 'more', 'of', 'an']]\n",
+ "[['can', 'actually', 'have', 'a', 'conversation', 'almost'], 'in', ['real', 'time', 'between', 'characters.', 'Q.', 'Who']]\n",
+ "[['\"Synechdoche,', 'New', 'York\"', 'comes', 'to', 'us'], 'in', ['the', 'form', 'of', 'a', 'commercial', 'movie,']]\n",
+ "[['stars.', \"It's\", 'not', 'like', \"it's\", 'hanging'], 'in', ['a', 'museum,', 'where', 'a', 'museumgoer', 'would']]\n",
+ "[['888-603-1036.', 'Dumanel', 'Luxama', 'began', 'his', 'life'], 'in', ['rural', 'Haiti', 'doubly', 'unlucky.', 'He', 'was']]\n",
+ "[['with', 'a', 'rare', 'deformity,', 'a', 'hole'], 'in', ['his', 'skull', 'that', 'let', 'his', 'growing']]\n",
+ "[[\"Dumanel's\", 'luck', 'began', 'to', 'change.', 'Many'], 'in', ['his', 'family', 'held', 'old', 'folk', 'beliefs']]\n",
+ "[['spirit.', 'But', 'his', 'father,', 'Almane,', 'believed'], 'in', ['Christianity', 'and', 'Western', 'medicine.', 'He', 'sold']]\n",
+ "[['brought', 'the', 'two', 'to', 'a', 'hospital'], 'in', ['the', 'town', 'of', 'Hinche.', 'It', 'lacked']]\n",
+ "[['instruments,', 'but', 'Operation', 'Smile', 'and', 'Partners'], 'in', ['Health,', 'both', 'nonprofits', 'famed', 'for', 'providing']]\n",
+ "[['encephalocele', '(en-SEF-a-lo-seel).', 'He', 'had', 'treated', 'them'], 'in', ['Australia,', 'even', 'written', 'papers', 'on', 'them.']]\n",
+ "[['do', 'this', 'here,\"', 'he', 'said.', 'Partners'], 'in', ['Health', 'handled', 'the', 'red', 'tape;', \"Children's\"]]\n",
+ "[['of', 'the', 'highest-tech', 'pediatric', 'operating', 'tables'], 'in', ['the', 'world', 'as', 'Meara', 'and', 'colleagues,']]\n",
+ "[['free,', 're-engineered', 'his', 'brain', 'and', 'skull'], 'in', ['a', 'concert', 'of', 'neuro-', 'and', 'plastic']]\n",
+ "[['of', 'neuro-', 'and', 'plastic', 'surgery.', 'Only'], 'in', ['the', 'last', 'few', 'years', 'has', 'such']]\n",
+ "[['have', 'taken', '24', 'hours', 'was', 'over'], 'in', ['eight,', 'and', 'Dumanel', 'was', 'out', 'of']]\n",
+ "[['he', 'can', 'start', 'on', 'his', 'road'], 'in', ['life,\"', 'Luxama', 'said', 'gratefully', 'during', 'a']]\n",
+ "[['said', 'Dr.', 'David', 'Walton,', 'a', 'Partners'], 'in', ['Health', 'physician', 'who', 'helped', 'get', 'Dumanel']]\n",
+ "[['has', 'the', 'highest', 'infant', 'mortality', 'rate'], 'in', ['the', 'Western', 'hemisphere:', '62', 'out', 'of']]\n",
+ "[['and', 'strategies', 'that', 'can', 'be', 'applied'], 'in', ['future', 'complex', 'cases.', '\"It\\'s', 'good', 'at']]\n",
+ "[['balloon,', '\"filled', 'with', 'water', 'and', 'plopped'], 'in', ['the', 'kitchen', 'sink,\"', 'blocking', 'the', 'drain.']]\n",
+ "[['Where', 'gaps', 'remained,', 'he', 'filled', 'them'], 'in', ['with', 'fragments', 'of', 'bone.', 'In', 'this,']]\n",
+ "[['jigsaw', 'puzzle:', 'Once', 'the', 'pieces', 'are'], 'in', ['place,', 'they', 'will', 'eventually', 'fuse', 'together']]\n",
+ "[['da!\"', 'said', 'Dumanel,', 'who', 'turned', '1'], 'in', ['September.', '\"Ba!\"', 'Almane,', '27,', 'has', 'been']]\n",
+ "[['arrange', 'for', 'follow-up', 'care', 'through', 'Partners'], 'in', [\"Health's\", 'Haiti', 'clinics.', '\"When', 'you', 'want']]\n",
+ "[['to', 'go', 'home,\"', 'he', 'told', 'Almane'], 'in', ['Spanish,', 'their', 'common', 'language,', '\"it\\'s', 'possible.\"']]\n",
+ "[['takes', 'ordinary', 'images', 'of', 'people', 'dressed'], 'in', ['street', 'clothes', 'and', 'digitally', 'peels', 'away']]\n",
+ "[['how', 'body', 'shape', 'plays', 'a', 'role'], 'in', ['disease', 'risk;', 'people', 'playing', 'video', 'games']]\n",
+ "[['their', 'virtual', 'bodies', 'as', 'a', 'character'], 'in', ['the', 'game.', 'The', 'researchers', 'are', 'patenting']]\n",
+ "[['to', 'sports', 'medicine.', 'The', 'software', 'originated'], 'in', ['efforts', 'to', 'solve', 'a', 'more', 'low-tech']]\n",
+ "[['along', 'with', 'a', 'model', 'that', 'factors'], 'in', ['how', 'clothing', 'becomes', 'looser', 'and', 'tighter']]\n",
+ "[['test,', 'they', 'had', 'six', 'subjects', 'pose'], 'in', ['a', 'variety', 'of', 'poses', 'and', 'outfits,']]\n",
+ "[['root', 'canal', 'suddenly', 'seems', 'appealing.', '\"Americans'], 'in', ['particular', 'are', 'just', 'very', 'squeamish', 'about']]\n",
+ "[['gastroenterologist', 'at', 'M.D.', 'Anderson', 'Cancer', 'Center'], 'in', ['Houston.', '\"It', 'has', 'tremendous', 'promise', 'as']]\n",
+ "[['ball,', 'which', 'is', 'preventing', 'colon', 'cancer'], 'in', ['Americans.\"', 'All', 'screening', 'methods', 'for', 'colon']]\n",
+ "[['of', 'the', 'National', 'Cancer', 'Institute', '-'], 'in', ['part', 'because', 'it', 'means', 'groggy', 'patients']]\n",
+ "[['those', 'drawbacks,', 'there', 'was', 'considerable', 'interest'], 'in', ['developing', 'an', 'alternative.', 'Enter', 'the', 'virtual']]\n",
+ "[['alternative.', 'Enter', 'the', 'virtual', 'colonoscopy,', 'known'], 'in', ['medical', 'lingo', 'as', 'computed', 'tomographic', '(CT)']]\n",
+ "[['recent', 'afternoon,', 'Dr.', 'Michael', 'Zalis', 'sat'], 'in', ['a', 'darkened', 'suite', 'at', 'Mass.', 'General']]\n",
+ "[['-', 'and', 'specialists', 'said', 'that', 'happens'], 'in', ['about', '10', 'to', '15', 'percent', 'of']]\n",
+ "[['minor,', 'but', 'if', 'you', 'put', 'yourself'], 'in', ['the', 'position', 'of', 'the', 'patient,', \"it's\"]]\n",
+ "[['as', 'reliable', 'as', 'the', 'traditional', 'method'], 'in', ['detecting', 'the', 'polyps', 'most', 'likely', 'to']]\n",
+ "[['the', 'health', 'of', 'patients,', 'researchers', 'reported'], 'in', ['the', 'New', 'England', 'Journal', 'of', 'Medicine.']]\n",
+ "[['College', 'students', 'who', 'work', 'as', 'interns'], 'in', ['the', 'basement', 'of', 'his', 'house', 'point']]\n",
+ "[['the', 'poorest', 'and', 'most', 'dangerous', 'countries'], 'in', ['the', 'world,', 'remote', 'locales', 'where', 'high']]\n",
+ "[['card', 'with', 'information', 'on', 'HIV', 'written'], 'in', ['their', 'native', 'language,', 'and', 'then', 'deliver']]\n",
+ "[['life,\"', \"he'll\", 'say,', 'through', 'a', 'translator,'], 'in', ['a', 'refined', 'tactic', 'to', 'pull', 'them']]\n",
+ "[['go', 'over', 'smoothly.', \"He's\", 'been', 'arrested'], 'in', ['Cuba,', 'detained', 'in', 'Kenya,', 'and', 'has']]\n",
+ "[[\"He's\", 'been', 'arrested', 'in', 'Cuba,', 'detained'], 'in', ['Kenya,', 'and', 'has', 'had', 'his', 'business']]\n",
+ "[['has', 'had', 'his', 'business', 'cards', 'confiscated'], 'in', ['China.', 'But', 'his', 'tourist-in-a-Hawaiian-shirt', 'disguise', 'has']]\n",
+ "[['everything', 'to', 'do', 'with', 'your', 'interest'], 'in', ['reading', 'the', 'first', 'page.', 'His', 'unique']]\n",
+ "[['to', 'really', 'respond', 'by', 'treating', 'them'], 'in', ['an', 'intelligent', 'manor.', 'He', 'gives', 'them']]\n",
+ "[['Chittick', 'first', 'became', 'aware', 'of', 'AIDS'], 'in', ['the', '1980s', 'when', 'he', 'owned', 'an']]\n",
+ "[['education,', 'earned', 'a', \"master's\", 'and', 'doctorate'], 'in', ['education,', 'and', 'was', 'lecturing', 'at', 'the']]\n",
+ "[['the', 'Harvard', 'School', 'of', 'Public', 'Health'], 'in', ['the', 'mid-90s', 'when', 'he', 'realized', 'that']]\n",
+ "[['realized', 'that', 'his', 'place', 'was', 'not'], 'in', ['the', 'classroom.', 'It', 'was,', 'he', 'realized,']]\n",
+ "[['(He', 'says', 'he', 'takes', 'little', 'pride'], 'in', ['the', 'fact', 'that', 'his', 'Harvard', 'thesis']]\n",
+ "[['TeenAIDS', 'out', 'of', 'his', 'childhood', 'home'], 'in', ['Fitchburg,', 'and', 'the', 'house,', 'which', 'was']]\n",
+ "[['\"I', 'am', 'certain,\"', 'he', 'said', 'recently'], 'in', ['his', 'living', 'room,', 'just', 'before', 'he']]\n",
+ "[['leave', 'a', 'kid,', 'I', 'look', 'them'], 'in', ['the', 'eye', 'and', 'say:', \"'You're\", 'now']]\n",
+ "[['he', 'grew', 'up.', 'Education:', \"Bachelor's\", 'degree'], 'in', ['government', 'and', 'history', 'from', 'Dartmouth', 'in']]\n",
+ "[['in', 'government', 'and', 'history', 'from', 'Dartmouth'], 'in', ['1970;', \"master's\", 'in', 'visual', 'studies', 'from']]\n",
+ "[['history', 'from', 'Dartmouth', 'in', '1970;', \"master's\"], 'in', ['visual', 'studies', 'from', 'MIT', 'in', '1980;']]\n",
+ "[[\"master's\", 'in', 'visual', 'studies', 'from', 'MIT'], 'in', ['1980;', \"master's\", 'and', 'EdD', 'from', 'Harvard,']]\n",
+ "[['1980;', \"master's\", 'and', 'EdD', 'from', 'Harvard,'], 'in', ['1989', 'and', '1994,', 'respectively.', 'Hobbies:', '\"I']]\n",
+ "[['346-9867;', 'e-mail:', 'mikell@nytimes.com.', 'POLITICS', '(Will', 'move'], 'in', ['\"p\"', 'news', 'file.)', '(EDS:', 'For', 'all']]\n",
+ "[['the', 'way', 'presidential', 'campaigns', 'are', 'fought'], 'in', ['this', 'country,', 'a', 'legacy', 'that', 'has']]\n",
+ "[['the', 'popcorn', 'popped', 'and', 'to', 'be'], 'in', ['your', 'favorite', 'chair', 'no', 'later', 'than']]\n",
+ "[['that', 'same-sex', 'marriages', 'may', 'be', 'allowed'], 'in', ['California,', 'depending', 'on', 'the', 'outcome', 'of']]\n",
+ "[['By', 'Jacques', 'Steinberg.', 'INTERNATIONAL', '(Will', 'move'], 'in', ['\"i\"', 'news', 'file.)', 'VENEZUELA-SUITCASE-TRIAL', '(Miami)', '--A']]\n",
+ "[['convicted', 'on', 'Monday', 'for', 'his', 'role'], 'in', ['a', 'plot', 'to', 'conceal', 'what', 'U.S.']]\n",
+ "[['guilty', 'by', 'a', 'federal', 'court', 'jury'], 'in', ['Miami', 'of', 'conspiracy', 'and', 'acting', 'as']]\n",
+ "[['acting', 'as', 'an', 'illegal', 'foreign', 'agent'], 'in', ['the', 'United', 'States', 'in', 'a', 'case']]\n",
+ "[['foreign', 'agent', 'in', 'the', 'United', 'States'], 'in', ['a', 'case', 'dubbed', 'the', '\"suitcase', 'scandal\"']]\n",
+ "[['promise', 'of', 'those', 'days', 'had', 'frayed'], 'in', ['recent', 'years', 'but', 'economically', 'times', 'were']]\n",
+ "[['By', 'Sabrina', 'Tavernise.', 'FINANCIAL', '(Will', 'move'], 'in', ['\"f\"\\'', 'news', 'file.)', 'FCC-RADIO-SPECTRUM', '(San', 'Francisco)']]\n",
+ "[['are', 'two', 'of', 'the', 'many', 'combatants'], 'in', ['a', 'high-tech', 'dispute', 'over', 'precious', 'slices']]\n",
+ "[['workers', 'scampered', 'from', 'office', 'to', 'office'], 'in', ['Halloween', 'costumes.', 'A', 'few', 'minutes', 'later,']]\n",
+ "[['billion', 'to', 'the', 'nine', 'largest', 'banks'], 'in', ['the', 'United', 'States.', 'It', 'is', 'new']]\n",
+ "[['Andrews.', 'AUTO-SALES', '(Detroit)', '--', 'Vehicle', 'sales'], 'in', ['the', 'United', 'States', 'tumbled', 'to', 'multi-decade']]\n",
+ "[['United', 'States', 'tumbled', 'to', 'multi-decade', 'lows'], 'in', ['October', 'as', 'tightened', 'credit', 'markets', 'and']]\n",
+ "[['Motors', 'reported', 'a', '45', 'percent', 'decline'], 'in', ['sales,', 'and', 'the', 'Ford', 'Motor', 'said']]\n",
+ "[['Nelson', 'D.', 'Schwartz.', 'SCIENCE', '(Will', 'move'], 'in', ['\"a\"', 'news', 'file.)', 'SCI-DENGUE-FEVER', '(Bangkok,', 'Thailand)']]\n",
+ "[[\"Army's\", 'largest', 'overseas', 'medical', 'research', 'laboratory,'], 'in', ['Bangkok,', 'military', 'scientists', 'are', 'offering', 'hope']]\n",
+ "[['most', 'of', 'the', 'killer', 'whales', 'away,'], 'in', ['part', 'by', 'infecting', 'the', 'wild', 'salmon']]\n",
+ "[['By', 'John', 'Tierney.', 'SPORTS', '(Will', 'move'], 'in', ['\"s\"', 'news', 'file.)', 'SOC-MARADONA', '(Undated)', '--']]\n",
+ "[['\"El', 'Diego\"', 'himself', 'starred', 'for', 'them'], 'in', ['1986', 'and', '1990.', 'After', 'retiring', '11']]\n",
+ "[['11', 'years', 'ago,', 'Maradona', 'has', 'remained'], 'in', ['the', 'spotlight', 'primarily', 'as', 'the', \"country's\"]]\n",
+ "[['There', 'are', 'about', '130', 'of', 'us'], 'in', ['our', 'area,', 'ranging', 'in', 'age', 'from']]\n",
+ "[['of', 'us', 'in', 'our', 'area,', 'ranging'], 'in', ['age', 'from', '16', 'to', '70-something,', 'representing']]\n",
+ "[['all', 'walks', 'of', 'life', 'and', 'gather'], 'in', ['groups', 'of', 'about', '25', 'to', 'lunge']]\n",
+ "[['lunge', 'and', 'chasse,', 'kickbox', 'and', 'shimmy'], 'in', ['an', 'effort', 'to', 'turn', 'back', 'the']]\n",
+ "[['I', 'began', 'to', 'notice', 'a', 'difference'], 'in', ['my', 'fitness', 'level.', 'But', 'the', 'endorphin']]\n",
+ "[['sense', 'of', 'camaraderie', 'was', 'very', 'much'], 'in', ['evidence', 'again', 'this', 'past', 'summer', 'as']]\n",
+ "[['schools,', 'their', 'houses', 'of', 'worship', 'and'], 'in', ['the', 'community.', 'Indeed,', 'they', 'give', 'freely']]\n",
+ "[['Eleanor', \"Casale's\", 'nephew,', 'who', 'is', 'stationed'], 'in', ['Iraq,', 'so', 'he', 'and', 'other', 'soldiers']]\n",
+ "[['Susan', 'G.', 'Komen', 'foundation.', 'Plans', 'are'], 'in', ['the', 'works', 'to', 'create', 'a', 'more']]\n",
+ "[['fitness', 'center', 'gathered', 'friends', 'to', 'participate'], 'in', ['the', 'Bennett', 'Cancer', 'Walk', 'fundraiser', 'in']]\n",
+ "[['in', 'the', 'Bennett', 'Cancer', 'Walk', 'fundraiser'], 'in', ['Stamford.', 'These', 'are', 'just', 'a', 'few']]\n",
+ "[['of', 'genes,', 'such', 'as', 'those', 'found'], 'in', ['termites', 'or', 'an', 'elephant', 'stomach,', 'to']]\n",
+ "[['get', 'something', 'that', 'used', 'to', 'be'], 'in', ['an', 'elephant', 'stomach?\"\\'', 'joked', 'Bruce', 'Jamerson,']]\n",
+ "[[\"Jamerson's\", 'company,', 'which', 'has', 'corporate', 'offices'], 'in', ['Boston,', 'recently', 'partnered', 'with', 'General', 'Motors']]\n",
+ "[[\"scientists'\", 'work', 'at', 'the', 'research', 'facility'], 'in', ['Lebanon,', 'which', 'has', '66', 'employees.', '\"I\\'d']]\n",
+ "[['of', 'Concerned', 'Scientists,', 'a', 'nonprofit', 'group'], 'in', ['Cambridge.', 'And', 'it', 'appears', 'Mascoma', 'is']]\n",
+ "[['more', 'available.', 'For', 'now,', 'Mascoma', 'researchers'], 'in', ['Lebanon', 'are', 'still', 'trying', 'to', 'hit']]\n",
+ "[['addition', 'of', 'costly', 'enzymes', 'that', 'range'], 'in', ['price', 'from', '50', 'cents', 'to', '$1']]\n",
+ "[['samples', 'of', 'microbes', 'lined', 'the', 'shelves'], 'in', ['the', '\"organism', 'discovery\"', 'room', 'of', 'the']]\n",
+ "[['microbes,', 'some', 'of', 'which', 'were', 'found'], 'in', ['hot', 'springs', 'at', 'Yellowstone', 'National', 'Park,']]\n",
+ "[['at', 'Yellowstone', 'National', 'Park,', 'are', 'tested'], 'in', ['an', 'oxygen-free', 'chamber', 'to', 'see', 'what']]\n",
+ "[['they', 'do.', '\"Just', 'because', 'they', 'grow'], 'in', ['a', 'hot', 'spring', \"doesn't\", 'mean', \"they're\"]]\n",
+ "[[\"doesn't\", 'mean', \"they're\", 'going', 'to', 'grow'], 'in', ['a', 'plant,\"', 'said', 'Larry', 'Feinberg,', 'a']]\n",
+ "[['of', 'cake', 'frosting', '-', 'are', 'grown'], 'in', ['petri', 'dishes.', 'Later,', 'they', 'are', 'transferred']]\n",
+ "[['moss.', 'Eventually,', 'everything', 'gets', 'tossed', 'together'], 'in', ['a', 'fermentation', 'tank', 'that', 'looks', 'like']]\n",
+ "[['of', 'the', 'dark', 'beer-like', 'substance', 'brewing'], 'in', ['the', 'tanks.', '\"At', 'the', 'end', 'of']]\n",
+ "[['you', 'know,', 'how', 'much', 'ethanol', 'is'], 'in', ['there.', 'More', 'is', 'better.\"', 'Environmentalists,', 'Massachusetts']]\n",
+ "[['\"The', 'second', 'is', 'to', 'do', 'that'], 'in', ['an', 'environmentally', 'benign', 'way.\"', 'Environmentalists', 'say']]\n",
+ "[['greenhouse', 'gas', 'reductions', 'from', 'every', 'step'], 'in', ['the', 'process', 'rather', 'than', 'just', 'at']]\n",
+ "[['of', '71,', 'after', 'a', 'half-century', 'career'], 'in', ['the', 'pharmaceutical', 'industry', 'that', 'left', 'her']]\n",
+ "[['passion', 'for', 'cooking.', 'The', 'oldest', 'student'], 'in', ['the', 'history', 'of', 'the', 'culinary-arts', 'program']]\n",
+ "[['at', 'least', 'three', 'nights', 'per', 'week'], 'in', ['the', 'kitchen', 'at', \"Yono's\", 'restaurant', 'in']]\n",
+ "[['in', 'the', 'kitchen', 'at', \"Yono's\", 'restaurant'], 'in', ['Albany,', 'making', 'and', 'plating', 'desserts.', '\"I']]\n",
+ "[['retirement', 'would', 'be', 'like.\"', 'Though', \"she's\"], 'in', ['a', 'dramatic', 'minority', '--', 'just', '4']]\n",
+ "[['straight', \"A's\", 'since', 'starting', 'at', 'SCCC'], 'in', ['January,', 'even', 'in', 'her', 'first', 'semester,']]\n",
+ "[['starting', 'at', 'SCCC', 'in', 'January,', 'even'], 'in', ['her', 'first', 'semester,', 'when', 'she', 'took']]\n",
+ "[['for', 'decades.', 'As', 'a', 'manager', 'involved'], 'in', ['clinical', 'drug', 'trials', 'from', '1959', 'until']]\n",
+ "[['trials', 'from', '1959', 'until', 'her', 'retirement'], 'in', ['January,', 'just', 'before', 'school', 'started,', 'research']]\n",
+ "[['always', 'tell', 'which', 'were', 'her', 'essays'], 'in', ['(wine-tasting)', 'class,\"', 'says', 'Strianese.', '\"She', 'was']]\n",
+ "[['about', 'the', 'wine.\"', 'Dembinski', 'was', 'born'], 'in', ['Albany,', 'the', 'daughter', 'of', 'a', 'family']]\n",
+ "[['Mount', 'Vesuvius', 'again', 'during', 'spring', 'break'], 'in', ['April.)', 'After', 'graduating', 'from', 'Mount', 'Holyoke']]\n",
+ "[[\"'There's\", 'no', 'place', 'for', 'a', 'woman'], 'in', ['surgery.', \"We'll\", 'give', 'you', 'all', 'this']]\n",
+ "[['med', 'school,', 'Dembinski', 'took', 'a', 'job'], 'in', ['drug', 'research', 'at', 'Sterling-Winthrop', 'Research', 'Institute']]\n",
+ "[['drug', 'research', 'at', 'Sterling-Winthrop', 'Research', 'Institute'], 'in', ['East', 'Greenbush,', 'N.Y.', 'She', 'stayed', 'for']]\n",
+ "[['Omnicare', 'Clinical', \"Research's\", 'local', 'office,', 'also'], 'in', ['East', 'Greenbush,', 'finishing', 'as', 'a', 'manager']]\n",
+ "[['Miss', 'Donna,', 'even', 'though', 'she', 'was'], 'in', ['high', 'school', 'when', 'I', 'was', 'born']]\n",
+ "[['expert', 'home', 'cook,', 'she', 'recognized', 'gaps'], 'in', ['her', 'knowledge.', '\"Anybody', 'can', 'cook,', 'but']]\n",
+ "[['a', 'broiler.', 'But', 'she', 'loves', 'being'], 'in', ['a', 'professional', 'kitchen,', 'and', 'has', 'quickly']]\n",
+ "[['of', 'months', 'ago,', 'when', 'she', 'stopped'], 'in', ['at', 'the', 'restaurant', 'to', 'meet', 'the']]\n",
+ "[['running', 'low.', 'Says', 'Purnomo,', '\"I', 'came'], 'in', ['the', 'next', 'day,', 'and', 'the', 'bread']]\n",
+ "[['made', 'it', 'myself.\"', 'After', 'Dembinski', 'graduates'], 'in', ['the', 'spring,', 'with', 'an', 'assistant', \"chef's\"]]\n",
+ "[[\"she's\", 'hoping', 'for', 'a', 'permanent', 'position'], 'in', ['a', 'kitchen.', '\"Working', 'in', 'a', 'restaurant']]\n",
+ "[['permanent', 'position', 'in', 'a', 'kitchen.', '\"Working'], 'in', ['a', 'restaurant', 'would', 'be', 'fun,\"', 'she']]\n",
+ "[['right', 'now.', \"I'm\", 'at', 'a', 'place'], 'in', ['my', 'life', 'now', 'where', 'I', 'know']]\n",
+ "[['poem,', 'Ellie', 'and', 'John', 'McKey', 'fell'], 'in', ['love', 'dancing', 'on', 'ice,', 'and', 'judges']]\n",
+ "[['to', 'do', 'it', 'to', 'beautiful', 'music'], 'in', ['a', 'room', 'filled', 'with', 'other', 'dancers']]\n",
+ "[['were', 'beautifully', 'dressed', '-', 'the', 'men'], 'in', ['their', 'tails,', 'the', 'ladies', 'in', 'their']]\n",
+ "[['men', 'in', 'their', 'tails,', 'the', 'ladies'], 'in', ['their', 'ball', 'gowns', '-', 'it', 'was']]\n",
+ "[['met', 'John', 'on', 'a', 'skating', 'rink'], 'in', ['the', 'early', '1970s,', 'died', 'Oct.', '10']]\n",
+ "[['the', 'early', '1970s,', 'died', 'Oct.', '10'], 'in', ['her', 'Brookline', 'home', 'of', 'complications', 'from']]\n",
+ "[['shared', 'a', 'home', 'with', 'her', 'husband'], 'in', ['Vero', 'Beach,', 'Fla.', '\"She', 'had', 'a']]\n",
+ "[['for', 'what', 'was', 'good', 'and', 'beautiful'], 'in', ['life.\"', 'The', 'two', 'met', 'after', 'Mrs.']]\n",
+ "[['did', 'a', 'beautiful', 'little', 'three', 'jump'], 'in', ['front', 'of', 'me,\"', 'her', 'husband', 'said.']]\n",
+ "[['we', 'found', 'we', 'had', 'so', 'much'], 'in', ['common,\"', 'he', 'said.', '\"We', 'courted', 'for']]\n",
+ "[['great', 'gift.\"', 'Eleanor', 'Crocker', 'grew', 'up'], 'in', ['Manchester-by-the-Sea', 'and', 'was', 'married', 'to', 'Edward']]\n",
+ "[['the', 'New', 'England', 'Aquarium.', 'They', 'lived'], 'in', ['Manchester,', 'where', 'they', 'raised', 'their', 'sons']]\n",
+ "[['Jr.', 'was', 'driving', 'home', 'from', 'Worcester'], 'in', ['1967', 'when', 'he', 'died', 'in', 'a']]\n",
+ "[['Worcester', 'in', '1967', 'when', 'he', 'died'], 'in', ['a', 'car', 'accident', 'on', 'the', 'Massachusetts']]\n",
+ "[['They', 'were', 'New', 'England', 'senior', 'champions'], 'in', ['ice', 'dancing', 'three', 'times,', 'and', 'their']]\n",
+ "[['who', 'had', 'moved', 'from', 'her', 'home'], 'in', ['England', 'to', 'Boston.', '\"She', 'thought', 'it']]\n",
+ "[['had', 'and', 'the', 'joy', 'she', 'had'], 'in', ['what', 'she', 'was', 'doing,', 'especially', 'when']]\n",
+ "[['that', '\"another', 'expression', 'that', 'comes', 'up'], 'in', ['the', 'letters', 'is', 'that', 'she', 'was']]\n",
+ "[['History', 'at', 'the', 'University', 'of', 'Texas'], 'in', ['Austin,', 'as', 'well', 'as', 'the', 'author']]\n",
+ "[['--', 'but', 'why', 'was', 'he', 'involved'], 'in', ['the', 'sordid', 'world', 'of', 'politics', 'in']]\n",
+ "[['in', 'the', 'sordid', 'world', 'of', 'politics'], 'in', ['the', 'first', 'place?', 'When', 'FDR', 'was']]\n",
+ "[['pursuing', 'his', 'first', 'term', 'as', 'president'], 'in', ['1932,', 'Walter', 'Lippman,', 'the', 'great', 'political']]\n",
+ "[['he', 'remains', 'a', 'historical', 'figure', 'carved'], 'in', ['our', 'collective', 'memory;', \"he's\", 'the', 'man']]\n",
+ "[['birthright.', 'Most', 'of', 'them', 'were', 'believers'], 'in', ['trickle-down', 'economics', '--', 'the', 'well-being', 'of']]\n",
+ "[['along', 'at', 'such', 'a', 'crucial', 'moment'], 'in', ['our', 'history?', 'And', \"I'm\", 'thinking', 'first,']]\n",
+ "[['reoriented', 'American', 'thinking', 'both', 'domestically', 'and'], 'in', ['foreign', 'affairs.', 'At', 'home', 'he', 'made']]\n",
+ "[['fault', 'of', 'their', 'own,', 'found', 'themselves'], 'in', ['tough', 'straits.', 'Americans', 'still', 'believe', 'this,']]\n",
+ "[['when', 'they', 'act,', 'speak', 'and', 'write'], 'in', ['private.', 'This', 'is', 'why', 'historians', 'spend']]\n",
+ "[['and', 'diaries.', 'Roosevelt', 'was', 'most', 'himself'], 'in', ['public.', \"Roosevelt's\", 'press', 'conferences', 'and', 'fireside']]\n",
+ "[['Office', 'was', 'the', 'most', 'riveting', 'personality'], 'in', ['the', 'country.', 'Q.', 'If', 'FDR', 'was']]\n",
+ "[['whole', 'may', 'perhaps', 'be', 'the', 'worst'], 'in', ['25', 'years.', 'GM', 'remained', 'ahead', 'of']]\n",
+ "[['of', 'Toyota,', 'but', 'the', 'dramatic', 'drop'], 'in', ['demand', 'for', 'GM', 'products', 'also', 'suggested']]\n",
+ "[['sold', '168,719', 'vehicles,', 'down', 'from', '307,408'], 'in', ['the', 'same', 'month', 'last', 'year,', 'while']]\n",
+ "[['vehicles', 'last', 'month', 'down', 'from', '189,515'], 'in', ['the', 'same', 'month', 'last', 'year.', 'Mike']]\n",
+ "[['to', 'a', '\"frightening\"', 'level.', '\"Clearly', \"we're\"], 'in', ['a', 'very', 'dire', 'situation,\"', 'he', 'said.']]\n",
+ "[['sold', '152,101', 'vehicles,', 'down', 'from', '197,592'], 'in', ['October', '2007.', 'By', 'Christine', 'Tierney.', 'Developing.']]\n",
+ "[['Caravan', 'to', 'try', 'to', 'retain', 'leadership'], 'in', ['a', 'segment', 'it', 'dominated', 'for', 'most']]\n",
+ "[['risk', 'involved', 'when', 'the', 'minivan', 'debuted'], 'in', ['the', 'fall', 'of', '1983.', 'By', 'Alisa']]\n",
+ "[['office', 'Monday', 'afternoon.', 'Iverson,', '33,', 'is'], 'in', ['his', '14th', 'season', 'and', 'the', 'final']]\n",
+ "[['team.', 'He', 'felt', 'the', 'Nuggets', 'were'], 'in', ['a', 'cost-cutting', 'mode', 'after', 'they', 'dumped']]\n",
+ "[['after', 'they', 'dumped', 'center', 'Marcus', 'Camby'], 'in', ['the', 'summer.', 'In', 'Billups,', '32,', 'the']]\n",
+ "[['new', 'president', 'of', 'the', 'United', 'States'], 'in', ['hopes', 'of', 'steadying', 'the', 'shaky', 'ship']]\n",
+ "[['and', 'husband,', 'Don.', 'I', 'had', 'been'], 'in', ['L.A.', 'once', 'before', 'with', 'my', 'parents']]\n",
+ "[['for', 'a', 'scrumptious', 'hotdog', 'at', \"Pink's\"], 'in', ['Hollywood', 'along', 'with', 'the', 'likes', 'of']]\n",
+ "[['shelf', 'at', 'one', 'of', 'Beverly', \"Hills'\"], 'in', ['dining', 'spots', 'for', 'those', 'who', 'like']]\n",
+ "[['Peninsula,', 'a', 'luxurious', 'hotel', 'tucked', 'away'], 'in', ['Beverly', 'Hills.', 'Before', 'we', 'even', 'checked']]\n",
+ "[['we', 'even', 'checked', 'in,', 'we', 'were'], 'in', ['the', 'lap', 'of', 'luxury.', 'My', 'L.A.']]\n",
+ "[['on', 'family', 'things.', 'We', 'started', 'out'], 'in', ['the', 'elegant', 'salon', 'furnished', 'with', 'comfortable']]\n",
+ "[['were', 'seated', 'at', 'a', 'choice', 'table'], 'in', ['the', 'center', 'of', 'the', 'patio.', 'We']]\n",
+ "[['center', 'of', 'the', 'patio.', 'We', 'entered'], 'in', ['our', 'elegantly', 'casual', 'dress,', 'subtly', 'checking']]\n",
+ "[['menu', 'at', 'Nate', \"'n\", \"Al's\", 'Delicatessen'], 'in', ['Beverly', 'Hills.', 'This', 'celebrity', 'magnet', 'since']]\n",
+ "[['Route', '1)', 'with', 'the', 'roof', 'open'], 'in', ['my', \"cousin's\", 'Porsche', 'SUV', 'was', 'the']]\n",
+ "[[\"Farmer's\", 'Market,', 'an', 'open-air', 'market', 'established'], 'in', ['1934,', 'with', '70', 'permanent', 'storefronts', 'offering']]\n",
+ "[['a', 'stand', 'selling', 'the', '\"hottest\"', 'sauces'], 'in', ['L.A.', 'and', 'stumbled', 'upon', 'purveyors', 'of']]\n",
+ "[['the', 'outdoor', 'cafes;', 'seeing', 'film', 'crews'], 'in', ['action', 'was', 'a', 'frequent', 'occurrence', 'throughout']]\n",
+ "[['just', 'another', 'reminder', 'that', 'we', 'were'], 'in', ['a', 'world', 'apart', 'from', 'our', 'everyday']]\n",
+ "[['reduced', 'the', 'number', 'of', 'homeowner', 'policies'], 'in', ['Citizens', 'Property', 'Insurance', 'by', 'almost', '800,000,']]\n",
+ "[['to', 'decrease', 'the', 'number', 'of', 'policies'], 'in', ['Citizens', 'the', 'state-run', 'property', 'insurer', 'dramatically']]\n",
+ "[['They', 'are', 'mostly', 'small', 'companies,', 'created'], 'in', ['the', 'last', 'three', 'or', 'four', 'years,']]\n",
+ "[['160,000', 'homeowner', 'policies', 'will', 'leave', 'Citizens'], 'in', ['November', 'and', 'December.', 'Many', 'are', 'in']]\n",
+ "[['in', 'November', 'and', 'December.', 'Many', 'are'], 'in', ['the', 'Tampa', 'Bay', 'area.', 'Of', 'the']]\n",
+ "[['McCarty', 'to', 'ensure', 'authorized', 'companies', 'operate'], 'in', ['a', 'sound', 'manner,', 'to', 'monitor', 'and']]\n",
+ "[['from', 'the', 'numbers', 'that', 'enough', 'companies'], 'in', ['the', 'private', 'sector', 'have', 'demonstrated', 'to']]\n",
+ "[['surplus', 'and', 'reserves', 'to', 'pay', 'out'], 'in', ['the', 'event', 'of', 'a', 'storm.', 'Could']]\n",
+ "[['is', 'the', 'most', 'heavily', 'regulated', 'industry'], 'in', ['the', 'country.\"', 'TheStreet.com', 'rated', 'American', 'Integrity']]\n",
+ "[['impact', 'policyholders.\"', 'American', 'Integrity', 'was', 'rejected'], 'in', ['its', 'bid', 'to', 'garner', 'part', 'of']]\n",
+ "[['part', 'of', 'a', '$100-million', 'incentive', 'program'], 'in', ['Louisiana', 'because', 'it', 'did', 'not', 'meet']]\n",
+ "[['of', 'Insurance', 'Regulation,', 'noted', 'a', 'problem'], 'in', ['this', 'for', 'Citizens:', 'The', 'takeouts', 'are']]\n",
+ "[['\"They\\'re', 'not', 'taking', 'the', 'old', 'homes'], 'in', ['Largo.\"', 'Ivan', 'Penn', 'can', 'be', 'reached']]\n",
+ "[['the', 'breathtaking', 'escapes', 'of', 'the', 'man'], 'in', ['the', 'half-mask.', 'How', 'does', 'it', 'all']]\n",
+ "[['was', 'setting', 'up', 'for', 'a', 'run'], 'in', ['Tampa,', 'Fla.', 'Here', 'are', 'a', 'few']]\n",
+ "[['55', 'and', '60', 'locals', 'are', 'hired'], 'in', ['each', 'city', 'as', 'dressers', 'and', 'technicians,']]\n",
+ "[['local', 'actors', 'are', 'hired', 'to', 'appear'], 'in', ['the', 'touring', 'production.', 'PREP', 'TIME:', 'It']]\n",
+ "[['to', 'set', 'up', 'the', 'Phantom', 'production'], 'in', ['each', 'city,', 'during', 'which', 'the', 'venue']]\n",
+ "[['washed', 'as', 'needed', 'and', 'then', 'placed'], 'in', ['a', '\"wig', 'oven,\"', 'in', 'which', 'a']]\n",
+ "[['then', 'placed', 'in', 'a', '\"wig', 'oven,\"'], 'in', ['which', 'a', 'soft,', 'low', 'heat', 'gently']]\n",
+ "[['occasion', 'fallen', 'onto', 'the', 'poor', 'musicians'], 'in', ['the', 'orchestra', 'pit', 'or', 'gotten', 'snagged']]\n",
+ "[['the', 'orchestra', 'pit', 'or', 'gotten', 'snagged'], 'in', ['the', 'rigging', 'for', 'the', 'chandelier.', 'In']]\n",
+ "[['which', 'remains', 'locked', 'away', 'when', 'not'], 'in', ['use.', 'And', 'the', 'method', 'behind', 'the']]\n",
+ "[['escapes', 'during', 'the', 'Masquerade', 'number', 'and'], 'in', ['the', 'finale', 'are', 'closely', 'guarded', 'secrets.']]\n",
+ "[['very', 'little', 'seemed', 'to', 'clear', 'up'], 'in', ['the', 'race', 'for', 'the', \"ACC's\", 'division']]\n",
+ "[['division', 'titles.', 'With', 'four', 'weeks', 'left'], 'in', ['the', 'regular', 'season,', '11', 'of', 'the']]\n",
+ "[['can', 'finish', 'with', 'only', 'two', 'losses'], 'in', ['the', 'ACC,', 'I', 'feel', 'good', 'about']]\n",
+ "[['might', 'be', 'the', 'most', 'unpredictable', 'team'], 'in', ['the', 'league.', 'The', 'Terps', 'beat', 'Cal']]\n",
+ "[['aside,', 'the', 'Seminoles', 'are', 'ranked', 'first'], 'in', ['total', 'offense', 'and', 'defense', 'in', 'the']]\n",
+ "[['first', 'in', 'total', 'offense', 'and', 'defense'], 'in', ['the', 'league', 'and', 'have', 'won', 'four']]\n",
+ "[['who', 'has', 'made', '15', 'field', 'goals'], 'in', ['a', 'row)', 'is', 'an', 'asset.', '--']]\n",
+ "[['Wake', 'Forest', 'to', 'the', 'ACC', 'title'], 'in', ['2006.', 'Kicker', 'Shane', 'Popham,', 'subbing', 'for']]\n",
+ "[['the', 'previous', 'three', 'games', 'may', 'be'], 'in', ['the', 'past.', '--', 'Why', 'they', \"won't:\"]]\n",
+ "[[\"won't:\", 'Prior', 'to', 'beating', 'Duke', '33-30'], 'in', ['overtime', 'Saturday,', 'the', 'Demon', 'Deacons', 'had']]\n",
+ "[['that', 'all', 'of', \"Wake's\", 'scoring', 'drives'], 'in', ['regulation', 'began', 'inside', 'Duke', 'territory,', 'this']]\n",
+ "[['average', 'of', '11.6', 'points', 'per', 'game'], 'in', ['their', 'first', 'seven', 'games,', 'have', 'now']]\n",
+ "[['games,', 'have', 'now', 'given', 'up', '26.0'], 'in', ['the', 'last', 'two.', 'Tech', 'needs', 'its']]\n",
+ "[['the', 'team,', 'even', 'players', 'who', 'were'], 'in', ['the', 'lineup,', 'is', 'banged', 'up.', 'That']]\n",
+ "[[\"they'll\", 'make', 'it:', 'With', 'four', 'wins'], 'in', ['a', 'row,', 'including', 'an', 'overtime', 'victory']]\n",
+ "[['including', 'an', 'overtime', 'victory', 'over', 'Virginia'], 'in', ['Charlottesville,', 'the', 'Hurricanes', 'are', 'the', 'hottest']]\n",
+ "[['the', 'Hurricanes', 'are', 'the', 'hottest', 'team'], 'in', ['the', 'ACC.', 'They', 'have', 'this', 'week']]\n",
+ "[['before', 'playing', 'Virginia', 'Tech', 'at', 'home'], 'in', ['two', 'Thursdays.', 'By', 'starting', '2-3,', 'Miami']]\n",
+ "[['won', 'more', 'than', 'three', 'league', 'games'], 'in', ['a', 'row.', 'The', 'Hurricanes', 'may', 'be']]\n",
+ "[['Tech,', 'which', 'is', 'a', 'nice', 'ace'], 'in', ['the', 'hole.', 'Despite', 'a', 'costly', 'fumble']]\n",
+ "[['last', 'four', 'years,', 'Virginia', 'is', '7-13'], 'in', ['road', 'games.', 'Virginia', 'has', 'given', 'up']]\n",
+ "[['an', 'average', 'of', '173.0', 'rushing', 'yards'], 'in', ['its', 'past', 'three', 'games.', 'That', \"doesn't\"]]\n",
+ "[['Heels', 'might', 'be', 'the', 'best', 'team'], 'in', ['the', 'conference.', 'So', \"they've\", 'got', 'that']]\n",
+ "[['on', 'field', 'goals.', 'It', 'cost', 'them'], 'in', ['a', 'three-point', 'loss', 'to', 'Virginia', 'Tech,']]\n",
+ "[['against', 'Maryland.', 'Both', 'sprained', 'their', 'ankles'], 'in', ['the', 'Oct.', '25', 'loss', 'to', 'Florida']]\n",
+ "[['quarterback.', 'The', 'offense', 'is', 'ranked', '112th'], 'in', ['Division', 'I-A.', 'Ken', 'Sugiura', 'writes', 'for']]\n",
+ "[['own.', 'When', 'a', 'friend', 'told', 'him'], 'in', ['August', '1994', 'that', 'hypnosis', 'had', 'enabled']]\n",
+ "[['Boynton', 'Beach,', 'Fla.,', 'thought', 'her', 'attempt'], 'in', ['1985', 'to', 'use', 'hypnosis', 'to', 'overcome']]\n",
+ "[['said', 'it', \"didn't\", 'work,\"', 'she', 'recalled'], 'in', ['an', 'interview.', '\"I', 'told', 'her,', \"'I\"]]\n",
+ "[['the', 'airport,', 'she', 'was', 'not', 'drenched'], 'in', ['sweat', 'and', 'paralyzed', 'with', 'fear.', '\"I']]\n",
+ "[['what', 'hypnosis', 'is', 'all', 'about.', 'While'], 'in', ['a', 'hypnotic', 'trance,', 'you', 'are', 'neither']]\n",
+ "[['neither', 'unconscious', 'nor', 'asleep,', 'but', 'rather'], 'in', ['a', 'deeply', 'relaxed', 'state', 'that', 'renders']]\n",
+ "[['your', 'goals.', 'Hypnosis', 'has', 'been', 'mired'], 'in', ['controversy', 'for', 'two', 'centuries,', 'and', 'its']]\n",
+ "[['Alman,', 'a', 'psychologist', 'who', 'practices', 'hypnosis'], 'in', ['San', 'Diego,', '\"The', 'power', 'of', 'hypnosis']]\n",
+ "[['\"The', 'power', 'of', 'hypnosis', 'actually', 'resides'], 'in', ['the', 'patient', 'and', 'not', 'in', 'the']]\n",
+ "[['resides', 'in', 'the', 'patient', 'and', 'not'], 'in', ['the', 'doctor.\"', 'Roberta', 'Temes,', 'a', 'clinical']]\n",
+ "[['doctor.\"', 'Roberta', 'Temes,', 'a', 'clinical', 'hypnotist'], 'in', ['Scotch', 'Plains,', 'N.J.,', 'insists', 'that', 'hypnosis']]\n",
+ "[['to', 'do.', 'Hypnosis', 'can', 'succeed', 'only'], 'in', ['helping', 'people', 'make', 'changes', 'they', 'desire,']]\n",
+ "[['make', 'changes', 'they', 'desire,', 'she', 'said'], 'in', ['an', 'interview.', 'In', 'her', 'book', '\"The']]\n",
+ "[['Hypnosis,\"', 'Temes', 'points', 'out', 'that', 'success'], 'in', ['achieving', 'your', 'goal', 'is', 'the', 'best']]\n",
+ "[['many', 'other', 'troublesome', 'health', 'problems.', 'Writing'], 'in', ['The', 'Permanente', 'Journal', 'in', '2001,', 'Alman']]\n",
+ "[['problems.', 'Writing', 'in', 'The', 'Permanente', 'Journal'], 'in', ['2001,', 'Alman', 'said', 'that', '\"useful', 'potential\"']]\n",
+ "[['www.hypnosisnetwork.com.', 'Ellen', 'Fineman,', 'a', 'physical', 'therapist'], 'in', ['Portland,', 'Ore.,', 'had', 'had', 'five', 'surgeries']]\n",
+ "[['very', 'calming', 'and', 'reassuring,\"', 'Fineman', 'said'], 'in', ['an', 'interview.', '\"It', 'told', 'me', 'that']]\n",
+ "[['told', 'me', 'that', 'I', 'would', 'be'], 'in', ['the', 'hands', 'of', 'professionals', 'who', 'would']]\n",
+ "[['best', 'way', 'to', 'find', 'someone', 'practiced'], 'in', ['hypnosis', 'for', 'the', 'kind', 'of', 'problem']]\n",
+ "[['\"But', 'I', 'was', 'desperate,\"', 'Clarvit', 'said'], 'in', ['an', 'interview.', '\"I', 'was', 'pregnant', 'with']]\n",
+ "[['of', 'Hypnosis,', 'said', 'that', '\"self-hypnosis', 'training'], 'in', ['children', 'is', 'an', 'effective', 'and', 'practical']]\n",
+ "[['there', 'exists', '\"a', 'wealth', 'of', 'material'], 'in', ['the', \"patient's\", 'unconscious', 'that', 'can', 'be']]\n",
+ "[[\"patient's\", 'unconscious', 'that', 'can', 'be', 'used'], 'in', ['healing\"', 'but', 'lamented', 'the', 'fact', 'that']]\n",
+ "[['can', 'often', 'produce', 'rapid', 'change', 'even'], 'in', ['difficult', 'cases,', 'it', 'is', '\"underutilized', 'as']]\n",
+ "[['proteins', 'to', 'coagulate,', 'or', 'clump', 'up,'], 'in', ['new', 'ways,\"', 'she', 'said.', '\"As', 'the']]\n",
+ "[['the', 'soup', 'continues', 'to', 'heat,', 'oils'], 'in', ['the', 'water', 'also', 'go', 'to', 'the']]\n",
+ "[['\"We', 'get', 'plenty', 'of', 'those', 'nutrients'], 'in', ['our', 'diets,\"', 'she', 'said,', '\"so', 'skimming']]\n",
+ "[['more', 'important', 'nutrient', 'loss', 'can', 'occur'], 'in', ['the', 'vegetables', 'before', 'and', 'during', 'preparation,']]\n",
+ "[['Stark', 'said.', 'Vitamins', 'and', 'minerals', 'vary'], 'in', ['their', 'sensitivity', 'to', 'environmental', 'factors.', 'Vitamin']]\n",
+ "[['oxygen,', 'light', 'and', 'heat,', 'but', 'stable'], 'in', ['acid', 'conditions.', 'Folic', 'acid,', 'another', 'water-soluble']]\n",
+ "[['acid,', 'another', 'water-soluble', 'vitamin,', 'is', 'unstable'], 'in', ['acid', 'and', 'light,', 'but', 'stable', 'when']]\n",
+ "[['Minerals', 'and', 'fiber', 'are', 'generally', 'stable'], 'in', ['all', 'these', 'conditions.', '\"So', 'for', 'example,']]\n",
+ "[['this', 'assertion.', 'The', 'notion', 'was', 'cemented'], 'in', ['1999,', 'when', 'the', 'Food', 'and', 'Drug']]\n",
+ "[['grams', 'of', 'soy', 'protein', 'a', 'day,'], 'in', ['a', 'diet', 'low', 'in', 'saturated', 'fat']]\n",
+ "[['a', 'day,', 'in', 'a', 'diet', 'low'], 'in', ['saturated', 'fat', 'and', 'cholesterol,', '\"may', 'reduce']]\n",
+ "[['--', 'including', 'an', 'industry-financed', 'analysis', 'published'], 'in', ['The', 'New', 'England', 'Journal', 'of', 'Medicine']]\n",
+ "[['The', 'New', 'England', 'Journal', 'of', 'Medicine'], 'in', ['1995', '--', 'concluding', 'that', 'soy', 'protein']]\n",
+ "[['cholesterol,', 'or', 'LDL.', 'Another', 'study,', 'published'], 'in', ['August', 'in', 'The', 'American', 'Journal', 'of']]\n",
+ "[['LDL.', 'Another', 'study,', 'published', 'in', 'August'], 'in', ['The', 'American', 'Journal', 'of', 'Clinical', 'Nutrition,']]\n",
+ "[['no', '\"significant', 'effect', 'on', 'plasma', 'LDL\"'], 'in', ['people', 'with', 'mildly', 'elevated', 'cholesterol.', 'But']]\n",
+ "[['help', 'when', 'combined', 'with', 'foods', 'low'], 'in', ['fat', 'and', 'high', 'in', 'fiber', 'and']]\n",
+ "[['foods', 'low', 'in', 'fat', 'and', 'high'], 'in', ['fiber', 'and', 'the', 'compounds', 'called', 'plant']]\n",
+ "[['the', 'compounds', 'called', 'plant', 'sterols', '--'], 'in', ['other', 'words,', 'an', 'overall', 'healthy', 'diet.']]\n",
+ "[['conditions', 'will', 'sweep', 'into', 'the', 'West'], 'in', ['the', 'wake', 'of', 'a', 'strong', 'Pacific']]\n",
+ "[['affect', 'voter', 'turnout.', 'A', 'study', 'published'], 'in', ['2005', 'by', 'researchers', 'from', 'the', 'University']]\n",
+ "[['Geological', \"Survey's\", 'National', 'Wildlife', 'Health', 'Center'], 'in', ['Wisconsin', 'and', 'colleagues', 'identified', 'a', 'fungus']]\n",
+ "[['a', 'condition', 'that', 'has', 'affected', 'bats'], 'in', ['recent', 'winters', 'in', 'upstate', 'New', 'York,']]\n",
+ "[['has', 'affected', 'bats', 'in', 'recent', 'winters'], 'in', ['upstate', 'New', 'York,', 'Massachusetts', 'and', 'Vermont.']]\n",
+ "[['The', 'fungus,', 'newly', 'described,', 'is', 'unusual'], 'in', ['that', 'it', 'grows', 'in', 'the', 'cold,']]\n",
+ "[['is', 'unusual', 'in', 'that', 'it', 'grows'], 'in', ['the', 'cold,', 'dotting', 'areas', 'of', 'the']]\n",
+ "[['of', 'little', 'browns', 'and', 'other', 'bats'], 'in', ['caves', 'in', 'the', 'region,', 'Blehert', 'said.']]\n",
+ "[['browns', 'and', 'other', 'bats', 'in', 'caves'], 'in', ['the', 'region,', 'Blehert', 'said.', 'The', 'die-offs']]\n",
+ "[['worst', 'calamities', 'to', 'hit', 'bat', 'populations'], 'in', ['the', 'United', 'States.', 'It', 'had', 'been']]\n",
+ "[['that', 'the', 'identical', 'organism', 'was', 'found'], 'in', ['bats', 'from', 'several', 'caves', '\"kind', 'of']]\n",
+ "[['\"Wiping', 'out', 'all', 'the', 'fungal', 'organisms'], 'in', ['a', 'cave', 'probably', 'would', 'be', 'a']]\n",
+ "[['MOVE,', 'EATING', 'THEIR', 'FILL', 'Bacteria', 'move'], 'in', ['mysterious', 'ways.', 'Myxococcus', 'xanthus,', 'for', 'example,']]\n",
+ "[['behavior', '\"was', 'thought', 'to', 'occur', 'particularly'], 'in', ['response', 'to', 'starvation,\"', 'said', 'John', 'R.']]\n",
+ "[['Berleman', 'and', 'others', 'at', 'Iowa', 'report'], 'in', ['The', 'Proceedings', 'of', 'the', 'National', 'Academy']]\n",
+ "[['that', 'M.', 'xanthus', 'acts', 'this', 'way'], 'in', ['response', 'to', 'food,', 'and', 'uses', 'chemical']]\n",
+ "[['Directed', 'bacterial', 'movement', 'that', 'is', 'controlled'], 'in', ['this', 'way', 'is', 'known', 'as', 'chemotaxis,']]\n",
+ "[['as', 'chemotaxis,', 'and', 'has', 'been', 'observed'], 'in', ['individual', 'microbes', 'as', 'well', 'as', 'in']]\n",
+ "[['in', 'individual', 'microbes', 'as', 'well', 'as'], 'in', ['colonies', 'that', 'organize', 'into', 'biofilms', 'or']]\n",
+ "[['kind', 'of', 'coordinated', 'behavior', 'may', 'help'], 'in', ['understanding', 'certain', 'diseases', 'that', 'involve', 'motile']]\n",
+ "[['involve', 'motile', 'bacteria,', 'Kirby', 'said,', 'and'], 'in', ['developing', 'methods', 'to', 'clean', 'up', 'environmental']]\n",
+ "[['--', 'a', 'lack', 'of', 'genetic', 'diversity'], 'in', ['the', 'birds', 'that', 'are', 'raised', 'for']]\n",
+ "[['breeds', 'has', 'been', 'lost,', 'they', 'report'], 'in', ['The', 'Proceedings', 'of', 'the', 'National', 'Academy']]\n",
+ "[['able', 'to', 'say', 'what', 'is', 'missing\"'], 'in', ['commercial', 'birds,', 'Muir', 'said.', 'Their', 'findings']]\n",
+ "[['the', 'advent', 'of', 'wide-scale', 'commercial', 'production'], 'in', ['the', '1950s.', 'Only', 'a', 'handful', 'of']]\n",
+ "[['lose', 'the', 'improvements', 'they', 'have', 'made'], 'in', ['existing', 'lines.', 'Instead,', 'one', 'approach', 'would']]\n",
+ "[['to', 'use', 'genetic', 'markers', 'to', 'aid'], 'in', ['cross-breeding,', '\"to', 'select', 'for', 'the', 'parts']]\n",
+ "[['The', 'report,', 'published', 'online', 'Oct.', '23'], 'in', ['Human', 'Reproduction,', 'used', 'a', '20-question', 'depression']]\n",
+ "[['scale', 'to', 'interview', '791', 'women', 'early'], 'in', ['their', 'pregnancies.', 'Scores', 'on', 'the', 'questionnaire']]\n",
+ "[['epidemiologist', 'at', 'Kaiser', \"Permanente's\", 'research', 'division'], 'in', ['Oakland,', 'Calif.,', 'said', 'that', 'the', 'safety']]\n",
+ "[['to', 'be', 'overweight', 'or', 'obese', 'later'], 'in', ['life.', 'It', 'is', 'well', 'known', 'that']]\n",
+ "[['strong', 'effect', 'of', 'weight', 'gain', 'even'], 'in', ['mothers', 'who', 'were', 'not', 'diabetic.', 'The']]\n",
+ "[['were', 'not', 'diabetic.', 'The', 'study,', 'published'], 'in', ['the', 'November', 'issue', 'of', 'Obstetrics', 'and']]\n",
+ "[['2003', 'at', 'a', 'large', 'health', 'plan'], 'in', ['the', 'Northwest', 'and', 'Hawaii.', 'Among', 'women']]\n",
+ "[['Kaiser', 'Permanente', 'Center', 'for', 'Health', 'Research'], 'in', ['Portland,', 'Ore.,', '\"and', 'for', 'physicians', 'to']]\n",
+ "[['funeral', 'procession', 'passes', 'by.', 'He', 'stops'], 'in', ['midswing,', 'doffs', 'his', 'cap,', 'closes', 'his']]\n",
+ "[['cap,', 'closes', 'his', 'eyes', 'and', 'bows'], 'in', ['prayer.', 'His', 'playing', 'companion', 'is', 'deeply']]\n",
+ "[['I', 'think', 'there', 'should', 'be', 'something'], 'in', ['science', 'called', 'the', '\"reindeer', 'effect.\"', 'I']]\n",
+ "[['jokes', 'rated', 'by', 'nearly', '300', 'people'], 'in', ['Boston', 'in', 'a', 'recent', 'study.', '(You']]\n",
+ "[['by', 'nearly', '300', 'people', 'in', 'Boston'], 'in', ['a', 'recent', 'study.', '(You', 'can', 'rate']]\n",
+ "[['absurdist', '--', 'to', 'look', 'for', 'differences'], 'in', ['reactions', 'between', 'self-described', 'liberals', 'and', 'conservatives.']]\n",
+ "[['two', 'basic', 'kinds', 'of', 'humor', 'identified'], 'in', ['the', '1980s', 'by', 'Willibald', 'Ruch,', 'a']]\n",
+ "[['category', 'is', 'incongruity-resolution', 'humor,', 'or', 'INC-RES'], 'in', ['humor', 'jargon.', 'It', 'covers', 'traditional', 'jokes']]\n",
+ "[['It', 'covers', 'traditional', 'jokes', 'and', 'cartoons'], 'in', ['which', 'the', 'incongruity', 'of', 'the', 'punch']]\n",
+ "[['But', 'then', 'why', \"didn't\", 'the', 'liberals'], 'in', ['the', 'Boston', 'experiment', 'like', 'the', 'nonsense']]\n",
+ "[['tend', 'to', 'be', 'happier', 'than', 'liberals'], 'in', ['general,\"', 'said', 'Martin,', 'a', 'psychologist', 'at']]\n",
+ "[['conservatives,', 'or', 'at', 'least', 'the', 'ones'], 'in', ['Boston,', 'really', \"aren't\", 'the', 'stiffs', \"they're\"]]\n",
+ "[['can', 'sound', 'like', 'Victorians', 'describing', 'headhunters'], 'in', ['Borneo.', 'They', 'try', 'to', 'be', 'objective,']]\n",
+ "[['been', 'done', 'by', 'social', 'scientists', 'working'], 'in', ['a', 'culture', \"that's\", 'remarkably', 'homogenous', 'politically.']]\n",
+ "[['reviews', 'the', 'evidence', 'of', 'cognitive', 'differences'], 'in', ['his', '2005', 'book,', '\"Expert', 'Political', 'Judgment,\"']]\n",
+ "[['and', 'conservatives', 'are', 'roughly', 'equally', 'closed-minded'], 'in', ['dealing', 'with', 'dissonant', 'real-world', 'evidence.\"', 'So']]\n",
+ "[['being', 'admitted.', 'Directly', 'across', 'the', 'street,'], 'in', ['the', 'U.S.', \"Army's\", 'largest', 'overseas', 'medical']]\n",
+ "[['is', 'one', 'of', 'the', 'costliest', 'diseases'], 'in', ['tropical', 'countries.', 'Each', 'year,', 'it', 'leads']]\n",
+ "[['the', 'world.', 'Dengue', 'is', 'seldom', 'seen'], 'in', ['the', 'United', 'States', 'or', 'Europe,', 'though']]\n",
+ "[['recently', 'as', 'the', '1990s,', 'on', 'missions'], 'in', ['Haiti', 'and', 'Somalia.', 'So', 'it', 'is']]\n",
+ "[['employs', 'several', 'hundred', 'people,', 'is', 'housed'], 'in', ['an', 'unremarkable', '1960s', 'building', 'alongside', 'a']]\n",
+ "[['mashed', 'papaya', 'salad.', '\"There\\'s', 'no', 'dengue'], 'in', ['Kansas,\"', 'said', 'Col.', 'James', 'W.', 'Boles,']]\n",
+ "[['opposing', 'armies.', 'During', 'the', 'Anglo-Boer', 'War'], 'in', ['South', 'Africa', 'in', 'the', 'late', '19th']]\n",
+ "[['the', 'Anglo-Boer', 'War', 'in', 'South', 'Africa'], 'in', ['the', 'late', '19th', 'century,', 'more', 'soldiers']]\n",
+ "[['more', 'soldiers', 'died', 'of', 'typhoid', 'than'], 'in', ['battle.', 'Thousands', 'of', 'cases', 'of', 'hepatitis']]\n",
+ "[['develop', 'two', 'of', 'the', 'vaccines', 'now'], 'in', ['use', 'to', 'prevent', 'hepatitis', 'A', 'and']]\n",
+ "[['is', 'director', 'of', 'dengue', 'vaccine', 'development'], 'in', ['the', 'Bangkok', 'laboratory.', '\"Fortunately,', 'a', 'lot']]\n",
+ "[['is', 'spread', 'across', 'a', 'broader', 'constellation;'], 'in', ['the', 'hunt', 'for', 'a', 'dengue', 'vaccine,']]\n",
+ "[['of', 'the', 'Duke-N.U.S.', 'Graduate', 'Medical', 'School'], 'in', ['Singapore.', '\"There\\'s', 'a', 'good', 'possibility', 'that']]\n",
+ "[['possibility', 'that', \"we'll\", 'have', 'a', 'vaccine'], 'in', ['five', 'to', 'seven', 'years.\"', 'The', 'dengue']]\n",
+ "[['yards', 'from', 'its', 'birthplace', 'and', 'thrives'], 'in', ['populated', 'areas.', 'The', 'mosquito', 'can', 'breed']]\n",
+ "[['populated', 'areas.', 'The', 'mosquito', 'can', 'breed'], 'in', ['something', 'as', 'small', 'as', 'a', 'soda']]\n",
+ "[['breeding', 'conditions', 'are', 'large', 'containers', 'common'], 'in', ['many', 'parts', 'of', 'Southeast', 'Asia', 'to']]\n",
+ "[['commonly', 'lives', 'inside', \"people's\", 'homes,', 'lingering'], 'in', ['closets', 'or', 'curtains.', 'The', 'World', 'Health']]\n",
+ "[['an', 'outbreak', 'appears', 'to', 'have', 'occurred'], 'in', ['Philadelphia', 'in', '1780', '--', 'but', 'dengue']]\n",
+ "[['appears', 'to', 'have', 'occurred', 'in', 'Philadelphia'], 'in', ['1780', '--', 'but', 'dengue', 'has', 'become']]\n",
+ "[['said', 'Dr.', 'Suchitra', 'Nimmannitya,', 'a', 'pioneer'], 'in', ['dengue', 'research', 'who', 'developed', 'a', 'handbook']]\n",
+ "[['dengue', 'vaccine,', 'which', 'will', 'undergo', 'trials'], 'in', ['4,000', 'children', 'in', 'Thailand', 'in', 'a']]\n",
+ "[['will', 'undergo', 'trials', 'in', '4,000', 'children'], 'in', ['Thailand', 'in', 'a', 'few', 'months,', 'is']]\n",
+ "[['trials', 'in', '4,000', 'children', 'in', 'Thailand'], 'in', ['a', 'few', 'months,', 'is', 'one', 'of']]\n",
+ "[['and', 'has', 'been', 'tested', 'on', 'volunteers'], 'in', ['the', 'United', 'States,', 'Puerto', 'Rico', 'and']]\n",
+ "[['make', 'the', 'vaccine', 'affordable', 'to', 'people'], 'in', ['developing', 'countries.', 'For', 'a', 'man', 'whose']]\n",
+ "[['Florida', 'panther.', 'Fewer', 'than', '100', 'survive'], 'in', ['the', 'wild.', 'In', '2006,', 'Pimm,', 'who']]\n",
+ "[['had', 'this', 'rich', 'island', 'chain,', 'out'], 'in', ['the', 'midst', 'of', 'the', 'Pacific,', 'full']]\n",
+ "[['plants', '--', 'a', 'place', 'supposedly', 'richer'], 'in', ['natural', 'diversity', 'than', 'even', 'the', 'Galapagos.']]\n",
+ "[['the', 'fauna', 'and', 'flora,', 'all', 'published'], 'in', ['the', 'early', '1970s.', 'Yet', 'once', 'in']]\n",
+ "[['in', 'the', 'early', '1970s.', 'Yet', 'once'], 'in', ['the', 'Hawaiian', 'forest,', 'I', 'had', 'a']]\n",
+ "[['about', 'to', 'become', 'so.', 'I', 'was'], 'in', ['the', 'forest', 'six', 'days', 'a', 'week']]\n",
+ "[['I', 'saw', 'very', 'little.', 'In', 'fact,'], 'in', ['Hawaii', 'today,', \"I'd\", 'say', 'there', 'are']]\n",
+ "[['spend', 'a', 'fair', 'amount', 'of', 'time'], 'in', ['Washington,', 'working', 'for', 'laws', 'to', 'protect']]\n",
+ "[['their', 'data', 'and', 'then', 'dress', 'up'], 'in', ['a', 'suit', 'in', 'the', 'afternoon', 'to']]\n",
+ "[['then', 'dress', 'up', 'in', 'a', 'suit'], 'in', ['the', 'afternoon', 'to', 'meet', 'the', 'visiting']]\n",
+ "[['similarly', 'large', 'numbers', 'of', 'plants', 'are'], 'in', ['serious', 'danger,', \"I'd\", 'say.', \"What's\", 'more,']]\n",
+ "[['all', 'species', 'on', 'the', 'planet', 'are'], 'in', ['such', 'trouble', 'that', 'if', 'we', \"don't\"]]\n",
+ "[['things', 'immediately', 'they', 'will', 'be', 'gone'], 'in', ['a', 'decade.', 'The', 'river', 'dolphin', 'in']]\n",
+ "[['in', 'a', 'decade.', 'The', 'river', 'dolphin'], 'in', ['China', 'was', 'declared', 'extinct', 'just', 'last']]\n",
+ "[['just', 'last', 'year.', 'Another', 'small', 'dolphin'], 'in', ['the', 'Sea', 'of', 'Cortez', 'is', 'in']]\n",
+ "[['in', 'the', 'Sea', 'of', 'Cortez', 'is'], 'in', ['immediate', 'danger.', 'Q:', 'What', 'can', 'one']]\n",
+ "[['with', 'local', 'conservation', 'groups', 'and', 'governments'], 'in', ['Brazil', 'and', 'Madagascar', 'doing', 'a', 'variety']]\n",
+ "[['the', 'illegal', 'logging.', 'I', 'may', 'burn'], 'in', ['hell', 'forever', 'for', 'paying', 'protection,', 'but']]\n",
+ "[['it', 'reduces', 'deforestation.', \"There's\", 'another', 'project'], 'in', ['Northern', 'Amazonia', 'that', 'my', 'group', 'has']]\n",
+ "[['have', 'clear', 'title', 'to', 'the', 'land'], 'in', ['their', 'village.', 'Recently,', 'settlers', 'came', 'into']]\n",
+ "[['finance', 'SavingSpecies.org?', 'PIMM:', 'We', 'raise', 'money'], 'in', ['the', 'traditional', 'way,', 'but', \"we're\", 'also']]\n",
+ "[['will', 'eventually', 'become', 'a', 'financial', 'obligation'], 'in', ['a', 'lot', 'of', 'the', 'world.', 'Q:']]\n",
+ "[['fatal', 'hemorrhagic', 'fevers', 'has', 'been', 'discovered'], 'in', ['southern', 'Africa.', 'It', 'killed', 'four', 'people']]\n",
+ "[['southern', 'Africa.', 'It', 'killed', 'four', 'people'], 'in', ['South', 'Africa', 'and', 'sickened', 'a', 'fifth,']]\n",
+ "[['includes', 'the', 'causes', 'of', 'Lassa', 'fever'], 'in', ['West', 'Africa', 'and', 'several', 'South', 'American']]\n",
+ "[['While', 'new', 'viruses', 'are', 'often', 'found'], 'in', ['animals', '--', 'a', 'new', 'blue-tongue', 'virus']]\n",
+ "[['a', 'new', 'blue-tongue', 'virus', 'was', 'found'], 'in', ['Swiss', 'goats', 'last', 'month,', 'for', 'example']]\n",
+ "[['to', 'humans,', 'like', 'the', 'SARS', 'coronavirus'], 'in', ['2002', 'or', 'the', 'sin', 'nombre', 'hantavirus']]\n",
+ "[['2002', 'or', 'the', 'sin', 'nombre', 'hantavirus'], 'in', ['1993.', 'How', 'the', 'first', 'victim', 'was']]\n",
+ "[['is', 'unknown,', 'but', 'arenaviruses', 'are', 'common'], 'in', ['rodents;', 'their', 'dried', 'urine,', 'inhaled', 'while']]\n",
+ "[['the', 'National', 'Institute', 'for', 'Communicable', 'Diseases'], 'in', ['South', 'Africa', 'and', 'by', 'the', 'Centers']]\n",
+ "[['Centers', 'for', 'Disease', 'Control', 'and', 'Prevention'], 'in', ['Atlanta.', 'The', 'first', 'victim', 'was', 'Cecilia']]\n",
+ "[['Van', 'Deventer,', 'a', 'safari', 'tour', 'booker'], 'in', ['Lusaka,', 'Zambia,', 'who', 'fell', 'ill', 'on']]\n",
+ "[['tending', 'her', 'at', 'the', 'Morningside', 'Medi-Clinic'], 'in', ['a', 'Johannesburg', 'suburb.', 'The', 'fourth', 'to']]\n",
+ "[['nurse', 'who', 'cared', 'for', 'Els,', 'was'], 'in', ['critical', 'condition', 'but', 'responded', 'to', 'early']]\n",
+ "[['little', 'blood', 'was', 'drawn', 'from', 'her'], 'in', ['Zambia;', 'also,', 'her', 'body', 'was', 'cremated']]\n",
+ "[['victims', 'had', 'to', 'be', 'taken', 'carefully'], 'in', ['a', 'high-security', 'laboratory', 'that', 'was', 'under']]\n",
+ "[['of', 'its', 'existence.', 'In', 'an', 'article'], 'in', ['the', 'November', 'issue', 'of', 'the', 'journal']]\n",
+ "[['is', 'that', 'the', 'opal', 'deposits', 'lie'], 'in', ['areas', 'that', 'appear', 'to', 'have', 'formed']]\n",
+ "[['detected', 'other', 'water-bearing', 'minerals', 'like', 'clays'], 'in', ['regions', 'that', 'date', 'back', 'more', 'than']]\n",
+ "[['years.', 'Mars,', 'like', 'the', 'other', 'planets'], 'in', ['the', 'solar', 'system,', 'is', 'about', '4.5']]\n",
+ "[['whether', 'the', 'arctic', 'ice', 'has', 'melted'], 'in', ['recent', 'millennia.', 'The', 'most', 'intriguing', 'possibility']]\n",
+ "[['lots', 'of', 'water', 'on', 'the', 'surface'], 'in', ['the', 'first', 'few', 'hundred', 'million', 'years,\"']]\n",
+ "[['catastrophic', 'floods', 'carved', 'the', 'landforms,', 'either'], 'in', ['the', 'aftermath', 'of', 'an', 'impact', 'by']]\n",
+ "[['carbonates,', 'minerals', 'that', 'should', 'have', 'formed'], 'in', ['large', 'amounts', 'from', 'reactions', 'involving', 'carbon']]\n",
+ "[['past', 'water.', 'Opportunity', 'found', 'hydrated', 'sulfates'], 'in', ['the', 'Meridiani', 'Planum', 'rocks;', 'Spirit', 'found']]\n",
+ "[['Even', 'if', 'young', 'Mars', 'was', 'enshrouded'], 'in', ['a', 'thick', 'atmosphere', 'of', 'carbon', 'dioxide']]\n",
+ "[['had', 'trouble', 'coaxing', 'enough', 'global', 'warming'], 'in', ['their', 'computer', 'simulations', 'to', 'push', 'temperatures']]\n",
+ "[['In', 'research', 'that', 'he', 'will', 'present'], 'in', ['December', 'at', 'a', 'meeting', 'of', 'the']]\n",
+ "[['eruptions,', 'reduces', 'the', 'reflectivity', 'of', 'Mars'], 'in', ['the', 'models.', 'With', 'more', 'light', 'absorbed,']]\n",
+ "[['throughout', 'the', 'atmosphere', 'rather', 'than', 'remain'], 'in', ['pockets', 'around', 'the', 'volcanoes.', 'Even', 'if']]\n",
+ "[['dollar', 'a', 'day,', 'or', 'even', 'less;'], 'in', ['the', 'United', 'States,', 'the', 'daily', 'food-stamp']]\n",
+ "[['to', 'rise.', 'This', 'fall', 'a', 'couple'], 'in', ['Encinitas,', 'Calif.,', 'conducted', 'their', 'own', 'experiment']]\n",
+ "[['raw', 'beans,', 'rice,', 'cornmeal', 'and', 'oatmeal'], 'in', ['bulk,', 'and', 'made', 'their', 'own', 'bread']]\n",
+ "[['C', 'deficiency,', 'that', 'they', 'made', 'room'], 'in', ['their', 'budget', 'for', 'Tang', 'orange', 'drink']]\n",
+ "[['the', 'time', 'they', 'had', 'to', 'spend'], 'in', ['meal', 'preparation.', '\"If', \"you're\", 'buying', 'raw']]\n",
+ "[['foraged', 'for', 'lemons', 'on', 'the', 'trees'], 'in', ['their', 'neighborhood', 'to', 'squeeze', 'juice', 'into']]\n",
+ "[['much', 'to', 'spend', 'on', 'food.', '\"People'], 'in', ['our', 'situation', 'have', 'the', 'leisure', 'to']]\n",
+ "[['said.', '\"If', 'we', 'were', 'actually', 'living'], 'in', ['this', 'situation,', 'I', 'would', 'not', 'be']]\n",
+ "[['year,', 'Drewnowski', 'led', 'a', 'study,', 'published'], 'in', ['The', 'Journal', 'of', 'the', 'American', 'Dietetic']]\n",
+ "[['of', '370', 'foods', 'sold', 'at', 'supermarkets'], 'in', ['the', 'Seattle', 'area.', 'The', 'study', 'showed']]\n",
+ "[[\"it's\", 'the', 'budget', 'pyramid.\"', 'The', 'experiment'], 'in', ['California', 'was', 'hardly', 'the', 'first', 'of']]\n",
+ "[['a', 'day', 'and', 'eat', 'fresh', 'food'], 'in', ['this', 'country,\"', 'Greenslate', 'said.', '\"I', 'would']]\n",
+ "[['at', 'the', 'National', 'Academy', 'of', 'Sciences'], 'in', ['Washington', 'through', 'Dec.', '19.', 'Much', 'of']]\n",
+ "[['The', 'visual', 'world', 'underwent', 'rapid', 'changes'], 'in', ['the', 'late', '19th', 'and', 'early', '20th']]\n",
+ "[['like', 'the', 'National', 'Tuberculosis', 'Association,', 'founded'], 'in', ['1904,', 'took', 'some', 'cues', 'from', 'advertising']]\n",
+ "[['reads', 'a', 'newspaper.', 'An', 'urban', 'throng,'], 'in', ['monochromatic', 'red,', 'appears', 'in', 'the', 'background.']]\n",
+ "[['urban', 'throng,', 'in', 'monochromatic', 'red,', 'appears'], 'in', ['the', 'background.', '\"Tuberculosis', 'Undiscovered', 'Endangers', 'You:']]\n",
+ "[['today,', 'she', 'added.)', 'Another', 'poster,', 'created'], 'in', ['China', 'in', '1935,', 'was', 'intended', 'to']]\n",
+ "[['added.)', 'Another', 'poster,', 'created', 'in', 'China'], 'in', ['1935,', 'was', 'intended', 'to', 'discourage', 'spitting,']]\n",
+ "[['TB.', 'The', 'image', 'shows', 'a', 'man'], 'in', ['traditional', 'dress', 'walking', 'past', 'a', 'group']]\n",
+ "[['under', 'a', 'microscope.', 'The', 'caption', 'reads,'], 'in', ['part:', '\"TB', 'is', 'rampant', 'in', 'our']]\n",
+ "[['reads,', 'in', 'part:', '\"TB', 'is', 'rampant'], 'in', ['our', 'country', 'because', 'of', 'the', 'error']]\n",
+ "[['that', 'of', 'the', 'National', 'Tuberculosis', 'Association'], 'in', ['the', 'United', 'States', '--', 'a', 'vertical']]\n",
+ "[['pagoda.', 'A', 'similar', 'message', 'was', 'promoted'], 'in', ['many', 'countries.', 'In', 'a', 'Danish', 'poster']]\n",
+ "[['green', 'and', 'red', 'highlights,', 'strolls', 'arm'], 'in', ['arm,', 'wearing', 'hats', 'that', 'could', 'be']]\n",
+ "[['the', 'Danish', 'enchantment', 'with', 'modernity,', 'both'], 'in', ['health', 'infrastructure', 'and', 'in', 'aesthetics,\"', 'Sappol']]\n",
+ "[['modernity,', 'both', 'in', 'health', 'infrastructure', 'and'], 'in', ['aesthetics,\"', 'Sappol', 'said.', '\"It', 'seduces', 'you']]\n",
+ "[['with', 'health', 'posters', 'declined,', 'at', 'least'], 'in', ['the', 'United', 'States.', '\"There', 'was', 'a']]\n",
+ "[['Sappol', 'said.', 'But', 'that', 'confidence', 'plummeted'], 'in', ['the', '1980s', 'and', '1990s', 'with', 'HIV/AIDS,']]\n",
+ "[['like', 'Act', 'Up', 'and', 'Gran', 'Fury'], 'in', ['the', 'United', 'States', 'and', 'the', 'Terrence']]\n",
+ "[['States', 'and', 'the', 'Terrence', 'Higgins', 'Trust'], 'in', ['Britain', 'campaigned', 'to', 'raise', 'awareness', 'about']]\n",
+ "[['that', 'the', 'campaign', 'hoped', 'to', 'draw'], 'in', ['heterosexuals.', 'AIDS', 'posters', 'tended', 'to', 'be']]\n",
+ "[['while', 'AIDS', 'patients', 'were', 'often', 'stigmatized'], 'in', ['the', 'broader', 'society,', 'the', 'major', 'public']]\n",
+ "[['pass', 'this', 'year.', 'Fleischaker,', '62,', 'was'], 'in', ['New', 'York', 'recovering', 'from', 'a', 'heart']]\n",
+ "[['a', 'heart', 'transplant,', 'for', 'one.', 'And'], 'in', ['her', 'home', 'state,', 'the', 'Democratic', 'candidate,']]\n",
+ "[['opponent,', 'Sen.', 'John', 'McCain.', 'She', 'mailed'], 'in', ['her', 'absentee', 'packet', 'anyway,', 'and', 'hounded']]\n",
+ "[['and', 'hounded', 'her', 'two', 'children,', 'also'], 'in', ['New', 'York,', 'to', 'do', 'the', 'same.']]\n",
+ "[['no', 'difference', 'to', 'me,\"', 'Fleischaker', 'said'], 'in', ['a', 'telephone', 'interview', 'last', 'week.', '\"Your']]\n",
+ "[['your', 'voice,', 'and', \"there's\", 'more', 'power'], 'in', ['it', 'than', 'in', 'most', 'of', 'the']]\n",
+ "[[\"there's\", 'more', 'power', 'in', 'it', 'than'], 'in', ['most', 'of', 'the', 'things', 'we', 'do.']]\n",
+ "[['have', 'dressed', 'up', 'partisan', 'political', 'stereotypes'], 'in', ['scientific', 'jargon,', 'describing', 'conservatives', 'as', '\"inordinately']]\n",
+ "[['which', 'has', 'helped', 'predict', \"people's\", 'behavior'], 'in', ['elections', 'any', 'more', 'than', 'a', 'half-decent']]\n",
+ "[['of', 'money', 'among', 'voters', 'and', 'nonvoters'], 'in', ['the', 'study;', 'or', 'B,', 'a', 'payout']]\n",
+ "[['their', 'vote', 'carries', 'far', 'less', 'value'], 'in', ['a', 'national', 'race', 'than', 'in', 'a']]\n",
+ "[['value', 'in', 'a', 'national', 'race', 'than'], 'in', ['a', 'local', 'one.', 'This', 'study', 'and']]\n",
+ "[['that', 'price', 'amounts', 'to', 'standing', 'out'], 'in', ['the', 'cold', 'for', '15', 'minutes', 'waiting']]\n",
+ "[['identity', 'construction', 'for', 'individuals,\"', 'Gailmard', 'wrote'], 'in', ['an', 'e-mail', 'message.', '\"Or', 'it', 'could']]\n",
+ "[['small', 'or', 'very', 'large,', 'like', 'fighting'], 'in', ['a', 'war,', 'if', 'we', 'ourselves', 'are']]\n",
+ "[['a', 'model', 'that', 'accurately', 'predicted', 'turnout'], 'in', ['several', 'local', 'Texas', 'elections.', '\"The', 'model']]\n",
+ "[['Texas', 'elections.', '\"The', 'model', 'predicts', 'that'], 'in', ['states', 'where', 'the', 'election', 'is', 'close,']]\n",
+ "[['all', 'groups,\"', 'Feddersen', 'said,', 'adding', 'that'], 'in', ['the', 'toss-up', 'states,', '\"partisans', 'are', 'less']]\n",
+ "[['likely', 'to', 'vote', 'when', 'they', 'are'], 'in', ['the', 'majority', 'and', 'more', 'likely', 'to']]\n",
+ "[['likely', 'to', 'vote', 'when', 'they', 'are'], 'in', ['the', 'minority,\"', 'or', 'expect', 'to', 'lose.']]\n",
+ "[['lose.', 'In', 'short,', 'expect', 'the', 'race'], 'in', ['states', 'like', 'New', 'York', 'and', 'Oklahoma']]\n",
+ "[['to', 'alter', 'them,', 'the', 'court', 'said'], 'in', ['an', 'important', 'test', 'case', 'last', 'month.']]\n",
+ "[['by', 'Congress,', 'Kennedy', 'said.', '\"This', 'flies'], 'in', ['the', 'face', 'of', 'the', 'detailed', 'statutory']]\n",
+ "[['that', 'allow', 'them', 'to', 'consider', 'cost'], 'in', ['deciding', 'whether', 'the', 'program', 'should', 'cover']]\n",
+ "[['make', 'it', 'more', 'difficult', 'to', 'rein'], 'in', ['Medicare', 'costs.', 'Kennedy', 'found', 'that', 'Medicare']]\n",
+ "[['forth', 'the', 'touchstone', 'for', 'Medicare', 'coverage'], 'in', ['a', '1965', 'law', 'that', 'created', 'the']]\n",
+ "[['covered,', 'the', 'payment', 'rate', 'is', 'specified'], 'in', ['other', 'parts', 'of', 'the', 'law.', 'The']]\n",
+ "[['or', 'its', 'contractors,\"', 'the', 'company', 'said'], 'in', ['its', 'brief.', 'Patrick', 'Morrisey,', 'a', 'lawyer']]\n",
+ "[[\"country's\", 'embattled', 'minorities', 'fewer', 'guaranteed', 'seats'], 'in', ['upcoming', 'elections', 'than', 'the', 'United', 'Nations']]\n",
+ "[['a', 'law', 'on', 'provincial', 'elections', 'but,'], 'in', ['a', 'controversial', 'action,', 'deleted', 'from', 'it']]\n",
+ "[['wounded', 'when', 'two', 'roadside', 'bombs', 'exploded'], 'in', ['quick', 'succession', 'in', 'front', 'of', 'the']]\n",
+ "[['roadside', 'bombs', 'exploded', 'in', 'quick', 'succession'], 'in', ['front', 'of', 'the', 'headquarters', 'of', 'the']]\n",
+ "[['Ministry', 'of', \"Interior's\", 'criminal', 'investigations', 'unit'], 'in', [\"Baghdad's\", 'central', 'Karada', 'district,', 'according', 'to']]\n",
+ "[['media.', 'The', 'deadlier', 'bomb', 'was', 'planted'], 'in', ['front', 'of', 'the', 'protective', 'concrete', 'wall']]\n",
+ "[['years.', '\"Who', 'can', 'plant', 'a', 'bomb'], 'in', ['this', 'fortified', 'area', 'in', 'the', 'presence']]\n",
+ "[['a', 'bomb', 'in', 'this', 'fortified', 'area'], 'in', ['the', 'presence', 'of', 'police', 'patrols?\"', 'The']]\n",
+ "[['his', 'driver,', 'when', 'a', 'bomb', 'planted'], 'in', ['his', 'car', 'exploded,', 'according', 'to', 'a']]\n",
+ "[['into', 'the', 'car', 'at', 'his', 'home'], 'in', ['the', 'northern', 'Baghdad', 'neighborhood', 'of', 'Atafiya']]\n",
+ "[['the', 'ministry', 'Monday', 'to', 'discuss', 'investments'], 'in', [\"Iraq's\", 'lucrative', 'oil', 'and', 'gas', 'sectors.']]\n",
+ "[['violence,', 'a', 'huge', 'car', 'bomb', 'exploded'], 'in', ['a', 'parking', 'lot', 'next', 'to', 'the']]\n",
+ "[['the', 'headquarters', 'of', 'the', 'local', 'government'], 'in', ['Baqouba', 'in', 'Diyala', 'province,', 'killing', 'at']]\n",
+ "[['of', 'the', 'local', 'government', 'in', 'Baqouba'], 'in', ['Diyala', 'province,', 'killing', 'at', 'least', 'three']]\n",
+ "[['attack', 'was', 'proof', 'that', 'the', 'situation'], 'in', ['the', 'province', 'remained', '\"fragile\"', 'and', 'that']]\n",
+ "[['the', \"government's\", 'lauded', 'recent', 'security', 'operation'], 'in', ['Diyala', 'had', '\"only', 'accomplished', 'a', 'fraction']]\n",
+ "[['goals.\"', 'Fourteen', 'other', 'people', 'were', 'wounded'], 'in', ['four', 'other', 'bombing', 'attacks', 'in', 'Baghdad,']]\n",
+ "[['wounded', 'in', 'four', 'other', 'bombing', 'attacks'], 'in', ['Baghdad,', 'according', 'to', 'the', 'official', 'of']]\n",
+ "[['killed', 'and', 'five', 'other', 'people', 'wounded'], 'in', ['a', 'roadside', 'bombing', 'aimed', 'at', 'a']]\n",
+ "[['Christians', 'a', 'single', 'seat', 'on', 'councils'], 'in', ['Baghdad,', 'Basra', 'and', 'Nineveh,', 'instead', 'of']]\n",
+ "[['Nineveh,', 'instead', 'of', 'the', 'three', 'seats'], 'in', ['Baghdad', 'and', 'three', 'in', 'Nineveh,', 'as']]\n",
+ "[['three', 'seats', 'in', 'Baghdad', 'and', 'three'], 'in', ['Nineveh,', 'as', 'well', 'as', 'one', 'in']]\n",
+ "[['in', 'Nineveh,', 'as', 'well', 'as', 'one'], 'in', ['Basra,', 'that', 'were', 'proposed', 'by', 'the']]\n",
+ "[['since', 'the', 'start', 'of', 'the', 'war'], 'in', ['2003,', 'were', 'given', 'one', 'seat', 'in']]\n",
+ "[['in', '2003,', 'were', 'given', 'one', 'seat'], 'in', ['Nineveh,', 'instead', 'of', 'the', 'three', 'proposed.']]\n",
+ "[['compromise', 'following', 'the', 'controversy', 'that', 'erupted'], 'in', ['late', 'September', 'when', 'Parliament', 'passed', 'the']]\n",
+ "[['article', 'that', 'had', 'provided', '13', 'seats'], 'in', ['six', 'provinces', 'for', 'Iraqi', 'Christians,', 'Yazidis']]\n",
+ "[['Younadim', 'Kanna,', 'one', 'of', 'two', 'Christians'], 'in', ['parliament,', 'described', \"Monday's\", 'vote', 'as', '\"a']]\n",
+ "[['Elections', 'are', 'expected', 'to', 'be', 'conducted'], 'in', ['most', 'of', 'the', 'country', 'early', 'next']]\n",
+ "[['country', 'early', 'next', 'year.', 'Growing', 'up'], 'in', ['Connecticut,', 'Alexandra', 'Hubbard', 'did', 'not', 'want']]\n",
+ "[['she', 'moved', 'to', 'the', 'Broughton', 'Archipelago,'], 'in', ['the', 'Queen', 'Charlotte', 'Strait', 'of', 'British']]\n",
+ "[['65-foot', 'sailboat', 'and', 'followed', 'the', 'orcas'], 'in', ['an', 'inflatable', 'boat', 'with', 'a', 'shelter']]\n",
+ "[['an', 'inflatable', 'boat', 'with', 'a', 'shelter'], 'in', ['the', 'back,', 'stocked', 'with', 'Legos', 'and']]\n",
+ "[['She', 'knew', 'she', 'would', 'find', 'them'], 'in', ['Fife', 'Sound', 'at', 'the', 'ebb', 'tide,']]\n",
+ "[['of', 'the', 'clans.', 'Her', 'husband', 'drowned'], 'in', ['1986,', 'when', 'Jarret', 'was', '4,', 'but']]\n",
+ "[['most', 'of', 'the', 'killer', 'whales', 'away,'], 'in', ['part', 'by', 'infecting', 'the', 'wild', 'salmon']]\n",
+ "[['has', 'had', 'a', 'lot', 'of', 'influence'], 'in', ['highlighting', 'the', 'issue,\"', 'he', 'said.', 'Daniel']]\n",
+ "[['personally.', 'The', 'disappearance', 'of', 'the', 'orcas'], 'in', ['the', 'Broughton', '\"ruined', 'my', 'life,', 'absolutely,\"']]\n",
+ "[['worth', 'of', 'Atlantic', 'salmon', 'a', 'year'], 'in', ['British', 'Columbia.', 'At', 'any', 'given', 'time,']]\n",
+ "[['70', 'to', '80', 'farm', 'sites', 'operate'], 'in', ['provincial', 'waters,', 'perhaps', '15', 'or', 'so']]\n",
+ "[['provincial', 'waters,', 'perhaps', '15', 'or', 'so'], 'in', ['the', 'Broughton,', 'a', 'hardly', 'inhabited', 'area']]\n",
+ "[['usually', 'crossed', 'by', 'metal', 'walkways,', 'floating'], 'in', ['a', 'cove', 'or', 'bay.', 'Individual', 'sites']]\n",
+ "[['concern', 'that', 'is', 'a', 'major', 'presence'], 'in', ['salmon', 'farming', 'here,', 'concede', 'that', 'penned']]\n",
+ "[['Kelly', 'Osborne,', 'who', 'manages', 'farm', 'sites'], 'in', ['the', 'Broughton', 'for', 'Marine', 'Harvest,', 'said']]\n",
+ "[['he', 'said,', 'that', 'perhaps', 'only', '1'], 'in', ['10', 'penned', 'fish', 'would', 'have', 'a']]\n",
+ "[['to', 'blame', 'the', 'farms', 'for', 'declines'], 'in', ['salmon', 'runs', 'seen', 'here', 'recently', 'because']]\n",
+ "[['removed.', 'And', 'because', 'salmon', 'loom', 'large'], 'in', ['the', 'diets', 'of', 'orcas,', 'bears,', 'eagles']]\n",
+ "[['Conservation', 'Science', 'at', 'Stony', 'Brook', 'University'], 'in', ['New', 'York.', '\"The', 'sea', 'lice', 'problem']]\n",
+ "[['lice', 'problem', 'could', 'be', 'the', 'nail'], 'in', ['the', 'coffin', 'for', 'some', 'of', 'these']]\n",
+ "[['as', 'the', \"Broughton's\", 'master', 'fisherman,', 'said'], 'in', ['an', 'interview.', 'She', 'still', 'moves', 'gracefully']]\n",
+ "[['other', 'fishermen', 'find', 'escaped', 'Atlantic', 'salmon'], 'in', ['their', 'nets,', 'they', 'often', 'bring', 'them']]\n",
+ "[['the', 'bodies,', 'usually', 'by', 'dumping', 'them'], 'in', ['the', 'water', 'for', 'crabs', 'and', 'other']]\n",
+ "[['and', 'other', 'scavengers', 'to', 'eat.', 'Meanwhile,'], 'in', ['what', 'she', 'calls', '\"partnered', 'science,\"', 'she']]\n",
+ "[['Morton', 'has', 'helped', 'write', 'have', 'appeared'], 'in', ['major', 'scientific', 'journals', 'like', 'Science,', 'which']]\n",
+ "[['major', 'scientific', 'journals', 'like', 'Science,', 'which'], 'in', ['December', 'published', 'a', 'study', 'in', 'which']]\n",
+ "[['which', 'in', 'December', 'published', 'a', 'study'], 'in', ['which', 'she', 'and', 'her', 'coauthors', 'link']]\n",
+ "[['to', 'precipitous', 'declines', 'of', 'pink', 'salmon'], 'in', ['the', 'Broughton.', 'Scientists', 'at', 'the', 'University']]\n",
+ "[['flat', 'land', 'that', 'many', 'people', 'live'], 'in', ['float', 'houses', '--', 'cabins', 'built', 'on']]\n",
+ "[['except', 'the', 'few', 'shelves', 'of', 'staples'], 'in', ['the', 'post', 'office', 'in', 'Simoom', 'Sound,']]\n",
+ "[['of', 'staples', 'in', 'the', 'post', 'office'], 'in', ['Simoom', 'Sound,', 'around', 'a', 'wooded', 'promontory']]\n",
+ "[['the', 'fish', 'farmed', 'here', 'end', 'up'], 'in', ['trucks', 'heading', 'down', 'I-5', 'to', 'California,']]\n",
+ "[['graduate', 'students', 'and', 'other', 'researchers', 'live'], 'in', ['a', 'cluster', 'of', 'houses,', 'their', 'wooden']]\n",
+ "[['former', 'float', 'house', 'that', 'Proctor', 'lived'], 'in', ['as', 'a', 'boy', 'and', 'which', 'Morton']]\n",
+ "[['rocks,', 'a', 'disaster-filled', 'episode', 'she', 'recounts'], 'in', ['her', 'autobiography,', '\"Listening', 'to', 'Whales\"', '(Ballantine']]\n",
+ "[['British', 'Columbia,', 'works', 'as', 'an', 'engineer'], 'in', ['Utah', 'now,', 'Morton', 'said.', 'Another', 'is']]\n",
+ "[['split', 'up.', 'The', 'station', 'is', 'supported'], 'in', ['part', 'by', 'Sarah', 'Haney,', 'a', 'retired']]\n",
+ "[['and', 'she', 'was', 'an', 'early', 'partner'], 'in', ['the', 'venture.', 'One', 'of', 'her', 'major']]\n",
+ "[['major', 'interests', 'is', 'whales,', 'Haney', 'said'], 'in', ['a', 'telephone', 'interview,', 'so', 'she', 'learned']]\n",
+ "[['a', 'prep', 'school', 'dropout', '(Milton', 'Academy'], 'in', ['Massachusetts)', 'who', 'had', 'worked', 'in', 'California']]\n",
+ "[['Academy', 'in', 'Massachusetts)', 'who', 'had', 'worked'], 'in', ['California', 'for', 'John', 'Lilly,', 'an', 'eccentric']]\n",
+ "[['encountered', 'orcas', 'at', 'Marineland,', 'an', 'oceanarium'], 'in', ['La', 'Jolla,', 'Calif.,', 'and', 'decided', 'she']]\n",
+ "[['decided', 'she', 'had', 'to', 'see', 'them'], 'in', ['the', 'wild.', 'She', 'had', 'thoughts', 'of']]\n",
+ "[['Robin', 'and', 'just', 'fell', 'so', 'crazy'], 'in', ['love', 'with', 'him', 'that', 'before', 'I']]\n",
+ "[['a', 'small', 'town', 'on', 'Malcolm', 'Island,'], 'in', ['the', 'Queen', 'Charlotte', 'Strait,', 'where', 'she']]\n",
+ "[['finishes', 'high', 'school.', 'She', 'will', 'live'], 'in', ['a', 'house', 'on', 'the', 'water,', 'a']]\n",
+ "[['she', 'will', 'be', 'putting', 'her', 'hydrophone'], 'in', ['the', 'water', 'again,', 'just', 'in', 'case.']]\n",
+ "[['hydrophone', 'in', 'the', 'water', 'again,', 'just'], 'in', ['case.', 'FOR', 'TUESDAY', 'AMs', 'The', 'following']]\n",
+ "[['of', 'a', 'battle', 'pitting', 'many', 'combatants'], 'in', ['a', 'high-tech', 'dispute', 'over', 'precious', 'slices']]\n",
+ "[['Now', 'that', 'American', 'taxpayers', 'are', 'shareholders'], 'in', ['the', \"nation's\", 'largest', 'banks,', 'there', 'are']]\n",
+ "[['proposals', 'to', 'curb', 'pay.', 'Some', 'folks'], 'in', ['Washington', 'want', 'to', 'set', 'a', 'cap']]\n",
+ "[['with', 'a', 'fancy', 'formula', 'to', 'reign'], 'in', ['compensation.', 'By', 'Andrew', 'Ross', 'Sorkin.', '(Bottom']]\n",
+ "[['workers', 'scampered', 'from', 'office', 'to', 'office'], 'in', ['Halloween', 'costumes.', 'Minutes', 'later,', 'the', 'kids']]\n",
+ "[['billion', 'to', 'the', 'nine', 'largest', 'banks'], 'in', ['the', 'United', 'States.', 'It', 'is', 'new']]\n",
+ "[['about', 'staff', 'cuts', 'is', 'particularly', 'prevalent'], 'in', ['Silicon', 'Valley.', 'By', 'Claire', 'Cain', 'Miller.']]\n",
+ "[['masterwork,', '\"Beloved\":', 'A', 'runaway', 'slave,', 'caught'], 'in', ['her', 'effort', 'to', 'escape,', 'cuts', 'the']]\n",
+ "[['untamed,', 'lawless', 'world', 'that', 'was', 'America'], 'in', ['the', '17th', 'century', 'with', 'the', 'same']]\n",
+ "[['of', 'fable.', 'All', 'the', 'central', 'characters'], 'in', ['this', 'story', 'are', 'orphans,', 'cast', 'off']]\n",
+ "[['clothing,', 'expenses', 'and', 'a', 'few', 'supplies\"'], 'in', ['exchange', 'for', 'a', '\"healthy,', 'chaste', 'wife']]\n",
+ "[['Florens,', 'whose', 'mother', 'sees', 'the', 'kindness'], 'in', [\"Jacob's\", 'heart', 'and', 'begs', 'him', 'to']]\n",
+ "[['debt', 'owed', 'by', 'their', 'domineering', 'owner)'], 'in', ['the', 'hopes', 'that', 'the', 'trader', 'will']]\n",
+ "[['will', 'leave', 'her', 'with', 'a', 'hole'], 'in', ['her', 'heart', 'and', 'an', 'abiding', 'need']]\n",
+ "[['of', 'frontier', 'life', 'bringing', 'them', 'together'], 'in', ['an', 'alliance', 'of', 'survival', 'that', 'slowly']]\n",
+ "[['named', 'Sorrow,', 'who', 'was', 'found', 'half-drowned'], 'in', ['a', 'river.', 'Rebekka', 'regards', 'Sorrow', 'as']]\n",
+ "[['sees', 'the', 'stranger', 'as', '\"bad', 'luck'], 'in', ['the', 'flesh\"', 'and', 'blames', 'her', 'for']]\n",
+ "[['early', 'deaths', 'of', \"Rebekka's\", 'children.', 'Florens,'], 'in', ['contrast,', 'awakens', 'a', 'maternal', 'instinct', 'in']]\n",
+ "[['in', 'contrast,', 'awakens', 'a', 'maternal', 'instinct'], 'in', ['Lina,', 'and', 'she', 'embraces', 'the', 'girl']]\n",
+ "[['everything.\"', 'Years', 'later', 'Florens', 'falls', 'passionately'], 'in', ['love', 'with', 'a', 'visiting', 'blacksmith,', 'a']]\n",
+ "[['to', 'her', 'mission.', 'The', 'main', 'storyteller'], 'in', ['this', 'volume', 'is', 'Florens,', 'who,', 'abandoned']]\n",
+ "[['But', 'her', 'voice', 'is', 'just', 'one'], 'in', ['this', 'choral', 'tale', '--', 'a', 'tale']]\n",
+ "[['Knopf.', '$23.95.', 'This', 'city', 'once', 'dreamed'], 'in', ['lofty', 'superlatives', '--', 'that', 'it', 'could']]\n",
+ "[['late', '1800s,', 'Denver,', '100', 'miles', 'south'], 'in', ['Colorado,', 'had', 'won', 'the', 'contest.', 'Gold']]\n",
+ "[['for', 'president.', 'Obama', 'is', 'comfortably', 'ahead'], 'in', ['most', 'polls', 'in', 'Colorado', 'going', 'into']]\n",
+ "[['is', 'comfortably', 'ahead', 'in', 'most', 'polls'], 'in', ['Colorado', 'going', 'into', \"Tuesday's\", 'election.', 'Wyoming,']]\n",
+ "[['a', 'railroad', 'town;', 'it', 'was', 'plunked'], 'in', ['the', \"state's\", 'southeast', 'corner', 'not', 'for']]\n",
+ "[['other', 'major', 'depots', 'of', 'the', '1860s,'], 'in', ['Omaha', 'and', 'Ogden,', 'Utah.', 'Now,', 'it']]\n",
+ "[['transit\"', 'is', 'seldom', 'heard,', 'took', 'testimony'], 'in', ['October', 'from', 'a', 'state', 'consultant', 'who']]\n",
+ "[['the', 'state', 'start', 'conferring', 'with', 'planners'], 'in', ['Denver', 'who', 'are', 'hoping', 'to', 'build']]\n",
+ "[['Cheyenne', 'who', 'has', 'worked', 'here', 'and'], 'in', ['Denver,', 'say', 'they', 'think', 'the', 'knot']]\n",
+ "[['the', 'change,', 'and', 'that,', 'who', 'knows,'], 'in', ['20', 'years,', 'Cheyenne', 'could', 'even', 'become']]\n",
+ "[['the', 'National', 'Center', 'for', 'Atmospheric', 'Research'], 'in', ['Boulder,', 'a', 'climate', 'research', 'institute', 'financed']]\n",
+ "[['next-generation', 'supercomputer', 'center', 'would', 'be', 'built'], 'in', ['Cheyenne.', 'Scheduled', 'to', 'open', 'in', '2011,']]\n",
+ "[['built', 'in', 'Cheyenne.', 'Scheduled', 'to', 'open'], 'in', ['2011,', 'the', 'center', 'will', 'foster', 'interaction']]\n",
+ "[['will', 'now', 'have', 'reason', 'to', 'meet'], 'in', ['Cheyenne.', 'Still,', 'Ron', 'Willis', 'is', 'among']]\n",
+ "[['commonly', 'heard', 'insult', 'around', 'here', 'that,'], 'in', ['rowdier', 'days,', 'might', 'have', 'sparked', 'a']]\n",
+ "[['they', 'are', 'among', 'the', 'fastest-growing', 'areas'], 'in', ['the', 'nation', 'over', 'the', 'last', 'two']]\n",
+ "[['\"But', 'there', 'would', 'be,', 'I', 'think,'], 'in', ['some', 'quarters,', 'resistance', 'to', 'losing', 'too']]\n",
+ "[['said.', '\"So', \"we're\", 'kind', 'of', 'stuck'], 'in', ['the', 'middle.\"', 'But', 'if', 'geography', 'is']]\n",
+ "[['with', 'Denver', 'for', 'the', 'first', 'time'], 'in', ['generations', 'and', 'stirring', 'those', 'old', 'dreams']]\n",
+ "[['the', 'Democrats', 'held', 'their', 'national', 'convention'], 'in', ['Denver', 'in', 'August,', 'Adams', 'said,', 'too']]\n",
+ "[['held', 'their', 'national', 'convention', 'in', 'Denver'], 'in', ['August,', 'Adams', 'said,', 'too', 'many', 'locals']]\n",
+ "[['Adams', 'said,', 'too', 'many', 'locals', 'fell'], 'in', ['love', 'with', 'the', 'party.', '\"I', 'listen']]\n",
+ "[['more.\"', 'I', 'voted', 'a', 'week', 'ago'], 'in', ['order', 'to', 'write', 'this', 'column.', 'It']]\n",
+ "[['Every', 'featherbedding,', 'ethically', 'compromised', 'labor', 'union'], 'in', ['the', 'state,', 'hand', 'in', 'hand', 'with']]\n",
+ "[['labor', 'union', 'in', 'the', 'state,', 'hand'], 'in', ['hand', 'with', 'the', 'self-appointed', '\"good', 'government\"']]\n",
+ "[['voted', 'for', 'John', 'McCain', 'for', 'president'], 'in', ['2000,', 'but', 'I', \"didn't\", 'get', 'the']]\n",
+ "[['you', 'want', 'answering', 'the', 'red', 'phone'], 'in', ['the', 'Oval', 'Office', 'at', '3', 'a.m.?\"']]\n",
+ "[['the', 'White', 'House.', '--', 'Wrap', 'yourself'], 'in', ['the', 'flag', 'What', 'started', 'out', 'as']]\n",
+ "[['that', 'Manhattan', 'satire', 'works', 'best,', 'well,'], 'in', ['Manhattan,', 'with', 'an', 'early-summer', 'cover', 'that']]\n",
+ "[['one', 'of', 'the', 'guys', 'is', 'sitting'], 'in', ['his', 'foreclosed', 'house', 'when', 'he', 'gets']]\n",
+ "[['is', 'calling', 'from', 'a', 'pay', 'phone'], 'in', ['the', 'desert', 'of', 'Iraq,', 'another', 'has']]\n",
+ "[['regularly', 'wallops', 'CNN', 'behemoth', 'Larry', 'King'], 'in', ['the', 'ratings.', 'Maddow', 'leans', 'left,', 'but']]\n",
+ "[['Buchanan', 'that', 'suggest', 'a', 'new', 'era'], 'in', ['respectful,', 'non-yelling', 'television', 'partisanship.', 'Honorable', 'mention:']]\n",
+ "[['his', 'name', 'was', 'dropped', '13', 'times'], 'in', ['the', 'first', 'minutes', 'of', 'the', 'final']]\n",
+ "[['sexism', 'as', 'a', 'form', 'of', 'endearment'], 'in', ['the', 'political', 'arena', 'and', 'show', 'it']]\n",
+ "[['the', 'response', 'of', 'undecided', 'voters', '--'], 'in', ['real', 'time', '--', 'during', 'the', 'debates.']]\n",
+ "[['the', 'debates.', '--', 'Cultural', 'creatives', 'available'], 'in', ['GOP', 'styles', 'too', 'McCain', 'solos', 'on']]\n",
+ "[['butterscotch', 'chip', 'bag.', '--', 'See', 'you'], 'in', ['the', 'White', 'House,', 'Paris', 'McCain', 'needles']]\n",
+ "[['proof', 'that', 'the', 'best', 'teleprompter', 'reader'], 'in', ['the', 'campaign', 'might', 'not', 'be', 'Obama.']]\n",
+ "[['later,', 'McCain/Palin', 'campaign', 'calling', 'itself', 'out'], 'in', ['finance', 'reports', 'that', 'revealed', '$150,000', 'spent']]\n",
+ "[['EMTs', 'because', 'swooning', 'fans', 'had', 'fainted'], 'in', ['the', 'audience.', 'The', 'man', 'is', '84']]\n",
+ "[['The', 'man', 'is', '84', 'now,', 'and'], 'in', ['impressive', 'condition', 'for', 'his', 'years.', 'Still,']]\n",
+ "[['Stevens', 'could', 'well', 'end', 'his', 'career'], 'in', ['electoral', 'defeat,', 'to', 'go', 'along', 'with']]\n",
+ "[['went', 'on', 'to', 'play', 'a', 'role'], 'in', ['his', \"state's\", 'battle', 'to', 'join', 'the']]\n",
+ "[['the', 'union,', 'and', 'then', 'represented', 'it'], 'in', ['the', 'Senate', 'for', '40', 'years.', 'In']]\n",
+ "[['pork-barrel', 'politician,', 'delivering', 'billions', 'of', 'dollars'], 'in', ['earmarks', 'to', 'his', 'constituents', 'while', 'stinting']]\n",
+ "[['national', 'issues', 'of', 'the', 'day.', 'But'], 'in', ['his', 'home', 'state,', 'the', 'man', 'was']]\n",
+ "[['The', 'elderly', 'senator', 'sat', 'ramrod', 'straight'], 'in', ['the', 'Washington', 'courtroom', 'as', 'the', 'jury']]\n",
+ "[['he', 'tried', 'to', 'knit', 'his', 'fingers,'], 'in', ['a', 'gesture', 'of', 'calmness,', 'but', 'had']]\n",
+ "[['He', 'would', 'behave', 'the', 'same', 'way'], 'in', ['his', 'official', 'capacity', 'whether', 'Allen', 'gave']]\n",
+ "[['of', 'hundreds', 'of', 'times', 'their', 'value'], 'in', ['public', 'largesse.', 'The', 'one', 'sacrifice', 'made']]\n",
+ "[['there.', 'Whether', 'those', 'little', 'favors', 'lead,'], 'in', ['return,', 'to', 'bigger', 'ones', 'in', 'the']]\n",
+ "[['lead,', 'in', 'return,', 'to', 'bigger', 'ones'], 'in', ['the', 'form', 'of', 'government', 'contracts', 'can']]\n",
+ "[['contracts', 'can', 'be', 'difficult', 'to', 'prove'], 'in', ['any', 'specific', 'instance.', 'But', 'the', 'idea']]\n",
+ "[['is', 'his', 'weekly', 'analysis', 'of', 'events'], 'in', ['the', 'capital', 'and', 'beyond.', 'He', 'can']]\n",
+ "[['\"Hair', 'is', 'a', 'top', 'spending', 'priority'], 'in', ['any', 'economy.\"', 'But', 'it', 'is', 'expensive.']]\n",
+ "[['is', 'expensive.', 'At', 'most', 'high-end', 'salons'], 'in', ['Los', 'Angeles,', 'a', 'cut', 'and', 'color']]\n",
+ "[['spends', 'about', '$50,000', 'on', 'her', 'hair'], 'in', ['her', 'lifetime.', \"That's\", 'a', 'figure', 'that']]\n",
+ "[['who', 'is', 'skimping', 'on', 'the', 'locks,'], 'in', ['my', 'humble', 'opinion,', 'has', 'her', 'priorities']]\n",
+ "[['colorist', 'at', 'the', 'Jim', 'Wayne', 'Salon'], 'in', ['Beverly', 'Hills,', 'who', 'said', 'she', \"hasn't\"]]\n",
+ "[['she', \"hasn't\", 'seen', 'a', 'big', 'change'], 'in', ['business', '--', 'even', 'with', 'the', 'sputtering']]\n",
+ "[['a', 'new', 'outfit,', 'you', 'feel', 'good'], 'in', ['it', 'the', 'first', 'time', 'you', 'wear']]\n",
+ "[['times,', 'you', \"don't\", 'feel', 'as', 'special'], 'in', ['it.', '\"When', 'you', 'get', 'your', 'hair']]\n",
+ "[['as', 'predicted.', '--', '7:30', 'p.m.', 'Voting'], 'in', ['Ohio,', 'North', 'Carolina', 'and', 'West', 'Virginia']]\n",
+ "[['and', 'pontificating', 'about', 'exit', 'polls.', '(Remember,'], 'in', ['2004', 'exit', 'polls', 'showed', 'Democrat', 'John']]\n",
+ "[['exit', 'polls', 'showed', 'Democrat', 'John', 'Kerry'], 'in', ['the', 'lead.', 'Digest', 'them', 'with', 'caution.)']]\n",
+ "[['8:30', 'p.m.', 'The', 'polls', 'have', 'closed'], 'in', ['17', 'more', 'states', 'and', '275', 'electoral']]\n",
+ "[['--', 'Ohio,', 'Pennsylvania', 'and', 'Florida', '--'], 'in', ['order', 'to', 'win.', 'Ohio', 'polls', 'came']]\n",
+ "[['order', 'to', 'win.', 'Ohio', 'polls', 'came'], 'in', ['an', 'hour', 'earlier,', 'so', 'look', 'to']]\n",
+ "[['wins', 'two', 'or', 'all', 'three', '(and'], 'in', ['that', 'instance,', 'Obama', 'has', 'picked', 'up']]\n",
+ "[['go', 'Democratic).', 'If', 'McCain', 'has', 'followed'], 'in', [\"Bush's\", 'footsteps,', 'he', 'just', 'needs', 'one']]\n",
+ "[['--', '1', 'a.m.', 'You', 'should', 'be'], 'in', ['bed', 'or', 'out', 'either', 'celebrating', 'the']]\n",
+ "[['should', 'be', 'over.', 'But', 'remember', 'Florida'], 'in', ['2000', 'and', 'Ohio', 'in', '2004.', 'I']]\n",
+ "[['remember', 'Florida', 'in', '2000', 'and', 'Ohio'], 'in', ['2004.', 'I', 'was', 'going', 'to', 'say']]\n",
+ "[['overpopulation.', \"Here's\", 'a', 'drama', 'series,', 'now'], 'in', ['its', 'fifth', 'season,', 'with', 'too', 'many']]\n",
+ "[['His', 'House', 'already', 'deserves', 'a', 'spot'], 'in', ['the', 'TV', 'character', 'hall', 'of', 'fame,']]\n",
+ "[['be', 'viewed', 'as', 'a', 'comic', 'psychodrama'], 'in', ['which', 'all', 'the', 'medical', 'cases', 'reflect']]\n",
+ "[['farce.', 'Yes,', 'I', 'have', 'sometimes', 'joined'], 'in', ['the', 'chorus', 'of', 'fans', 'who', 'feel']]\n",
+ "[['Trust', 'have', 'blitzed', 'the', 'television', 'airwaves'], 'in', ['recent', 'days', 'with', 'ads', 'that', 'link']]\n",
+ "[['the', 'Reverend', 'Jeremiah', 'A.', 'Wright', 'Jr.,'], 'in', ['a', 'last-minute', 'effort', 'to', 'turn', 'voters']]\n",
+ "[['but', 'Obama', 'broke', 'off', 'the', 'relationship'], 'in', ['April', 'after', 'Wright', 'continued', 'making', 'controversial']]\n",
+ "[['campaign', 'will', 'not', 'use', 'Reverend', 'Wright'], 'in', ['advertising.', 'Our', 'campaign', 'will', 'win', 'on']]\n",
+ "[['candidate', 'that', 'chooses', 'to', 'use', 'these'], 'in', ['advertising.\"', 'The', 'National', 'Republican', 'Trust', 'has']]\n",
+ "[['ad', 'on', 'several', 'national', 'television', 'networks'], 'in', ['the', 'final', 'days', 'of', 'the', 'campaign.']]\n",
+ "[['campaign', 'or', 'the', 'Republican', 'Party,', 'said'], 'in', ['a', 'telephone', 'interview', 'that', 'he', 'is']]\n",
+ "[['by', 'the', 'Pennsylvania', 'GOP', 'is', 'running'], 'in', ['a', 'state', 'that', 'is', 'widely', 'considered']]\n",
+ "[['attention', 'since', 'it', 'was', 'widely', 'publicized'], 'in', ['advance', 'of', 'the', \"state's\", 'April', 'primary']]\n",
+ "[['with', 'for', 'many', 'years,\"', 'Gleason', 'said'], 'in', ['a', 'statement.', 'The', 'Pennsylvania', 'GOP', 'did']]\n",
+ "[['a', 'variety', 'of', 'perspectives', 'and', 'even'], 'in', ['languages', 'other', 'than', 'English,', 'with', 'coverage']]\n",
+ "[['are', 'offering', 'viewers', 'on', 'the', 'evening'], 'in', ['which', 'the', 'longest', 'presidential', 'campaign', 'in']]\n",
+ "[['in', 'which', 'the', 'longest', 'presidential', 'campaign'], 'in', ['history', 'comes', 'to', 'an', 'end', '(barring']]\n",
+ "[['no', 'doubt', 'be', 'a', 'partylike', 'atmosphere'], 'in', ['Times', 'Square', 'beginning', 'at', '4', 'p.m.']]\n",
+ "[['charting', 'the', 'results', 'for', 'those', 'gathering'], 'in', ['midtown', 'Manhattan.', 'Chuck', 'Todd', 'and', 'Andrea']]\n",
+ "[['to', 'report', 'any', 'difficulties', 'they', 'encounter'], 'in', ['their', 'precincts.', 'CBS', '(Channel', '2):', 'Katie']]\n",
+ "[['at', '11', 'p.m.', 'CNN:', '\"Election', 'Night'], 'in', ['America,\"', 'beginning', 'at', '3', 'p.m.,', 'will']]\n",
+ "[['CNN', 'promises', 'lots', 'of', 'high-tech', 'gadgets'], 'in', ['its', 'presentation', 'of', 'its', 'coverage.', 'Fox']]\n",
+ "[['Jorge', 'Gestoso,', 'will', 'also', 'provide', 'coverage'], 'in', ['Spanish,', 'beginning', 'at', '4', 'p.m.', 'Current']]\n",
+ "[['Viewers', 'will', 'be', 'able', 'to', 'participate'], 'in', [\"Current's\", 'election-night', 'coverage,', 'titled', '\"Current', 'Diggs']]\n",
+ "[['of', 'a', 'battle', 'pitting', 'many', 'combatants'], 'in', ['a', 'high-tech', 'dispute', 'over', 'precious', 'slices']]\n",
+ "[['Now', 'that', 'American', 'taxpayers', 'are', 'shareholders'], 'in', ['the', \"nation's\", 'largest', 'banks,', 'there', 'are']]\n",
+ "[['proposals', 'to', 'curb', 'pay.', 'Some', 'folks'], 'in', ['Washington', 'want', 'to', 'set', 'a', 'cap']]\n",
+ "[['with', 'a', 'fancy', 'formula', 'to', 'reign'], 'in', ['compensation.', 'By', 'Andrew', 'Ross', 'Sorkin.', '(Bottom']]\n",
+ "[['workers', 'scampered', 'from', 'office', 'to', 'office'], 'in', ['Halloween', 'costumes.', 'Minutes', 'later,', 'the', 'kids']]\n",
+ "[['billion', 'to', 'the', 'nine', 'largest', 'banks'], 'in', ['the', 'United', 'States.', 'It', 'is', 'new']]\n",
+ "[['middle)', 'AUTO-SALES', '(Detroit)', '--', 'Vehicle', 'sales'], 'in', ['the', 'United', 'States', 'tumbled', 'to', 'multi-decade']]\n",
+ "[['United', 'States', 'tumbled', 'to', 'multi-decade', 'lows'], 'in', ['October', 'as', 'tightened', 'credit', 'markets', 'and']]\n",
+ "[['Motors', 'reported', 'a', '45', 'percent', 'decline'], 'in', ['sales,', 'and', 'the', 'Ford', 'said', 'it']]\n",
+ "[['workers', 'scampered', 'from', 'office', 'to', 'office'], 'in', ['Halloween', 'costumes.', 'A', 'few', 'minutes', 'later,']]\n",
+ "[['billion', 'to', 'the', 'nine', 'largest', 'banks'], 'in', ['the', 'United', 'States.', 'Having', 'been', 'handed']]\n",
+ "[['vast', 'authority', 'and', 'almost', 'no', 'restrictions'], 'in', ['the', 'bailout', 'law', 'that', 'Congress', 'passed']]\n",
+ "[['of', 'transparency,', 'the', 'process', 'is', 'shrouded'], 'in', ['secrecy,', 'its', 'precise', 'goals', 'opaque.', 'Treasury']]\n",
+ "[['backdrop', 'of', 'a', 'change', 'of', 'power'], 'in', ['Washington,', 'which', 'will', 'throw', 'many', 'of']]\n",
+ "[['relatively', 'young', 'officials', '--', 'all', 'are'], 'in', ['their', '30s', 'or', '40s', '--', 'with']]\n",
+ "[['30s', 'or', '40s', '--', 'with', 'backgrounds'], 'in', ['law,', 'banking', 'or', 'regulation.', 'None', 'of']]\n",
+ "[['after', 'a', 'previous', 'appointee', 'was', 'kept'], 'in', ['his', 'old', 'job.', 'On', 'Friday', 'evening,']]\n",
+ "[['to', 'spend,', 'and', 'hundreds', 'of', 'banks'], 'in', ['line', 'for', 'it,', 'the', 'days,', 'nights']]\n",
+ "[['run', 'the', 'savings', 'and', 'loan', 'cleanup'], 'in', ['the', '1980s', 'and', '1990s.', 'Already,', 'critics']]\n",
+ "[['Secretary,', 'Henry', 'M.', 'Paulson', 'Jr.,', 'urged'], 'in', ['order', 'to', 'unclog', 'the', 'credit', 'markets.']]\n",
+ "[['National', 'City', 'Corp.,', 'an', 'ailing', 'bank'], 'in', ['Cleveland.', 'The', 'two', 'announced', 'a', 'merger']]\n",
+ "[['we', 'got', 'into', 'with', 'wage-price', 'controls'], 'in', ['the', '1970s.\"', 'Critics', 'also', 'say', 'that,']]\n",
+ "[['Treasury', \"doesn't\", 'understand', 'is', 'the', 'anger'], 'in', ['the', 'country', 'about', 'this,\"', 'said', 'Rep.']]\n",
+ "[['who', 'has', 'scheduled', 'oversight', 'hearings', 'later'], 'in', ['November,', 'warned', 'that', 'he', 'might', 'try']]\n",
+ "[['their', 'actions', 'might', 'speed', 'a', 'shakeout'], 'in', ['the', 'industry,', 'even', 'if', 'that', 'is']]\n",
+ "[['rejected', 'banks', 'did', 'not', 'suffer', 'damage'], 'in', ['the', 'markets.', 'Even', 'to', 'disclose', 'the']]\n",
+ "[['information.', 'They', 'also', 'analyze', 'the', 'market'], 'in', ['which', 'a', 'bank', 'operates,', 'looking', 'for']]\n",
+ "[['he', 'will', 'hand', 'out', 'more', 'money'], 'in', ['a', 'few', 'weeks', 'at', 'the', 'Treasury']]\n",
+ "[['win', 'approval', 'if', 'a', 'bank', 'participated'], 'in', ['the', 'capital', 'injection', 'program,', 'industry', 'executives']]\n",
+ "[['officer', 'of', 'the', 'program,', 'said', 'that,'], 'in', ['any', 'event,', 'Congress', 'had', 'put', 'in']]\n",
+ "[['in', 'any', 'event,', 'Congress', 'had', 'put'], 'in', ['place', 'layers', 'of', 'oversight.', 'Hammond', 'began']]\n",
+ "[['who', 'were', 'found', 'shot', 'to', 'death'], 'in', ['a', 'homeless', 'encampment', 'near', 'a', 'highway']]\n",
+ "[['woman.', 'All', 'five', 'were', 'found', 'clustered'], 'in', ['the', 'bushes,', 'sheltered', 'under', 'a', 'tarp.']]\n",
+ "[['such', 'multiple', 'killings', 'were', 'extremely', 'rare'], 'in', ['Long', 'Beach,', 'but', 'Andy', 'Bales', 'of']]\n",
+ "[['doused', 'with', 'gasoline', 'and', 'burned', 'alive'], 'in', ['Los', 'Angeles', 'three', 'weeks', 'ago.', 'No']]\n",
+ "[['ago.', 'No', 'arrests', 'have', 'been', 'made'], 'in', ['that', 'case', 'either.', '\"I', 'often', 'have']]\n",
+ "[['referring', 'to', 'a', \"witness'\", 'account', 'published'], 'in', ['The', 'Los', 'Angeles', 'Times', 'which', 'quoted']]\n",
+ "[['Angeles', 'Times', 'which', 'quoted', 'a', 'resident'], 'in', ['a', 'nearby', 'apartment', 'complex', 'who', 'heard']]\n",
+ "[['reported', '142', 'attacks', 'against', 'homeless', 'people'], 'in', ['2006,', 'compared', 'with', 'about', '60', 'in']]\n",
+ "[['in', '2006,', 'compared', 'with', 'about', '60'], 'in', ['1999.', 'Most', 'of', 'the', 'attackers', 'were']]\n",
+ "[['streets', 'and', 'into', 'housing.', 'Few', 'places'], 'in', ['Europe', 'have', 'prospered', 'in', 'recent', 'years']]\n",
+ "[['Few', 'places', 'in', 'Europe', 'have', 'prospered'], 'in', ['recent', 'years', 'like', 'this', 'bustling', 'crossroads']]\n",
+ "[['plant', 'here,', 'the', \"automaker's\", 'largest', 'factory'], 'in', ['Europe.', 'Braulio', 'and', 'his', 'wife,', 'recently']]\n",
+ "[['appeared', 'to', 'have', 'entered', 'a', 'recession'], 'in', ['the', 'third', 'quarter,', 'and', 'predicted', 'the']]\n",
+ "[['the', \"nation's\", 'first', 'quarterly', 'economic', 'contraction'], 'in', ['15', 'years.', 'Despite', 'highly', 'publicized', 'interest']]\n",
+ "[['and', 'more', 'than', 'a', 'trillion', 'euros'], 'in', ['loan', 'guarantees', 'and', 'capital', 'injections', 'by']]\n",
+ "[['get', 'worse.', 'European', 'consumer', 'confidence', 'plunged'], 'in', ['October,', 'hitting', 'its', 'lowest', 'point', 'in']]\n",
+ "[['in', 'October,', 'hitting', 'its', 'lowest', 'point'], 'in', ['15', 'years.', '\"It\\'s', 'come', 'very', 'suddenly,\"']]\n",
+ "[['one', 'of', 'the', 'largest', 'private', 'employers'], 'in', ['this', 'area.', '\"People', 'are', 'frightened', 'of']]\n",
+ "[['1,400.', 'But', 'the', 'slowdown', 'has', 'intensified'], 'in', ['recent', 'weeks,', 'with', 'sales', 'now', 'off']]\n",
+ "[['broader', 'economy.', 'First-time', 'home', 'buyers', 'are'], 'in', ['the', 'market', 'for', 'lots', 'of', 'new']]\n",
+ "[['predators.\"The', 'pain', 'did', 'not', 'hit', 'home'], 'in', ['Zaragoza', 'until', 'General', 'Motors', 'announced', 'just']]\n",
+ "[['was', 'one', 'of', 'seven', 'GM', 'plants'], 'in', ['Europe', 'to', 'go', 'on', 'hiatus', 'in']]\n",
+ "[['in', 'Europe', 'to', 'go', 'on', 'hiatus'], 'in', ['October.', 'As', 'recently', 'as', 'this', 'past']]\n",
+ "[['produce', 'enough', 'cars.', 'The', 'overtime', 'disappeared'], 'in', ['the', 'summer,', 'but', 'there', 'was', 'little']]\n",
+ "[['earnings', 'forecast', 'by', '1', 'billion', 'euros'], 'in', ['late', 'October,', 'while', 'Renault', 'and', 'Fiat']]\n",
+ "[['for', 'a', 'quarter,\"', 'Rytwinski', 'said.', '\"Then'], 'in', ['the', 'summer,', 'for', 'about', 'a', 'month.']]\n",
+ "[['Spanish', 'cities,', 'as', 'well', 'as', 'Toulouse'], 'in', ['France,', \"GM's\", 'arrival', 'spurred', 'the', 'opening']]\n",
+ "[['manufacturers.', 'The', 'area', 'received', 'another', 'shot'], 'in', ['the', 'arm', 'four', 'years', 'ago', 'when']]\n",
+ "[['as', 'troubles', 'were', 'growing', 'elsewhere.', '\"People'], 'in', ['their', '20s', 'and', 'early', '30s', 'have']]\n",
+ "[['very', 'hard', 'people,\"', 'he', 'said.', 'But'], 'in', ['recent', 'years,', 'he', 'said', 'shaking', 'of']]\n",
+ "[['100', 'percent.\"', 'With', 'the', 'expansion,', 'joblessness'], 'in', ['Zaragoza', 'and', 'the', 'surrounding', 'Aragon', 'region']]\n",
+ "[['of', 'the', 'year,', 'with', 'no', 'improvement'], 'in', ['2009.', 'While', 'younger', 'workers', 'like', 'Braulio']]\n",
+ "[['co-author', 'of', 'the', 'forthcoming', 'guide', '\"Life'], 'in', ['Color:', 'The', 'Visual', 'Therapy', 'Guide', 'to']]\n",
+ "[['the', 'person', 'is.\"', \"That's\", 'where', '\"Life'], 'in', ['Color\"', 'comes', 'in.', 'The', 'book', 'reveals']]\n",
+ "[['their', 'celebrity', 'clientele', 'at', 'Visual', 'Therapy'], 'in', ['New', 'York.', 'With', 'the', 'help', 'of']]\n",
+ "[['\"El', 'Diego\"', 'himself', 'starred', 'for', 'them'], 'in', ['1986', 'and', '1990.', 'After', 'retiring', '11']]\n",
+ "[['11', 'years', 'ago,', 'Maradona', 'has', 'remained'], 'in', ['the', 'spotlight', 'primarily', 'as', 'the', \"country's\"]]\n",
+ "[['--', 'much-slimmed', 'after', 'a', 'stomach-stapling', 'operation'], 'in', ['2005', '--', 'of', 'a', 'man', 'who,']]\n",
+ "[['2005', '--', 'of', 'a', 'man', 'who,'], 'in', ['the', 'words', 'of', 'the', 'local', 'newspaper']]\n",
+ "[['will', 'be', '\"the', 'least', 'prepared', 'manager'], 'in', ['the', 'history', 'of', 'international', 'soccer.\"', 'Given']]\n",
+ "[['was', 'sent', 'home', 'early', 'by', 'Romania'], 'in', ['1994,', 'the', 'Netherlands', 'in', '1998', 'and']]\n",
+ "[['by', 'Romania', 'in', '1994,', 'the', 'Netherlands'], 'in', ['1998', 'and', 'Germany', 'in', '2006,', 'while']]\n",
+ "[['the', 'Netherlands', 'in', '1998', 'and', 'Germany'], 'in', ['2006,', 'while', 'in', '2002', 'it', 'failed']]\n",
+ "[['1998', 'and', 'Germany', 'in', '2006,', 'while'], 'in', ['2002', 'it', 'failed', 'to', 'qualify', 'for']]\n",
+ "[['Argentine', 'teams', 'to', 'just', 'three', 'wins'], 'in', ['23', 'games,', 'and', 'he', 'was', 'once']]\n",
+ "[['to', 'keep', 'a', '23-man', 'team', 'playing'], 'in', ['lockstep:', 'As', 'recently', 'as', 'March', '2007,']]\n",
+ "[['personal', 'fiefdom.', 'Over', 'his', '29', 'years'], 'in', ['office,', 'he', 'has', 'regularly', 'been', 'accused']]\n",
+ "[['popular', 'club,', 'for', 'whom', 'Maradona', 'played'], 'in', ['1981-82', 'and', '1995-97', '--', 'Bianchi', 'won']]\n",
+ "[['team', 'to', 'the', 'Olympic', 'gold', 'medal'], 'in', ['Beijing,', 'was', 'also', 'passed', 'over.', 'Meanwhile,']]\n",
+ "[['a', 'Nov.', '19', 'date', 'against', 'Scotland'], 'in', ['Glasgow,', 'have', 'sold', 'briskly.', 'Public', 'opinion,']]\n",
+ "[['said', 'Oscar', 'Pereira,', 'a', 'union', 'employee'], 'in', ['the', 'stands', 'at', 'a', 'local', 'league']]\n",
+ "[['share', 'a', 'concern', 'for', \"Maradona's\", 'well-being'], 'in', ['his', 'new', 'role', '--', 'perhaps', 'one']]\n",
+ "[[\"Obama's\", 'grandmother,', 'died', 'late', 'Sunday', 'evening'], 'in', ['Hawaii', 'after', 'battling', 'cancer,', 'which', 'Obama']]\n",
+ "[['campaign', 'rally', 'here.', '\"She', 'died', 'peacefully'], 'in', ['her', 'sleep', 'with', 'my', 'sister', 'at']]\n",
+ "[['carried', 'through', 'with', 'a', 'morning', 'rally'], 'in', ['Florida', 'without', 'making', 'an', 'announcement.', 'A']]\n",
+ "[['statement', 'was', 'issued', 'by', 'the', 'campaign,'], 'in', [\"Obama's\", 'name,', 'before', 'he', 'spoke', 'at']]\n",
+ "[['he', 'spoke', 'at', 'a', 'late-afternoon', 'rally'], 'in', ['Charlotte.', 'Dunham', 'was', 'the', 'final', 'remaining']]\n",
+ "[['raise', 'Obama', 'during', 'his', 'teenage', 'years'], 'in', ['Hawaii.', 'He', 'called', 'her', 'Toot,', 'his']]\n",
+ "[['broke', 'from', 'the', 'presidential', 'campaign', 'trail'], 'in', ['late', 'October', 'to', 'travel', 'to', 'Honolulu']]\n",
+ "[['her,', 'as', 'she', 'lay', 'gravely', 'ill'], 'in', ['the', 'small', 'apartment', 'where', 'he', 'lived']]\n",
+ "[['television.', 'Yet', 'she', 'became', 'a', 'figure'], 'in', ['his', 'campaign,', 'seen', 'through', 'images', 'in']]\n",
+ "[['in', 'his', 'campaign,', 'seen', 'through', 'images'], 'in', ['television', 'commercials', 'intended', 'to', 'give', 'him']]\n",
+ "[['on', 'B-29s', 'at', 'a', 'Boeing', 'plant'], 'in', ['Wichita.', 'For', 'Obama,', 'the', 'loss', 'came']]\n",
+ "[['who', 'had', 'such', 'a', 'profound', 'impact'], 'in', ['their', 'lives.\"', 'His', \"grandmother's\", 'illness', 'had']]\n",
+ "[['illness', 'had', 'been', 'weighing', 'on', 'him'], 'in', ['recent', 'weeks,', 'friends', 'said,', 'which', 'is']]\n",
+ "[['not', 'famous.', \"They're\", 'names', 'are', 'not'], 'in', ['the', 'newspapers,', 'but', 'each', 'and', 'every']]\n",
+ "[[\"isn't\", 'the', 'only', 'beleaguered', 'head', 'coach'], 'in', ['the', 'Sunday', 'football', 'league.', 'His', 'protege,']]\n",
+ "[['Kubiak,', \"isn't\", 'exactly', 'tearing', 'it', 'up'], 'in', ['Texas.', 'John', 'McClain', 'of', 'the', 'Houston']]\n",
+ "[['Minnesota', 'as', 'follows:', '\"Look', 'up', 'roadkill'], 'in', ['the', 'dictionary', 'and', 'you', 'know', 'which']]\n",
+ "[['That', 'would', 'be', 'the', 'Local', '11'], 'in', ['Houston.', 'The', 'Texans', 'have', 'shown', 'flashes']]\n",
+ "[['see', 'that', 'Kubiak', 'has', 'made', 'progress'], 'in', ['the', 'two-plus', 'seasons', 'since', 'he', 'left']]\n",
+ "[['his', 'jersey.', 'His', 'name', 'is', 'written'], 'in', ['pencil.\"', 'Give', 'the', 'Lions', 'one', 'thing.']]\n",
+ "[['one', 'thing.', \"They've\", 'been', 'downright', 'competitive'], 'in', ['recent', 'weeks.', 'They', 'scored', '23', 'points']]\n",
+ "[['recent', 'weeks.', 'They', 'scored', '23', 'points'], 'in', ['the', 'second', 'quarter', 'at', 'Chicago,', 'two']]\n",
+ "[['two', 'more', 'than', 'they', 'had', 'scored'], 'in', ['any', 'of', 'their', 'previous', 'four', 'roadies.']]\n",
+ "[['Johnson', 'under', 'center:', '\"I\\'m', 'disappointed,', 'certainly,'], 'in', ['the', 'way', 'Brad', 'has', 'played,', 'but']]\n",
+ "[['Brad', 'has', 'played,', 'but', 'more', 'so'], 'in', ['the', 'guys', 'who', \"aren't\", '40.\"', '...']]\n",
+ "[['low-cost', 'airline,', 'reported', 'a', 'sharp', 'drop'], 'in', ['first-half', 'profit', 'Monday,', 'citing', 'higher', 'fuel']]\n",
+ "[['for', 'half', 'of', \"Ryanair's\", 'operating', 'costs'], 'in', ['the', 'six', 'months', 'to', 'Sept.', '30']]\n",
+ "[['write-offs', 'for', 'a', '29', 'percent', 'stake'], 'in', ['the', 'Irish', 'flag', 'carrier', 'Aer', 'Lingus,']]\n",
+ "[['Aer', 'Lingus,', 'whose', 'value', 'has', 'deteriorated'], 'in', ['the', 'last', 'two', 'years,', 'as', 'well']]\n",
+ "[['two', 'years,', 'as', 'well', 'as', 'depreciation'], 'in', ['the', 'value', 'of', 'aircraft', 'Ryanair', 'intends']]\n",
+ "[['aircraft', 'Ryanair', 'intends', 'to', 'sell.', 'Earnings'], 'in', ['the', 'six-month', 'period', 'fell', '77', 'percent,']]\n",
+ "[['million)', 'compared', 'with', '407.6', 'million', 'euros'], 'in', ['the', 'period', 'a', 'year', 'earlier.', 'Revenue']]\n",
+ "[['1.81', 'billion', 'euros,', 'from', '1.5', 'billion'], 'in', ['the', 'year-ago', 'period.', 'Low-cost', 'and', 'traditional']]\n",
+ "[['executive,', 'said', 'that', 'profit', 'would', 'rebound'], 'in', ['2009', 'if', 'oil', 'prices', 'remained', 'at']]\n",
+ "[['company', 'had', 'little', 'oil', 'price', 'hedging'], 'in', ['place', 'also', 'buoyed', 'the', 'stock,', 'which']]\n",
+ "[['buoyed', 'the', 'stock,', 'which', 'closed', 'Monday'], 'in', ['Dublin', 'at', '2.83', 'euros,', 'up', '8']]\n",
+ "[['than', 'current', 'market', 'prices,\"', 'Ryanair', 'said'], 'in', ['a', 'statement.', '\"This', 'will', 'force', 'competitors']]\n",
+ "[['the', 'idea', 'of', 'discount', 'trans-Atlantic', 'service'], 'in', ['April,', 'before', 'oil', 'prices', 'rose.', 'He']]\n",
+ "[['fees.', 'Airports', 'that', 'could', 'be', 'used'], 'in', ['Europe', 'include', 'Stansted', 'outside', 'London,', 'as']]\n",
+ "[['New', 'York,', 'Dallas,', 'Denver', 'and', 'cities'], 'in', ['Florida,', 'a', 'Ryanair', 'spokeswoman,', 'Pauline', 'McAlester,']]\n",
+ "[[\"country's\", 'embattled', 'minorities', 'fewer', 'guaranteed', 'seats'], 'in', ['upcoming', 'elections', 'than', 'the', 'United', 'Nations']]\n",
+ "[['a', 'law', 'on', 'provincial', 'elections', 'but,'], 'in', ['a', 'controversial', 'action,', 'deleted', 'from', 'it']]\n",
+ "[['wounded', 'when', 'two', 'roadside', 'bombs', 'exploded'], 'in', ['quick', 'succession', 'in', 'front', 'of', 'the']]\n",
+ "[['roadside', 'bombs', 'exploded', 'in', 'quick', 'succession'], 'in', ['front', 'of', 'the', 'headquarters', 'of', 'the']]\n",
+ "[['Ministry', 'of', \"Interior's\", 'criminal', 'investigations', 'unit'], 'in', [\"Baghdad's\", 'central', 'Karada', 'district,', 'according', 'to']]\n",
+ "[['media.', 'The', 'deadlier', 'bomb', 'was', 'planted'], 'in', ['front', 'of', 'the', 'protective', 'concrete', 'wall']]\n",
+ "[['his', 'driver,', 'when', 'a', 'bomb', 'planted'], 'in', ['his', 'car', 'exploded,', 'according', 'to', 'a']]\n",
+ "[['into', 'the', 'car', 'at', 'his', 'home'], 'in', ['the', 'northern', 'Baghdad', 'neighborhood', 'of', 'Atafiya']]\n",
+ "[['violence,', 'a', 'huge', 'car', 'bomb', 'exploded'], 'in', ['a', 'parking', 'lot', 'next', 'to', 'the']]\n",
+ "[['the', 'headquarters', 'of', 'the', 'local', 'government'], 'in', ['Baqouba', 'in', 'Diyala', 'province,', 'killing', 'at']]\n",
+ "[['of', 'the', 'local', 'government', 'in', 'Baqouba'], 'in', ['Diyala', 'province,', 'killing', 'at', 'least', 'three']]\n",
+ "[['attack', 'was', 'proof', 'that', 'the', 'situation'], 'in', ['the', 'province', 'remained', '\"fragile\"', 'and', 'that']]\n",
+ "[['the', \"government's\", 'lauded', 'recent', 'security', 'operation'], 'in', ['Diyala', 'had', '\"only', 'accomplished', 'a', 'fraction']]\n",
+ "[['goals.\"', 'Fourteen', 'other', 'people', 'were', 'wounded'], 'in', ['four', 'other', 'bombing', 'attacks', 'in', 'Baghdad,']]\n",
+ "[['wounded', 'in', 'four', 'other', 'bombing', 'attacks'], 'in', ['Baghdad,', 'according', 'to', 'the', 'official', 'of']]\n",
+ "[['killed', 'and', 'five', 'other', 'people', 'wounded'], 'in', ['a', 'roadside', 'bombing', 'aimed', 'at', 'a']]\n",
+ "[['should', 'pledge', 'to', 'end', 'gender', 'discrimination'], 'in', ['health', 'insurance', 'for', 'women.', 'In', 'a']]\n",
+ "[['and', 'middle-aged', '-', 'pay', 'dramatically', 'more'], 'in', ['most', 'states', 'for', 'individual', 'health', 'insurance']]\n",
+ "[['status.', 'According', 'to', 'the', 'report,', 'insurers'], 'in', ['nine', 'states', 'and', 'the', 'District', 'of']]\n",
+ "[['simply', 'for', 'having', 'undergone', 'caesarean', 'sections'], 'in', ['the', 'past.', 'The', 'severity', 'of', 'the']]\n",
+ "[['Refreshingly,', 'the', 'rules', 'are', 'more', 'equitable'], 'in', ['most', 'of', 'New', 'England.', 'Massachusetts,', 'Maine,']]\n",
+ "[['prohibit', 'or', 'significantly', 'limit', 'gender', 'discrimination'], 'in', ['the', 'issuance', 'of', 'individual', 'policies.', 'The']]\n",
+ "[['are', 'largely', 'protected', 'from', 'gender', 'discrimination'], 'in', ['health', 'insurance,', 'as', 'they', 'get', 'it']]\n",
+ "[['and', 'this', 'difference', 'is', 'most', 'pronounced'], 'in', ['young', 'adults.\"', 'Noland', 'went', 'on', 'to']]\n",
+ "[['children', 'increases', 'other', 'health', 'risks', 'later'], 'in', ['life,', 'such', 'as', 'urinary', 'incontinence,', 'which']]\n",
+ "[['men', 'who', 'wish', 'away', 'the', 'pain'], 'in', ['their', 'chests', 'until', 'the', 'surgeon', 'is']]\n",
+ "[['the', 'surgeon', 'is', 'cutting', 'them', 'open'], 'in', ['the', 'operating', 'room.', 'The', 'president', 'of']]\n",
+ "[['would', 'be', 'worth', 'less', 'to', 'women'], 'in', ['most', 'of', 'the', 'states.', 'Ending', 'gender']]\n",
+ "[['he', 'takes', 'them', 'and', \"women's\", 'issues'], 'in', ['general', 'seriously.', 'Obama', 'says', 'he', 'understands']]\n",
+ "[['jackson@globe.com.', 'SENIOR', 'TIBETAN', 'envoys', 'have', 'been'], 'in', ['China', 'since', 'Thursday', 'for', 'what', 'could']]\n",
+ "[['appalled', 'at', 'being', 'an', 'oppressed', 'minority'], 'in', ['their', 'own', 'land,', 'cannot', 'be', 'counted']]\n",
+ "[['importance,', 'its', 'leadership', 'cannot', 'be', 'enmeshed'], 'in', ['a', 'chronic', 'conflict', 'over', 'Tibet.', 'After']]\n",
+ "[['Dalai', 'Lama', 'has', 'called', 'for', 'mid-November'], 'in', ['India.', 'If', 'not,', 'the', 'Tibetans', 'will']]\n",
+ "[['next', 'US', 'president', 'will', 'be', 'acting'], 'in', ['the', 'interest', 'of', 'China', 'as', 'well']]\n",
+ "[['are', 'two', 'of', 'the', 'many', 'combatants'], 'in', ['a', 'high-technology', 'dispute', 'over', 'precious', 'slices']]\n",
+ "[['up', 'would', 'encourage', 'innovation', 'and', 'investment'], 'in', ['much', 'the', 'same', 'way', 'that', 'the']]\n",
+ "[['Hillary', 'Rodham', 'Clinton,', 'D-N.Y.,', 'and', 'others'], 'in', ['Congress.', 'Also', 'opposed', 'are', 'the', 'professional']]\n",
+ "[['chaos', 'could', 'reign', 'on', 'Broadway', '--'], 'in', ['the', 'form', 'of', 'static', 'and', 'other']]\n",
+ "[['people', 'may', 'be', 'immeasurable,\"', 'Parton', 'wrote'], 'in', ['a', 'letter', 'last', 'month', 'to', 'the']]\n",
+ "[['off', 'licenses', 'for', 'its', 'use', '--'], 'in', ['some', 'cases', 'for', 'billions', 'of', 'dollars']]\n",
+ "[['dollars', '--', 'to', 'private', 'companies.', 'But'], 'in', ['this', 'case', 'it', 'is', 'considering', 'setting']]\n",
+ "[['a', 'byproduct', 'of', 'an', 'impending', 'change'], 'in', ['the', 'way', 'over-the-air', 'TV', 'signals', 'are']]\n",
+ "[['to', 'several', 'people', 'who', 'were', 'involved'], 'in', ['the', \"agency's\", 'internal', 'discussions', 'but', 'who']]\n",
+ "[['surface', 'of', 'the', 'debate', 'are', 'shifts'], 'in', ['politics', 'and', 'culture.', 'Heavy', 'Internet', 'and']]\n",
+ "[['with', 'the', '450', 'wireless', 'microphones', 'used'], 'in', ['New', \"York's\", 'theater', 'district.', 'That', 'could']]\n",
+ "[['longest,', 'most', 'expensive,', 'and', 'riveting', 'campaign'], 'in', ['living', 'memory', 'is', 'finally', 'over.', 'It']]\n",
+ "[['been', 'an', 'international', 'cliff-hanger,', 'with', 'people'], 'in', ['Europe,', 'Africa,', 'and', 'Asia', 'following', 'every']]\n",
+ "[['and', 'turn', 'as', 'avidly', 'as', 'anyone'], 'in', ['the', 'United', 'States.', 'For', 'even', 'though']]\n",
+ "[['before.', 'And', 'John', 'McCain,', 'his', 'campaign'], 'in', ['tatters', 'and', 'out', 'of', 'money', 'in']]\n",
+ "[['in', 'tatters', 'and', 'out', 'of', 'money'], 'in', ['New', 'Hampshire,', 'prevailing', 'over', 'the', 'deep{ndash}pocketed']]\n",
+ "[['on', 'what', 'our', 'new', 'president', 'faces'], 'in', ['his', 'first', 'term.', 'Pundits', 'are', 'saying']]\n",
+ "[['the', 'breaking', 'point,', 'and', 'an', 'economy'], 'in', ['shambles', 'limit', 'the', 'ability', 'of', 'a']]\n",
+ "[['real', 'change', 'can', 'only', 'be', 'found'], 'in', ['drink', 'during', 'the', '\"change', 'you', 'can']]\n",
+ "[['during', 'the', '\"change', 'you', 'can', 'believe'], 'in', ['hour\"', 'at', 'your', 'local', 'bar.', 'Looking']]\n",
+ "[['to', 'admit', 'even', 'to', 'an', 'insurgency'], 'in', ['Iraq.', 'How', 'slow', 'it', 'was', 'to']]\n",
+ "[['that', 'he', 'has', '77', 'days', 'left'], 'in', ['power,', 'enough', 'time', 'to', 'do', 'a']]\n",
+ "[['to', 'be', 'manipulated', 'and', 'lied', 'to'], 'in', ['the', 'interest', 'of', 'unrestricted', 'executive', 'power.']]\n",
+ "[['neoconservative', 'hawks', 'that', 'held', 'such', 'sway'], 'in', [\"Bush's\", 'first', 'administration', 'are', 'now', 'in']]\n",
+ "[['in', \"Bush's\", 'first', 'administration', 'are', 'now'], 'in', ['eclipse.', 'Bush', 'and', 'Cheney', 'might', 'give']]\n",
+ "[['of', 'an', 'attack,', 'the', 'political', 'fallout'], 'in', ['the', 'Middle', 'East', 'and', 'around', 'the']]\n",
+ "[['bomb.', 'To', 'bring', 'about', 'real', 'change'], 'in', ['the', 'world,', 'the', 'new', 'president', 'will']]\n",
+ "[['for', 'long', '((is))', 'force', 'strange', 'people'], 'in', ['distant', 'places', 'to', 'reshape', 'their', 'politics']]\n",
+ "[['as', 'nation-building', 'at', 'the', 'outset,', 'but'], 'in', ['the', 'long', 'run', 'counterinsurgency', 'always', 'comes']]\n",
+ "[['away.\"', 'H.D.S.', \"Greenway's\", 'column', 'appears', 'regularly'], 'in', ['the', 'Globe.', 'EVEN', 'IN', 'the', 'decidedly']]\n",
+ "[['polls', 'Tuesday,', 'and', 'review', 'our', 'endorsements'], 'in', ['key', 'races:', 'For', 'president', 'and', 'vice']]\n",
+ "[['Hampshire,', 'we', 'support', 'Democrat', 'Jeanne', 'Shaheen'], 'in', ['her', 'bid', 'for', 'US', 'Senate.', 'In']]\n",
+ "[['urge', 'votes', 'for', 'Democrats', 'Barney', 'Frank'], 'in', ['the', 'Fourth', 'District', '-', 'a', 'smart']]\n",
+ "[['-', 'a', 'smart', 'and', 'steady', 'hand'], 'in', ['the', 'current', 'financial', 'crisis', '-', 'and']]\n",
+ "[['crisis', '-', 'and', 'John', 'F.', 'Tierney'], 'in', ['the', 'Sixth,', 'Edward', 'J.', 'Markey', 'in']]\n",
+ "[['in', 'the', 'Sixth,', 'Edward', 'J.', 'Markey'], 'in', ['the', 'Seventh', 'and', 'John', 'W.', 'Olver']]\n",
+ "[['the', 'Seventh', 'and', 'John', 'W.', 'Olver'], 'in', ['the', 'First', 'District.', 'In', 'the', 'Legislature,']]\n",
+ "[['In', 'the', 'Legislature,', 'we', 'took', 'sides'], 'in', ['10', 'selected', 'races.', 'In', 'the', 'Second']]\n",
+ "[['races.', 'In', 'the', 'Second', 'Suffolk', 'District'], 'in', ['Boston,', 'we', 'endorse', 'Sonia', 'Rosa', 'Chang-Diaz']]\n",
+ "[['elevation', 'to', 'a', 'Senate', 'seat.', 'And'], 'in', ['the', 'Norfolk,', 'Bristol,', 'and', 'Middlesex', 'District,']]\n",
+ "[['three', 'lively', 'races', 'for', 'open', 'seats'], 'in', ['the', 'Massachusetts', 'House.', 'We', 'choose', 'Democrats']]\n",
+ "[['House.', 'We', 'choose', 'Democrats', 'Kate', 'Hogan'], 'in', ['the', 'Third', 'Middlesex', 'District', '(Hudson,', 'Stow,']]\n",
+ "[['Maynard,', 'and', 'Bolton);', 'Jason', 'M.', 'Lewis'], 'in', ['the', '31st', 'Middlesex', 'District', '(Winchester', 'and']]\n",
+ "[['and', 'Stoneham),', 'and', 'Carolyn', 'C.', 'Dykema'], 'in', ['the', 'Eighth', 'Middlesex', 'District', '(Holliston', 'and']]\n",
+ "[['Middlesex', 'District', '(Holliston', 'and', 'Hopkinton).', 'Elsewhere'], 'in', ['the', 'state', 'we', 'support', 'House', 'minority']]\n",
+ "[['Jr.', 'of', 'North', 'Reading', 'for', 'reelection'], 'in', ['the', '20th', 'Middlesex', 'District,', 'and', 'Republican']]\n",
+ "[['Republican', 'Bradford', 'R.', 'Hill', 'of', 'Ipswich'], 'in', ['the', 'Fourth', 'Essex', 'District.', 'Also', 'for']]\n",
+ "[['Barbara', 'A.', \"L'Italien,\", 'Democrat', 'of', 'Andover,'], 'in', ['the', '18th', 'Essex', 'District,', 'and', 'Thomas']]\n",
+ "[['Conroy,', 'Democrat', 'of', 'Wayland,', 'who', 'is'], 'in', ['a', 'rematch', 'for', 'his', '13th', 'Middlesex']]\n",
+ "[['is', 'the', 'wrong', 'answer', 'to', 'flaws'], 'in', ['the', 'system.', 'The', 'proposal', 'to', 'ban']]\n",
+ "[['The', 'proposal', 'to', 'ban', 'dog', 'racing'], 'in', ['Massachusetts', 'is', 'a', 'closer', 'call,', 'but']]\n",
+ "[['to', 'adhere', 'to', 'the', 'Geneva', 'Conventions'], 'in', ['the', 'handling', 'of', 'war', 'on', 'terror']]\n",
+ "[['prisoners', 'the', 'rights', 'denied', 'by', 'Congress'], 'in', ['2006.', 'That', 'is', 'why', 'it', 'would']]\n",
+ "[['already', 'ruled', 'that', 'Congress', 'acted', 'unconstitutionally'], 'in', ['stripping', 'prisoners', 'of', 'their', 'habeas', 'corpus']]\n",
+ "[['any', 'criminal', 'offense.', 'Federal', 'criminal', 'courts'], 'in', ['the', 'United', 'States,', 'on', 'the', 'other']]\n",
+ "[['early', 'promise', 'of', 'those', 'days', 'frayed'], 'in', ['recent', 'years,', 'but', 'economically', 'times', 'were']]\n",
+ "[['former', 'political', 'allies,', 'are', 'now', 'locked'], 'in', ['a', 'bitter', 'power', 'struggle', 'that', 'has']]\n",
+ "[['is', 'a', 'crime', 'to', 'conduct', 'elections'], 'in', ['this', 'situation,\"', 'said', 'Yulia', 'Mostova,', 'editor']]\n",
+ "[['this', 'situation,\"', 'said', 'Yulia', 'Mostova,', 'editor'], 'in', ['chief', 'of', 'Dzerkalo', 'Tyzhnya,', 'a', 'weekly']]\n",
+ "[['Dzerkalo', 'Tyzhnya,', 'a', 'weekly', 'newspaper', 'published'], 'in', ['Kiev.', '\"The', 'chain', 'of', 'authority', 'in']]\n",
+ "[['in', 'Kiev.', '\"The', 'chain', 'of', 'authority'], 'in', ['Ukraine', 'is', 'broken.', \"It's\", 'at', 'war']]\n",
+ "[['is', 'a', 'country', 'of', '46', 'million'], 'in', ['a', 'strategic', 'spot', 'between', 'European', 'Union']]\n",
+ "[['willingness', 'to', 'settle', 'disputes', 'by', 'force'], 'in', ['Georgia', 'this', 'summer.', 'He', 'has', 'pushed']]\n",
+ "[[\"Russia's\", 'Black', 'Sea', 'fleet', 'to', 'dock'], 'in', ['a', 'Ukrainian', 'port.', 'On', 'Saturday,', 'a']]\n",
+ "[['lowest', 'point', 'since', 'it', 'was', 'introduced'], 'in', ['1996,', 'and', 'securities', 'that', 'insure', 'Ukrainian']]\n",
+ "[['of', 'industrial', 'metals,', 'which', 'have', 'plunged'], 'in', ['price', 'in', 'recent', 'weeks.', 'And', 'while']]\n",
+ "[['metals,', 'which', 'have', 'plunged', 'in', 'price'], 'in', ['recent', 'weeks.', 'And', 'while', 'its', 'government']]\n",
+ "[['not,', 'having', 'taken', 'billions', 'of', 'dollars'], 'in', ['foreign', 'currency', 'loans.', 'With', 'global', 'credit']]\n",
+ "[['Despite', 'the', 'turmoil,', \"Yushchenko's\", 'main', 'focus'], 'in', ['recent', 'weeks', 'has', 'been', 'on', 'attacking']]\n",
+ "[['prime', 'minister', 'for', 'the', 'second', 'time'], 'in', ['December.', 'She', 'accused', 'him', 'of', 'commandeering']]\n",
+ "[['off', 'on', 'a', 'trip', 'to', 'Russia'], 'in', ['October,', 'an', 'allegation', 'he', 'denied.', 'And']]\n",
+ "[['he', 'denied.', 'And', 'when', 'a', 'judge'], 'in', ['Kiev', 'ruled', 'that', 'the', \"president's\", 'decree']]\n",
+ "[['at', 'a', 'research', 'and', 'polling', 'center'], 'in', ['Kiev,', 'citing', 'as', 'evidence', \"Yushchenko's\", 'visit']]\n",
+ "[['industry', 'executive', 'whose', 'head', 'is', 'wreathed'], 'in', ['a', 'signature', 'blond', 'plait,', 'is', \"Ukraine's\"]]\n",
+ "[['banker', 'whose', 'own', 'popularity', 'has', 'plunged'], 'in', ['recent', 'years,', 'has', 'lashed', 'out.', 'There']]\n",
+ "[['even', 'hints', 'of', 'the', 'political', 'fight'], 'in', [\"Yushchenko's\", 'infamous', 'poisoning', 'episode,', 'which', 'left']]\n",
+ "[['left', 'his', 'face', 'pockmarked', 'and', 'ravaged'], 'in', ['2004:', 'A', 'lineup', 'of', 'his', 'political']]\n",
+ "[['his', 'political', 'opponents', 'have', 'been', 'called'], 'in', ['for', 'questioning', 'in', 'the', 'case.', 'Tymoshenko']]\n",
+ "[['have', 'been', 'called', 'in', 'for', 'questioning'], 'in', ['the', 'case.', 'Tymoshenko', 'came', 'from', \"Ukraine's\"]]\n",
+ "[['wits', 'and', 'bare', 'knuckles', 'made', 'fortunes'], 'in', ['the', '1990s,', 'under', 'the', 'corrupt', 'government']]\n",
+ "[['and', 'Yushchenko', 'rose', 'up', 'against', 'Kuchma'], 'in', ['2004', 'with', 'the', 'motto,', '\"bandits', 'to']]\n",
+ "[['student', 'movement', 'against', 'the', 'Soviet', 'regime'], 'in', ['1990,', 'compared', \"Ukraine's\", 'first', 'generation', 'businessmen']]\n",
+ "[['collective', 'action', 'that', 'holds', 'governments', 'accountable'], 'in', ['developed', 'countries.', '\"We', 'trust', 'our', 'brother,']]\n",
+ "[['their', 'backbones,\"', 'Mostova', 'said.', '\"They', 'cried'], 'in', ['front', 'of', 'strangers.\"', 'But', 'after', 'the']]\n",
+ "[['with', 'the', 'tumultuous', 'late', '18th', 'century'], 'in', ['the', 'United', 'States,', 'during', 'the', 'ratification']]\n",
+ "[['Financial', 'turmoil', 'has', 'swept', 'out', 'governments'], 'in', ['Indonesia,', 'Turkey', 'and', 'Russia', 'in', 'recent']]\n",
+ "[['governments', 'in', 'Indonesia,', 'Turkey', 'and', 'Russia'], 'in', ['recent', 'history,', 'and', 'even,', 'many', 'argue,']]\n",
+ "[['addressing', 'the', 'other', 'political', 'leaders', 'seated'], 'in', ['the', 'studio.', '\"Be', 'a', 'team', 'in']]\n",
+ "[['in', 'the', 'studio.', '\"Be', 'a', 'team'], 'in', ['the', 'face', 'of', 'this', 'big', 'global']]\n",
+ "[['the', 'start', 'of', 'a', 'new', 'era'], 'in', ['American', 'public', 'life.', 'But', 'for', 'everyone']]\n",
+ "[['to', 'a', 'public', \"that's\", 'been', 'immersed'], 'in', ['an', 'historic', 'and', 'closely', 'monitored', 'campaign']]\n",
+ "[['exhausting', 'story', 'line.', 'Is', 'the', 'country'], 'in', ['for', 'an', 'emotional', 'and', 'psychological', 'letdown']]\n",
+ "[['has', 'arrived?', '\"This', 'year,', 'more', 'than'], 'in', ['a', 'very', 'long', 'time,', 'come', 'the']]\n",
+ "[['the', 'entire', 'nation', 'has', 'woken', 'up'], 'in', ['a', 'collective', 'political', 'equivalent', 'of', 'Dec.']]\n",
+ "[['that', '\"gave', 'everyone', 'a', 'life-and-death', 'stake'], 'in', ['the', 'outcome\"', 'and', 'the', 'heightened', 'proliferation']]\n",
+ "[['the', 'inauguration', 'of', 'a', 'new', 'president'], 'in', ['January', 'might', 'feel', 'like', '\"those', 'times']]\n",
+ "[['But', 'it', 'will', 'pick', 'up', 'again'], 'in', ['January.', 'That', 'should', 'bring', 'back', 'some']]\n",
+ "[['ceremony.\"', 'Elissa', 'Epel,', 'an', 'associate', 'professor'], 'in', ['the', 'psychiatry', 'department', 'at', 'the', 'University']]\n",
+ "[['the', 'news', 'each', 'day,\"', 'she', 'said'], 'in', ['an', 'e-mail', 'interview,', 'likening', 'the', 'draw']]\n",
+ "[['of', 'that,', 'said', 'Epel,', 'could', '\"bring'], 'in', ['nuances', 'of', '\\'letdown.\"\\'', 'But', 'she', 'also']]\n",
+ "[['better.', 'We', 'may', 'notice', 'we', 'are'], 'in', ['one', 'of', 'the', 'most', 'stressful', 'eras']]\n",
+ "[['protagonist', 'who', \"can't\", 'see', 'the', 'flaws'], 'in', ['his', 'negative', 'campaigning.\"', 'Supporters', 'of', 'this']]\n",
+ "[['and', 'operating.\"', 'Nehring', 'ticks', 'off', 'gains'], 'in', ['fundraising,', 'precinct', 'organizing', 'and', '\"permanent', 'infrastructure\"']]\n",
+ "[['past', 'couple', 'of', 'years.', '\"We\\'re', 'already'], 'in', ['the', '2010', 'election', 'cycle,\"', 'he', 'says.']]\n",
+ "[['hoping', 'to', 'capitalize', 'on', 'anticipated', 'wins'], 'in', ['both', 'the', 'national', 'and', 'congressional', 'races.']]\n",
+ "[['who', 'have', 'been', 'working', 'phone', 'banks'], 'in', ['Walnut', 'Creek,', 'Calif.', '\"They\\'ve', 'become', 'really']]\n",
+ "[['Carpenter', 'expects', 'many', 'to', 'remain', 'active'], 'in', ['the', 'newly', 'formed', 'Contra', 'Costa', 'Democratic']]\n",
+ "[['very', 'few', 'years', 'of', 'major', 'reform'], 'in', ['American', 'history.\"', 'Zogby', 'concedes', 'that', '\"a']]\n",
+ "[['new', 'administration.\"', 'As', 'for', 'a', 'slump'], 'in', ['his', 'own', 'seemingly', 'seasonal', 'business,', 'he']]\n",
+ "[['parlors.', 'Plus', \"there's\", 'a', 'mayoral', 'election'], 'in', ['New', 'York', 'City', 'next', 'year.\"', 'Comedy,']]\n",
+ "[['of', 'the', \"'08\", 'campaign,', 'could', 'come'], 'in', ['for', 'its', 'own', 'share', 'of', 'restructuring']]\n",
+ "[['over,\"', 'moans', 'stand-up', 'comic', 'Will', 'Durst,'], 'in', ['mock', 'lament', 'for', 'a', 'likely', 'Republican']]\n",
+ "[['and', 'pundits', 'who', 'have', 'attracted', 'viewers'], 'in', ['the', 'run-up', 'to', 'this', 'closely', 'watched']]\n",
+ "[['while', 'to', 'see', 'how', 'they', 'fare'], 'in', ['the', 'post-election', 'period.', 'Tina', 'Fey,', 'whose']]\n",
+ "[['be', 'due', 'to', 'her', 'Emmy', 'wins'], 'in', ['September,', 'but', 'part', 'of', 'it', 'also']]\n",
+ "[['trial.', 'Wolf', 'Blitzer', 'found', 'his', 'footing'], 'in', ['the', 'first', 'Gulf', 'War.', 'Since', 'many']]\n",
+ "[['Maddow', 'is', 'now', 'beating', 'Larry', 'King'], 'in', ['the', 'ratings,\"', 'Thompson', 'points', 'out.', '\"I']]\n",
+ "[['will', 'be', 'to', 'discover', 'the', 'ways'], 'in', ['which', 'Obama', 'makes', 'me', 'boil', 'with']]\n",
+ "[['for', 'a', 'top', 'flight', 'point', 'guard'], 'in', ['the', 'NBA', 'and', 'in', 'the', 'past']]\n",
+ "[['point', 'guard', 'in', 'the', 'NBA', 'and'], 'in', ['the', 'past', 'lamented', 'losing', 'Andre', 'Miller']]\n",
+ "[['the', 'past', 'lamented', 'losing', 'Andre', 'Miller'], 'in', ['the', 'trade', 'to', 'Philadelphia', 'for', 'Iverson.']]\n",
+ "[['for', 'Iverson.', 'The', 'Nuggets', 'acquired', 'Iverson'], 'in', ['a', 'blockbuster', 'trade', 'in', 'December', '2006,']]\n",
+ "[['acquired', 'Iverson', 'in', 'a', 'blockbuster', 'trade'], 'in', ['December', '2006,', 'but', 'he', 'was', 'unable']]\n",
+ "[['said,', '\"AI', 'had', 'a', 'great', 'run'], 'in', ['Denver.', 'He', 'really', 'enjoyed', 'playing', 'in']]\n",
+ "[['in', 'Denver.', 'He', 'really', 'enjoyed', 'playing'], 'in', ['Denver.', 'This', 'is', 'an', 'opportunity', 'to']]\n",
+ "[['he', 'led', 'Detroit', 'to', 'the', 'crown'], 'in', ['2004.', 'He', 'now', 'returns', 'home', 'to']]\n",
+ "[['necessary', 'for', 'Denver', 'to', 'get', 'McDyess'], 'in', ['the', 'trade', 'to', 'match', 'salaries.', 'Detroit']]\n",
+ "[['use', 'young', 'point', 'guard', 'Rodney', 'Stuckey'], 'in', ['the', 'backcourt', 'with', 'the', '33-year-old', 'Iverson,']]\n",
+ "[['with', 'the', '33-year-old', 'Iverson,', 'who', 'was'], 'in', ['the', 'final', 'year', 'of', 'his', 'contract']]\n",
+ "[['and', 'making', '$20.8', 'million.', 'Billups', 'is'], 'in', ['the', 'second', 'year', 'of', 'a', 'four-year']]\n",
+ "[['Samb,', '7-1,', '245,', 'has', 'not', 'appeared'], 'in', ['a', 'game', 'this', 'season.', 'He', 'averaged']]\n",
+ "[['this', 'season.', 'He', 'averaged', '1.8', 'points'], 'in', ['four', 'games', 'with', 'Detroit', 'last', 'year.']]\n",
+ "[['drafted', 'by', 'the', 'Los', 'Angeles', 'Lakers'], 'in', ['the', 'second', 'round', '(51st', 'overall)', 'of']]\n",
+ "[['the', 'unreliability', 'of', 'early', 'exit', 'polls'], 'in', ['the', 'last', 'presidential', 'election.', 'A', 'senior']]\n",
+ "[['as', '8', 'p.m.', '--', 'before', 'polls'], 'in', ['even', 'New', 'York', 'and', 'Rhode', 'Island']]\n",
+ "[['Rhode', 'Island', 'close,', 'let', 'alone', 'those'], 'in', ['Texas', 'and', 'California.', 'At', 'such', 'a']]\n",
+ "[['with', 'those', 'results.', 'We', \"can't\", 'be'], 'in', ['this', 'position', 'of', 'hiding', 'our', 'heads']]\n",
+ "[['this', 'position', 'of', 'hiding', 'our', 'heads'], 'in', ['the', 'sand', 'when', 'the', 'story', 'is']]\n",
+ "[['editor', 'of', 'Slate,', 'David', 'Plotz,', 'said'], 'in', ['an', 'e-mail', 'message', 'that', '\"if', 'Obama']]\n",
+ "[['not', 'stupid,', 'and', 'we', \"shouldn't\", 'engage'], 'in', ['a', 'weird', 'Kabuki', 'drama', 'that', 'pretends']]\n",
+ "[['news', 'anchor', 'who', 'has', 'to', 'engage'], 'in', ['a', 'silly', 'pretense', 'about', 'West', 'Coast']]\n",
+ "[['their', 'own', 'Web', 'sites)', 'were', 'engaging'], 'in', ['similar', 'debates', 'on', 'Monday', 'about', 'striking']]\n",
+ "[['at', 'least', 'early', 'on', 'Election', 'Day'], 'in', ['2004,', 'that', 'John', 'Kerry', 'might', 'be']]\n",
+ "[['the', 'results,', 'or', 'the', 'projected', 'results'], 'in', ['various', 'states,', \"it's\", 'beginning', 'to', 'look']]\n",
+ "[['to', 'be', 'more', 'cautious', 'than', 'that,'], 'in', ['terms', 'of', 'telegraphing', 'which', 'way', 'the']]\n",
+ "[['about', 'how', 'much', 'stock', 'to', 'put'], 'in', ['surveys', 'of', 'voters', 'as', 'they', 'leave']]\n",
+ "[['have', 'had', 'overstatements', 'on', 'Democratic', 'candidates'], 'in', ['particular.\"', '\"We', 'may', 'have', 'some', 'indications']]\n",
+ "[['be', 'far', 'less', 'close', 'than', 'those'], 'in', ['2004', 'or', '2000.', 'The', 'nearest', 'precedent']]\n",
+ "[['Carter', 'shortly', 'after', 'the', 'polls', 'closed'], 'in', ['the', 'East.', 'Later,', 'the', 'secretaries', 'of']]\n",
+ "[['early', 'call', 'that', 'year,', 'voter', 'turnout'], 'in', ['California', 'dropped', 'by', 'about', '2', 'percent.']]\n",
+ "[['off', 'projecting', 'a', 'winner', 'until', 'polls'], 'in', ['the', 'last', 'state', 'had', 'closed.', 'Those']]\n",
+ "[['Web', 'sites,', 'including', \"Slate's\", '--', 'early'], 'in', ['the', 'afternoon', 'on', 'Election', 'Day.', 'This']]\n",
+ "[['information', 'at', 'a', 'secret', 'location', 'beginning'], 'in', ['late', 'morning,', 'but', 'will', 'have', 'to']]\n",
+ "[['that', 'Wall', \"Street's\", 'top', 'brass', 'collected'], 'in', ['recent', 'years', 'while', 'driving', 'their', 'companies']]\n",
+ "[['schemes', 'that', 'seem', 'all', 'too', 'common'], 'in', ['finance', 'lie', 'at', 'the', 'heart', 'of']]\n",
+ "[['Now', 'that', 'American', 'taxpayers', 'are', 'shareholders'], 'in', ['the', \"nation's\", 'largest', 'banks,', 'a', 'bevy']]\n",
+ "[['plans', 'is', 'making', 'the', 'rounds.', 'Some'], 'in', ['Washington', 'want', 'to', 'cap', 'pay,', 'period.']]\n",
+ "[['from', 'the', 'boom', 'have', 'been', 'vaporized'], 'in', ['the', 'bust.', 'And', 'still', 'others', 'have']]\n",
+ "[['up', 'with', 'fancy', 'formulas', 'to', 'rein'], 'in', ['pay.', 'The', 'issue', 'has', 'become', 'such']]\n",
+ "[['executives', 'hope', 'such', 'a', 'move,', 'coming'], 'in', ['a', 'year', 'when', 'pay', 'is', 'already']]\n",
+ "[['plans', 'are', 'being', 'bandied', 'about,', 'one'], 'in', ['particular', 'deserves', 'attention.', 'It', 'comes', 'from']]\n",
+ "[['\"no-responsibility\"', 'system,', 'given', 'the', 'trouble', \"we're\"], 'in', ['--', \"that's\", 'fine.', 'But', 'if', 'that']]\n",
+ "[['a', 'substantial', 'portion', 'of', 'their', 'income'], 'in', ['their', 'companies', 'so', 'they', 'had', 'some']]\n",
+ "[['companies', 'so', 'they', 'had', 'some', 'skin'], 'in', ['the', 'game.', '\"We', 'need', 'to', 'make']]\n",
+ "[['by', 'efforts', 'to', 'pay', 'executives', 'partially'], 'in', ['stock.', 'Owning', 'shares', 'in', 'the', 'entire']]\n",
+ "[['executives', 'partially', 'in', 'stock.', 'Owning', 'shares'], 'in', ['the', 'entire', 'company', \"doesn't\", 'tie', \"bankers'\"]]\n",
+ "[['Monday', 'and', 'sentenced', 'him', 'to', 'life'], 'in', ['prison,', 'giving', 'the', 'Bush', 'administration', 'a']]\n",
+ "[['the', 'Bush', 'administration', 'a', 'second', 'conviction'], 'in', ['a', 'war-crimes', 'trial', 'there.', 'But', 'the']]\n",
+ "[['insisted', 'that', 'his', 'lawyer', 'remain', 'mute'], 'in', ['a', 'weeklong', 'trial', 'that', 'drew', 'little']]\n",
+ "[['killed', '17', 'sailors', 'on', 'the', 'ship'], 'in', ['the', 'Yemeni', 'port', 'of', 'Aden.', 'The']]\n",
+ "[['afternoon,', 'after', 'announcing', 'its', 'guilty', 'verdict'], 'in', ['the', 'morning.', 'The', 'only', 'other', 'detainee']]\n",
+ "[['to', 'providing', 'material', 'support', 'for', 'terrorism'], 'in', ['exchange', 'for', 'a', 'nine-month', 'sentence.', \"Bahlul's\"]]\n",
+ "[['a', 'teenager', 'when', 'he', 'was', 'detained'], 'in', ['Afghanistan', 'in', '2002.', 'His', 'trial,', 'scheduled']]\n",
+ "[['when', 'he', 'was', 'detained', 'in', 'Afghanistan'], 'in', ['2002.', 'His', 'trial,', 'scheduled', 'Jan.', '5,']]\n",
+ "[['Army', 'Reserve,', 'stepped', 'down,', 'asserting', 'flaws'], 'in', ['the', 'fairness', 'of', 'the', 'system.', 'Last']]\n",
+ "[['President', 'Bush', 'ordered', 'military', 'commission', 'trials'], 'in', ['November', '2001.', 'The', 'plan', 'has', 'been']]\n",
+ "[['Monday,', 'he', 'said', 'from', 'his', 'home'], 'in', ['Pennsylvania', 'that', 'he', 'expected', 'to', 'be']]\n",
+ "[['meantime,', 'he', 'said,', '\"the', 'commissions', 'are'], 'in', ['such', 'disarray', 'and', 'continue', 'to', 'be']]\n",
+ "[['such', 'disarray', 'and', 'continue', 'to', 'be'], 'in', ['such', 'chaos.\"', 'The', 'diplomatic', 'tangle', 'between']]\n",
+ "[['pitch', 'on', 'Monday,', 'when', 'a', 'jury'], 'in', ['Miami', 'convicted', 'a', 'wealthy', 'Venezuelan', 'businessman']]\n",
+ "[['on', 'American', 'soil.', 'The', 'case,', 'known'], 'in', ['Latin', 'America', 'as', '\"Suitecasegate,\"', 'started', 'last']]\n",
+ "[['a', 'mysterious', 'suitcase', 'filled', 'with', '$800,000'], 'in', ['cash', 'at', 'an', 'airport', 'here.', 'But']]\n",
+ "[['businessman', 'convicted', 'Monday,', 'went', 'on', 'trial'], 'in', ['Miami', 'for', 'conspiring', 'to', 'cover', 'up']]\n",
+ "[['faces', 'a', 'maximum', 'of', '15', 'years'], 'in', ['prison.', 'The', 'case', 'has', 'become', 'a']]\n",
+ "[['the', 'United', 'States', 'of', 'political', 'motivations'], 'in', ['bringing', 'the', 'case', 'last', 'December,', 'a']]\n",
+ "[['case', 'last', 'December,', 'a', 'charge', 'officials'], 'in', ['Washington', 'and', 'Miami', 'have', 'repeatedly', 'denied.']]\n",
+ "[['intentional', 'or', 'not,', 'the', 'eight-week', 'trial'], 'in', ['Miami', 'revealed', 'an', 'extensive', 'cover-up', 'effort']]\n",
+ "[['and', 'laid', 'bare', 'a', 'business', 'culture'], 'in', ['Venezuela', 'that', 'involves', 'regular', 'bribes', 'and']]\n",
+ "[['the', 'military.', 'The', 'trial', 'provided', 'little'], 'in', ['the', 'way', 'of', 'evidence', 'that', 'American']]\n",
+ "[['their', 'time', 'on', 'the', 'phone', 'and'], 'in', ['South', 'Florida', 'restaurants', 'trying', 'to', 'convince']]\n",
+ "[['Jonathan', 'I.', 'Solomon,', 'the', 'special', 'agent'], 'in', ['charge', 'of', 'the', \"FBI's\", 'Miami', 'office.']]\n",
+ "[['the', 'trial', 'as', 'a', '\"political', 'circus'], 'in', ['which', 'Franklin', 'Duran', 'is', 'a', 'pawn']]\n",
+ "[['to', 'comment', 'on', 'allegations', 'he', 'made'], 'in', ['the', \"trial's\", 'early', 'days:', 'that', 'the']]\n",
+ "[['details,\"', 'he', 'said.', 'The', 'scandal', 'surfaced'], 'in', ['August,', '2007,', 'when', 'an', 'Argentine', 'policewoman']]\n",
+ "[['open', 'the', 'case.', 'Nearly', '$800,000,', 'mostly'], 'in', ['$50', 'bills,', 'spilled', 'out.', 'Argentine', 'officials']]\n",
+ "[['FBI', 'just', 'days', 'after', 'arriving', 'back'], 'in', ['Florida.', 'He', 'subsequently', 'recorded', 'hundreds', 'of']]\n",
+ "[['Antonini', 'Wilson.', 'At', 'secretly', 'recorded', 'meetings'], 'in', ['Florida,', 'Duran', 'offered', 'to', 'deliver', 'up']]\n",
+ "[['to', 'deliver', 'up', 'to', '$2', 'million'], 'in', ['hush', 'money', 'and', 'to', 'make', 'sure']]\n",
+ "[['make', 'sure', 'Antonini', \"Wilson's\", 'legal', 'troubles'], 'in', ['Argentina', 'went', 'away.', 'Another', 'suspect', 'remains']]\n",
+ "[['had', 'been', 'previous', 'operations', 'to', 'smuggle'], 'in', ['political', 'cash', 'from', 'Venezuela', 'to', 'other']]\n",
+ "[['cash', 'from', 'Venezuela', 'to', 'other', 'countries'], 'in', ['the', 'region.', 'Sharna', 'Fey', 'and', 'Kim']]\n",
+ "[['three', 'times:', 'In', '2004,', 'they', 'married'], 'in', ['a', 'daze.', 'In', '2005,', 'they', 'married']]\n",
+ "[['counted', 'under', 'the', 'law,', 'they', 'married'], 'in', ['a', 'hurry.', '\"We\\'re', 'doing', 'this', 'while']]\n",
+ "[['measure', 'Tuesday', 'on', 'outlawing', 'same-sex', 'marriage'], 'in', ['California', 'a', 'toss-up,', 'couples', 'were', 'not']]\n",
+ "[['The', 'rush', 'to', 'the', 'altar', 'was'], 'in', ['anticipation', 'of', 'Proposition', '8,', 'which', 'would']]\n",
+ "[['five', 'months', 'of', 'legalized', 'same-sex', 'marriages'], 'in', ['the', 'state.', 'The', 'ban,', 'if', 'approved,']]\n",
+ "[['would', 'take', 'effect', 'Wednesday.', '\"We\\'re', 'here'], 'in', ['case', 'of', 'what', 'happens', 'tomorrow,\"', 'said']]\n",
+ "[['who', 'married', 'his', 'partner,', 'Michael', 'Golden,'], 'in', ['San', 'Francisco', 'on', 'Monday,', 'both', 'wearing']]\n",
+ "[['close.\"', 'Same-sex', 'couples', 'filled', 'the', 'hallway'], 'in', ['front', 'of', 'the', 'county', \"clerk's\", 'office']]\n",
+ "[['already', 'booked', 'for', 'Election', 'Day.', 'Clerks'], 'in', ['several', 'other', 'California', 'counties', 'reported', 'a']]\n",
+ "[['other', 'California', 'counties', 'reported', 'a', 'surge'], 'in', ['the', 'issuance', 'of', 'marriage', 'licenses,', 'with']]\n",
+ "[['performed', 'more', 'than', '1,100', 'same-sex', 'ceremonies'], 'in', ['the', 'two', 'weeks', 'leading', 'up', 'to']]\n",
+ "[['on', 'Sunday', 'at', \"Greaves'\", 'parents', 'house'], 'in', ['Santa', 'Rosa,', 'Calif.', '\"We', 'both', 'liked']]\n",
+ "[['but', 'we', 'wanted', 'to', 'do', 'it'], 'in', ['our', 'own', 'time.', 'But', 'when', 'it']]\n",
+ "[['time', '--', 'over', 'allowing', 'same-sex', 'unions'], 'in', ['the', 'state,', 'it', 'is', 'expected', 'that']]\n",
+ "[['it', 'made\"', 'by', 'allowing', 'the', 'marriages'], 'in', ['the', 'first', 'place,', 'said', 'Sonja', 'Eddings']]\n",
+ "[['of', 'the', 'most', 'expensive', 'measures', 'ever'], 'in', ['a', 'state', 'known', 'for', 'its', 'proclivities']]\n",
+ "[['across', 'the', 'state', 'have', 'been', 'blanketed'], 'in', ['recent', 'weeks', 'with', 'increasingly', 'overheated', 'advertisements,']]\n",
+ "[['the', 'country', 'have', 'been', 'traditionally', 'understated'], 'in', ['the', 'polls.', 'In', '2000,', 'when', 'California']]\n",
+ "[['approved', 'the', 'measure.', 'The', 'final', 'tally'], 'in', ['favor', 'of', 'the', 'law', 'was', '61']]\n",
+ "[['percent.', 'The', '2000', 'law', 'was', 'overturned'], 'in', ['May', 'by', 'the', 'state', 'Supreme', 'Court.']]\n",
+ "[['was', 'among', 'the', '4,000', 'that', 'married'], 'in', ['a', 'happy', 'haze', 'in', '2004', 'in']]\n",
+ "[['that', 'married', 'in', 'a', 'happy', 'haze'], 'in', ['2004', 'in', 'San', 'Francisco', 'after', 'the']]\n",
+ "[['in', 'a', 'happy', 'haze', 'in', '2004'], 'in', ['San', 'Francisco', 'after', 'the', \"city's\", 'mayor,']]\n",
+ "[['year', 'later,', 'the', 'couple', 'married', 'again'], 'in', ['Hawaii,', 'but', 'it', 'was', 'an', 'unofficial']]\n",
+ "[['but', 'it', 'was', 'an', 'unofficial', 'ceremony'], 'in', ['a', 'state', 'that', 'does', 'not', 'allow']]\n",
+ "[['Paul', 'Ellis,', '51,', 'a', 'retail', 'manager'], 'in', ['San', 'Francisco,', 'was', 'at', 'City', 'Hall']]\n",
+ "[['It', 'was', 'his', 'seventh', 'same-sex', 'marriage'], 'in', ['the', 'last', 'five', 'months,', 'he', 'said,']]\n",
+ "[['months,', 'he', 'said,', 'most', 'of', 'them'], 'in', ['the', 'tartan', 'kilt', 'that', 'he', 'wore']]\n",
+ "[['he', 'wore', 'on', 'a', 'muggy', 'Monday'], 'in', ['San', 'Francisco,', 'a', 'wardrobe', 'choice', 'he']]\n",
+ "[['said.', 'Ellis', 'had', 'also', 'taken', 'matters'], 'in', ['his', 'own', 'hands,', 'getting', 'an', 'online']]\n",
+ "[['if', 'George', 'Bailey', 'had', 'been', 'around'], 'in', ['September,', 'the', 'U.S.', 'government', 'could', 'have']]\n",
+ "[['could', 'have', 'avoided', 'another', 'trillion', 'dollars'], 'in', ['bailouts', 'and', 'the', 'prospect', 'of', 'a']]\n",
+ "[['Association', 'that', 'would', 'have', 'destroyed', 'it'], 'in', ['the', 'film', '\"It\\'s', 'a', 'Wonderful', 'Life.\"']]\n",
+ "[['a', 'closer', 'look', 'at', 'the', 'crossroads'], 'in', ['which', 'culture', 'and', 'finance', 'intersect.', 'In']]\n",
+ "[['guarantee', 'any', 'loans.', 'The', 'townspeople', 'rush'], 'in', ['demanding', 'their', 'life', 'savings.', '\"You\\'re', 'thinking']]\n",
+ "[['if', 'I', 'had', 'the', 'money', 'back'], 'in', ['a', 'safe.', 'The', \"money's\", 'not', 'here.\"']]\n",
+ "[['on,', 'pointing', 'to', 'individuals.', '\"Your', \"money's\"], 'in', [\"Joe's\", 'house,\"', 'he', 'says', 'to', 'one']]\n",
+ "[['yours,\"', 'he', 'says', 'to', 'another.', '\"And'], 'in', ['the', 'Kennedy', 'house,', 'and', 'Mrs.', \"Backlin's\"]]\n",
+ "[['everything.', '\"We\\'ve', 'got', 'to', 'have', 'faith'], 'in', ['each', 'other.\"', 'And,', 'at', 'least', 'for']]\n",
+ "[['and', 'loan,', 'telling', 'him,', '\"It\\'s', 'deep'], 'in', ['the', 'race', 'for', 'a', 'man', 'to']]\n",
+ "[['dream', 'possible', 'among', 'American', 'citizens.', 'Beginning'], 'in', ['the', 'mid-1990s', 'they', 'were', 'steadily', 'pressured']]\n",
+ "[['loans', 'to', 'ever', 'more', 'risky', 'borrowers'], 'in', ['the', 'name', 'of', 'this', 'very', 'ideal.']]\n",
+ "[['of', 'course,', 'both', \"George's\", 'charitable', 'dream'], 'in', ['which', 'banks', 'would', 'cuddle', 'with', 'their']]\n",
+ "[['fantasies', 'a', 'few', 'weeks', 'ago.', 'But'], 'in', ['the', 'midst', 'of', 'this', 'crisis', 'something']]\n",
+ "[['see', 'how', 'this', 'issue', 'came', 'up'], 'in', ['earlier', 'periods', 'of', 'cultural', 'transition.', 'Consider']]\n",
+ "[['be', 'about', 'how', 'to', 'create', 'trust'], 'in', ['a', 'tumultuous', 'marketplace.', 'The', 'play', 'lampoons']]\n",
+ "[['marketplace.', 'The', 'play', 'lampoons', 'cultural', 'differences'], 'in', ['cosmopolitan', 'Venice.', 'A', 'buffoonish', 'Spaniard,', 'a']]\n",
+ "[['--', 'these', 'types', 'are', 'all', 'invoked'], 'in', ['the', 'work.', 'But', 'how', 'are', 'such']]\n",
+ "[['are', 'such', 'varied', 'figures', 'to', 'interact'], 'in', ['\"the', 'trade', 'and', 'profit', 'of', 'the']]\n",
+ "[['central', 'law', 'that', 'would', 'guarantee', 'trust'], 'in', ['the', 'midst', 'of', 'distrust.', 'Shakespeare,', 'though,']]\n",
+ "[['though,', 'does', 'not', 'minimize', 'the', 'difficulties'], 'in', ['creating', 'consistent', 'methods', 'for', 'judging,', 'whether']]\n",
+ "[['arriviste', 'financier,', 'creates', 'a', 'pyramid', 'scheme'], 'in', ['which', 'railroads', 'of', 'the', 'New', 'World']]\n",
+ "[['\"The', 'Voysey', 'Inheritance,\"', 'the', 'main', 'tradition'], 'in', ['a', 'distinguished', 'family', 'investment', 'firm', 'is']]\n",
+ "[['bilking', 'of', 'its', 'clients,', 'a', 'heritage'], 'in', ['which', 'trust', 'is', 'hypocritically', 'cultivated.', 'And']]\n",
+ "[['was', 'part', 'of', 'the', 'problem', 'and'], 'in', ['an', 'Op-Ed', 'article', 'in', 'The', 'New']]\n",
+ "[['problem', 'and', 'in', 'an', 'Op-Ed', 'article'], 'in', ['The', 'New', 'York', 'Times', 'this', 'past']]\n",
+ "[['over', 'principles', 'of', 'finance?', 'We', 'are'], 'in', ['for', 'perilous', 'times.', 'As', 'it', 'turned']]\n",
+ "[['trial', 'of', 'Sen.', 'Ted', 'Stevens', 'get'], 'in', ['her', 'way.', 'On', 'Monday,', 'Hinnant', 'stunned']]\n",
+ "[[\"Breeders'\", 'Cup', 'at', 'Santa', 'Anita', 'racetrack'], 'in', ['California.', 'Just', 'hours', 'before', 'the', 'jury']]\n",
+ "[['chamber', 'and', 'ordered', 'her', 'to', 'appear'], 'in', ['court.', 'Hinnant,', '52,', 'was', 'accompanied', 'Monday']]\n",
+ "[['horse', 'breeding', 'and', 'other', 'topics,', 'people'], 'in', ['court', 'said.', 'Sullivan', 'interrupted', 'her,', 'saying:']]\n",
+ "[['father,', 'Ralph', 'Harold', 'Hinnant,', '71,', 'lives'], 'in', ['Kenly,', 'N.C.,', 'The', 'Washington', 'Post', 'reported.']]\n",
+ "[['that', 'he', 'will', 'appeal', 'the', 'verdict'], 'in', ['which', 'he', 'was', 'found', 'guilty', 'of']]\n",
+ "[['last', 'month', 'to', 'their', 'worst', 'levels'], 'in', ['25', 'years,', 'while', 'business', 'in', 'the']]\n",
+ "[['levels', 'in', '25', 'years,', 'while', 'business'], 'in', ['the', 'manufacturing', 'sector', 'shrank', 'at', 'the']]\n",
+ "[['sector', 'shrank', 'at', 'the', 'fastest', 'rate'], 'in', ['26', 'years.', 'The', 'reports', 'underscored', 'the']]\n",
+ "[['of', 'the', 'year.', 'While', 'stocks', 'fluctuated'], 'in', ['a', 'narrow', 'range', 'for', 'most', 'of']]\n",
+ "[['for', 'Supply', 'Management', 'fell', 'to', '38.9'], 'in', ['October', 'from', '43.5', 'in', 'September,', 'on']]\n",
+ "[['to', '38.9', 'in', 'October', 'from', '43.5'], 'in', ['September,', 'on', 'a', 'scale', 'where', 'readings']]\n",
+ "[['where', 'readings', 'below', '50', 'indicate', 'contraction'], 'in', ['the', 'industry.', 'It', 'was', 'the', 'lowest']]\n",
+ "[['plunge', 'last', 'month,', 'prompting', 'a', 'sell-off'], 'in', ['the', 'market.', 'Although', 'the', 'index', 'dropped']]\n",
+ "[['orders', 'tapered', 'off,', 'inventories', 'rose,', 'and,'], 'in', ['a', 'worrying', 'sign', 'for', 'future', 'growth,']]\n",
+ "[['euro,', 'businesses', 'fear', 'a', 'sharp', 'drop'], 'in', ['foreign', 'orders.', '\"In', 'the', 'last', 'two']]\n",
+ "[['economist', 'of', 'the', 'Manufacturers', 'Alliance/MAPI,', 'wrote'], 'in', ['a', 'note.', '\"Hurricane', 'Ike', 'and', 'the']]\n",
+ "[['Department', 'showed', 'that', 'construction', 'spending', 'dipped'], 'in', ['September', 'by', '0.3', 'percent,', 'after', 'rising']]\n",
+ "[['percent,', 'after', 'rising', 'the', 'same', 'amount'], 'in', ['August.', 'Commercial', 'spending', 'ticked', 'up', 'slightly,']]\n",
+ "[['the', 'government.', '\"We', 'are', 'now', 'deep'], 'in', ['the', 'belly', 'of', 'the', 'recession', 'beast,\"']]\n",
+ "[['of', 'the', 'Economic', 'Outlook', 'Group,', 'wrote'], 'in', ['a', 'note.', '\"It', 'may', 'well', 'be']]\n",
+ "[['to', 'settle', 'at', '$63.91', 'a', 'barrel'], 'in', ['New', 'York', 'trading.', 'Shares', 'of', 'energy']]\n",
+ "[['ended', 'higher.', 'The', 'FTSE', '100', 'index'], 'in', ['London', 'gained', '1.5', 'percent,', 'the', 'CAC']]\n",
+ "[['gained', '1.5', 'percent,', 'the', 'CAC', '40'], 'in', ['Paris', 'was', 'up', '1.2', 'percent', 'and']]\n",
+ "[['up', '1.2', 'percent', 'and', 'the', 'DAX'], 'in', ['Frankfurt', 'climbed', '0.8', 'percent.', '\"The', 'direction']]\n",
+ "[['of', 'asset', 'management', 'at', 'Richelieu', 'Finance'], 'in', ['Paris.', '\"But', 'the', 'market', 'is', 'waiting']]\n",
+ "[['may', 'find', 'current', 'levels', 'attractive.', 'But'], 'in', ['the', 'short', 'term,', 'she', 'said,', 'investors']]\n",
+ "[['market', 'conditions.', 'The', 'company', 'had', 'said'], 'in', ['July', 'that', 'it', 'would', 'go', 'public']]\n",
+ "[['100', '22/32.', 'The', 'yield,', 'which', 'moves'], 'in', ['the', 'opposite', 'direction', 'from', 'the', 'price,']]\n",
+ "[['bishop', 'surrendered', 'without', 'even', 'a', 'rook'], 'in', ['return.', 'Then', 'they', 'let', 'pawn', 'Eduardo']]\n",
+ "[['shooting', 'guard,', 'or', 'use', 'Anthony', 'Carter'], 'in', ['the', 'starting', 'lineup', 'with', 'Billups,', 'and']]\n",
+ "[['with', 'Detroit.', 'Huh?', 'He', 'was', 'included'], 'in', ['the', 'deal', 'to', 'make', 'the', 'salary']]\n",
+ "[['In', 'regard', 'to', 'the', 'third', 'guy'], 'in', ['the', 'deal,', 'Cheikh', 'Samb,', 'I', 'thought']]\n",
+ "[['young', 'man,', 'became', 'the', 'main', 'man'], 'in', ['Detroit', 'and', 'returns', 'as', 'the', 'learned']]\n",
+ "[['--', 'help', 'lead', 'them', 'to', 'victories'], 'in', ['the', 'postseason.', 'He', 'is', 'a', 'winner.']]\n",
+ "[['one', 'of', 'the', 'best', 'point', 'guards'], 'in', ['the', 'game,', 'a', 'player', 'unafraid', 'to']]\n",
+ "[['when', 'he', 'was', 'an', 'eighth', 'grader,'], 'in', ['the', 'Colorado', 'state', 'tournament,', 'at', 'his']]\n",
+ "[['tournament,', 'at', 'his', 'high', 'school', 'graduation,'], 'in', ['the', 'NCAA', 'tournament,', 'when', 'he', 'was']]\n",
+ "[['was', 'with', 'the', 'Nuggets', 'before', 'and'], 'in', ['the', '2004', 'NBA', 'Finals', '(as', 'I']]\n",
+ "[['2004', 'NBA', 'Finals', '(as', 'I', 'sat'], 'in', ['a', 'tiki', 'hut', 'bar', 'on', 'a']]\n",
+ "[['with', 'Colorado,', 'after', 'he', 'was', 'drafted'], 'in', ['the', 'first', 'round,', 'at', 'a', 'Denver']]\n",
+ "[['this', 'year', 'and', 'during', 'charity', 'events'], 'in', ['Denver.', 'Chauncey', 'belongs', 'with', 'the', 'Nuggets.']]\n",
+ "[['have', 'been', 'glued', 'to', 'the', 'Web,'], 'in', ['which', 'case,', 'take', 'a', 'quick', 'break!)']]\n",
+ "[['a', 'state', 'until', 'all', 'the', 'polls'], 'in', ['that', 'state', 'have', 'closed.', 'But', 'there']]\n",
+ "[['AND', \"THEY'RE\", 'OFF:', 'The', 'suspense', 'starts'], 'in', ['Indiana.', 'Most', 'polls', 'close', 'at', '6']]\n",
+ "[['it,', 'Indiana', 'could', 'be', 'the', 'canary'], 'in', ['the', 'coal', 'mine', 'predicting', 'disaster', 'ahead']]\n",
+ "[['Also', 'at', '7', 'p.m.,', 'polls', 'close'], 'in', ['Virginia', 'and', 'Georgia,', 'and', 'polls', 'close']]\n",
+ "[['Virginia', 'and', 'Georgia,', 'and', 'polls', 'close'], 'in', ['most', 'of', 'Florida', 'and', 'New', 'Hampshire.']]\n",
+ "[['labored', 'to', 'win.', 'If', 'he', 'succeeds'], 'in', ['the', 'former', 'capital', 'of', 'the', 'one-time']]\n",
+ "[['rest', 'of', 'the', 'country.', 'The', 'drama'], 'in', ['this', 'state,', 'which', 'has', 'become', 'synonymous']]\n",
+ "[['synonymous', 'with', 'electoral', 'dysfunction,', 'may', 'be'], 'in', ['the', 'new', 'and', 'creative', 'ways', 'in']]\n",
+ "[['in', 'the', 'new', 'and', 'creative', 'ways'], 'in', ['which', 'voters', 'might', 'be', 'foiled', 'from']]\n",
+ "[['CLEANSERS:', 'At', '7:30', 'p.m.,', 'polls', 'close'], 'in', ['Ohio', 'and', 'North', 'Carolina.', 'While', 'Ohio']]\n",
+ "[['where', 'he', 'has', 'staked', 'his', 'claim,'], 'in', ['anticipation', 'of', 'losing', 'some', 'smaller', 'red']]\n",
+ "[['Surveys', 'of', 'voters', 'leaving', 'the', 'polls'], 'in', ['the', 'April', 'primary', 'found', 'that', '19']]\n",
+ "[['that', 'race', 'played', 'an', 'important', 'role'], 'in', ['their', 'decision', '(as', 'they', 'delivered', 'the']]\n",
+ "[['do', 'so', 'early,', 'because', 'the', 'polls'], 'in', ['so', 'many', 'toss-up', 'states', '--', 'Indiana,']]\n",
+ "[['organizations', 'have', 'nightmares', 'about', 'the', 'debacle'], 'in', ['2000,', 'when', 'most', 'made', 'the', 'wrong']]\n",
+ "[['This', 'is', 'the', 'first', 'presidential', 'election'], 'in', ['which', 'the', 'Web', 'will', 'be', 'a']]\n",
+ "[['polls', '(anyone', 'remember', 'President', 'John', 'Kerry'], 'in', ['2004?).', 'NO', 'MORE', 'CHADS:', 'Expect', 'some']]\n",
+ "[['from', 'the', 'way', 'they', 'cast', 'them'], 'in', ['the', 'last', 'presidential', 'election;', 'most', 'will']]\n",
+ "[['probably', 'vote', 'this', 'year', 'than', 'ever,'], 'in', ['terms', 'of', 'numbers,', 'and', 'maybe', 'at']]\n",
+ "[['higher', 'rate.', 'The', 'rate', 'to', 'beat'], 'in', ['modern', 'times', 'is', 'the', '64', 'percent']]\n",
+ "[['is', 'the', '64', 'percent', 'who', 'voted'], 'in', ['1960.', 'But', 'the', 'real', 'record', 'was']]\n",
+ "[['century', 'ago,', 'when', '66', 'percent', 'voted'], 'in', ['a', 'race', 'that', 'no', 'doubt', 'warms']]\n",
+ "[['last', 'month', 'to', 'their', 'worst', 'levels'], 'in', ['25', 'years,', 'while', 'business', 'in', 'the']]\n",
+ "[['levels', 'in', '25', 'years,', 'while', 'business'], 'in', ['the', 'manufacturing', 'sector', 'shrank', 'at', 'the']]\n",
+ "[['sector', 'shrank', 'at', 'the', 'fastest', 'rate'], 'in', ['26', 'years.', 'While', 'stocks', 'fluctuated', 'in']]\n",
+ "[['in', '26', 'years.', 'While', 'stocks', 'fluctuated'], 'in', ['a', 'narrow', 'range', 'for', 'most', 'of']]\n",
+ "[['for', 'Supply', 'Management', 'fell', 'to', '38.9'], 'in', ['October', 'from', '43.5', 'in', 'September,', 'on']]\n",
+ "[['to', '38.9', 'in', 'October', 'from', '43.5'], 'in', ['September,', 'on', 'a', 'scale', 'where', 'readings']]\n",
+ "[['orders', 'tapered', 'off,', 'inventories', 'rose,', 'and,'], 'in', ['a', 'worrying', 'sign', 'for', 'future', 'growth,']]\n",
+ "[['euro,', 'businesses', 'fear', 'a', 'sharp', 'drop'], 'in', ['foreign', 'orders.', 'A', 'separate', 'report', 'from']]\n",
+ "[['Department', 'showed', 'that', 'construction', 'spending', 'dipped'], 'in', ['September', 'by', '0.3', 'percent,', 'while', 'residential']]\n",
+ "[['to', 'settle', 'at', '$63.91', 'a', 'barrel'], 'in', ['New', 'York', 'trading.', 'Shares', 'of', 'energy']]\n",
+ "[['ended', 'higher.', 'The', 'FTSE', '100', 'index'], 'in', ['London', 'gained', '1.5', 'percent,', 'the', 'CAC']]\n",
+ "[['gained', '1.5', 'percent,', 'the', 'CAC', '40'], 'in', ['Paris', 'was', 'up', '1.2', 'percent', 'and']]\n",
+ "[['up', '1.2', 'percent', 'and', 'the', 'DAX'], 'in', ['Frankfurt', 'climbed', '0.8', 'percent.', 'The', \"Treasury's\"]]\n",
+ "[['100', '22/32.', 'The', 'yield,', 'which', 'moves'], 'in', ['the', 'opposite', 'direction', 'from', 'the', 'price,']]\n",
+ "[['early', 'promise', 'of', 'those', 'days', 'frayed'], 'in', ['recent', 'years,', 'but', 'economically', 'times', 'were']]\n",
+ "[['former', 'political', 'allies,', 'are', 'now', 'locked'], 'in', ['a', 'power', 'struggle', 'that', 'has', 'paralyzed']]\n",
+ "[['is', 'a', 'country', 'of', '46', 'million'], 'in', ['a', 'strategic', 'spot', 'between', 'European', 'Union']]\n",
+ "[['willingness', 'to', 'settle', 'disputes', 'by', 'force'], 'in', ['Georgia', 'this', 'summer.', 'He', 'has', 'pushed']]\n",
+ "[[\"Russia's\", 'Black', 'Sea', 'fleet', 'to', 'dock'], 'in', ['a', 'Ukrainian', 'port.', 'For', 'Ukrainians,', 'the']]\n",
+ "[['lowest', 'point', 'since', 'it', 'was', 'introduced'], 'in', ['1996,', 'and', 'securities', 'that', 'insure', 'Ukrainian']]\n",
+ "[['Sales', 'of', 'new', 'cars', 'and', 'trucks'], 'in', ['the', 'United', 'States', 'plummeted', 'in', 'October']]\n",
+ "[['trucks', 'in', 'the', 'United', 'States', 'plummeted'], 'in', ['October', 'to', 'levels', 'not', 'seen', 'in']]\n",
+ "[['in', 'October', 'to', 'levels', 'not', 'seen'], 'in', ['the', 'auto', 'industry', 'in', '25', 'years.']]\n",
+ "[['not', 'seen', 'in', 'the', 'auto', 'industry'], 'in', ['25', 'years.', 'The', 'stunning', 'fall-off', 'affected']]\n",
+ "[['A', 'measure', 'of', 'overall', 'manufacturing', 'activity'], 'in', ['the', 'United', 'States', 'fell', 'last', 'month']]\n",
+ "[['last', 'month', 'to', 'its', 'lowest', 'level'], 'in', ['26', 'years,', 'according', 'to', 'data', 'released']]\n",
+ "[['spending', 'fell', 'for', 'the', 'eighth', 'time'], 'in', ['10', 'months', 'in', 'September.', 'For', 'the']]\n",
+ "[['the', 'eighth', 'time', 'in', '10', 'months'], 'in', ['September.', 'For', 'the', 'auto', 'industry,', 'analysts']]\n",
+ "[['few', 'saw', 'any', 'hope', 'for', 'recovery'], 'in', ['the', 'industry', 'before', '2010.', 'The', 'sharp']]\n",
+ "[['Detroit', 'companies,', 'and', 'may', 'increase', 'pressure'], 'in', ['Washington', 'to', 'provide', 'emergency', 'financial', 'aid']]\n",
+ "[['burning', 'through', 'an', 'estimated', '$1', 'billion'], 'in', ['cash', 'each', 'month', 'since', 'middle', 'of']]\n",
+ "[['grown', 'substantially', 'with', 'the', 'drastic', 'drop-off'], 'in', ['demand', 'for', 'new', 'vehicles.', '\"If', 'they']]\n",
+ "[['the', 'Treasury', 'Department', 'for', '$10', 'billion'], 'in', ['federal', 'assistance.', 'All', 'three', 'Detroit', 'automakers']]\n",
+ "[['for', 'the', 'release', 'of', '$25', 'billion'], 'in', ['low-interest', 'loans', 'from', 'the', 'Energy', 'Department']]\n",
+ "[['1992.', 'However,', 'the', 'annualized', 'selling', 'rate'], 'in', ['that', 'month', '--', 'a', 'projection', 'of']]\n",
+ "[['consumer', 'fears', 'about', 'unemployment,', 'continued', 'declines'], 'in', ['housing', 'prices,', 'and', 'the', 'aftershocks', 'of']]\n",
+ "[['North', 'American', 'sales,', 'called', 'the', '\"carnage\"'], 'in', ['the', 'market.', 'Sales', 'at', 'Ford', 'fell']]\n",
+ "[['selection', 'of', 'small,', 'fuel-efficient', 'passenger', 'cars'], 'in', ['their', 'product', 'lineups.', \"Toyota's\", 'sales', 'dropped']]\n",
+ "[['lineups.', \"Toyota's\", 'sales', 'dropped', '23', 'percent'], 'in', ['October,', 'while', \"Honda's\", 'sales', 'plunged', '25.2']]\n",
+ "[['which', 'has', 'already', 'lost', '$18.8', 'billion'], 'in', ['the', 'first', 'six', 'months', 'of', 'this']]\n",
+ "[['hit.', 'After', 'pouring', 'on', 'sales', 'incentives'], 'in', ['August', 'and', 'September,', 'the', 'company', 'pulled']]\n",
+ "[['company', 'pulled', 'back', 'its', 'cash', 'offers'], 'in', ['October', '--', 'and', 'paid', 'the', 'price.']]\n",
+ "[['just', '170,000', 'vehicles,', 'the', 'first', 'time'], 'in', ['recent', 'memory', 'that', 'the', 'automaker', 'had']]\n",
+ "[['less', 'than', '200,000', 'cars', 'and', 'trucks'], 'in', ['a', 'month,', 'according', 'to', 'Toprak.', 'LaNeve,']]\n",
+ "[['America,', 'added,', '\"In', 'my', '27', 'years'], 'in', ['the', 'business,', 'I', 'have', 'never', 'seen']]\n",
+ "[['said', 'the', 'October', 'sales', 'rate', 'was,'], 'in', ['its', 'estimation,', 'the', 'worst', 'of', 'the']]\n",
+ "[['\"severe', 'recessionary\"', 'level.', '\"At', 'this', 'juncture'], 'in', ['U.S.', 'automotive', 'history,', \"it's\", 'highly', 'critical']]\n",
+ "[['of', \"GM's\", '45', 'percent', 'sales', 'decline'], 'in', ['October', 'could', 'be', 'attributed', 'to', 'people']]\n",
+ "[['been', 'offering', 'big', 'discounts', 'stumbled', 'badly'], 'in', ['October.', 'Toyota,', 'for', 'example,', 'has', 'been']]\n",
+ "[['sales', 'tumble', '23', 'percent.', '\"Buyers', 'are'], 'in', ['the', \"driver's\", 'seat', 'in', 'a', 'market']]\n",
+ "[['\"Buyers', 'are', 'in', 'the', \"driver's\", 'seat'], 'in', ['a', 'market', \"that's\", 'awash', 'with', 'good']]\n",
+ "[['Sales', 'of', 'new', 'cars', 'and', 'trucks'], 'in', ['the', 'United', 'States', 'plummeted', 'in', 'October']]\n",
+ "[['trucks', 'in', 'the', 'United', 'States', 'plummeted'], 'in', ['October', 'to', 'levels', 'not', 'seen', 'in']]\n",
+ "[['in', 'October', 'to', 'levels', 'not', 'seen'], 'in', ['the', 'auto', 'industry', 'in', '25', 'years.']]\n",
+ "[['not', 'seen', 'in', 'the', 'auto', 'industry'], 'in', ['25', 'years.', 'The', 'stunning', 'fall-off', 'affected']]\n",
+ "[['few', 'saw', 'any', 'hope', 'for', 'recovery'], 'in', ['the', 'industry', 'before', '2010.', 'The', 'sharp']]\n",
+ "[['Detroit', 'companies,', 'and', 'may', 'increase', 'pressure'], 'in', ['Washington', 'to', 'provide', 'emergency', 'financial', 'aid']]\n",
+ "[['1992.', 'However,', 'the', 'annualized', 'selling', 'rate'], 'in', ['that', 'month', '--', 'a', 'projection', 'of']]\n",
+ "[['consumer', 'fears', 'about', 'unemployment,', 'continued', 'declines'], 'in', ['housing', 'prices,', 'and', 'the', 'aftershocks', 'of']]\n",
+ "[['North', 'American', 'sales,', 'called', 'the', '\"carnage\"'], 'in', ['the', 'market.', 'Sales', 'at', 'Ford', 'fell']]\n",
+ "[['selection', 'of', 'small,', 'fuel-efficient', 'passenger', 'cars'], 'in', ['their', 'product', 'lineups.', \"Toyota's\", 'sales', 'dropped']]\n",
+ "[['lineups.', \"Toyota's\", 'sales', 'dropped', '23', 'percent'], 'in', ['October,', 'while', \"Honda's\", 'sales', 'plunged', '25.2']]\n",
+ "[['Ahmadinejad', 'nominated', 'him', 'for', 'the', 'post'], 'in', ['August.', 'The', 'previous', 'minister', 'had', 'been']]\n",
+ "[['legislator', 'close', 'to', 'Ahmadinejad,', 'slapped', 'Abbassi'], 'in', ['the', 'face,', 'and', 'the', 'speaker', 'expelled']]\n",
+ "[['he', 'would', 'not', 'bother', 'to', 'appear'], 'in', ['Parliament', 'to', 'defend', 'his', 'minister.', '\"Who']]\n",
+ "[['the', 'impeachment', 'would', 'undermine', \"Ahmadinejad's\", 'standing'], 'in', ['the', 'coming', 'presidential', 'elections', 'in', 'June']]\n",
+ "[['standing', 'in', 'the', 'coming', 'presidential', 'elections'], 'in', ['June', '2009.', 'One', 'member', 'of', 'Parliament,']]\n",
+ "[['flown', 'by', 'the', 'adventurer', 'Steve', 'Fossett'], 'in', ['the', 'Sierra', 'Nevada', 'were', 'confirmed', 'to']]\n",
+ "[['California', 'forensics', 'laboratory', 'matched', 'DNA', 'found'], 'in', ['the', 'bones', 'to', 'that', 'of', 'Fossett,']]\n",
+ "[['off', 'from', 'a', 'northern', 'Nevada', 'ranch'], 'in', ['a', 'two-seat', 'light', 'plane', 'on', 'Sept.']]\n",
+ "[['on', 'foot', 'scoured', '17,000', 'square', 'miles'], 'in', ['the', 'most', 'extensive', 'search', 'for', 'a']]\n",
+ "[['extensive', 'search', 'for', 'a', 'missing', 'aircraft'], 'in', ['American', 'history', 'for', 'signs', 'of', 'Fossett']]\n",
+ "[['the', 'aircraft.', 'Last', 'month,', 'a', 'hiker'], 'in', ['a', 'remote', 'area', 'of', 'the', 'Inyo']]\n",
+ "[['area', 'of', 'the', 'Inyo', 'National', 'Forest'], 'in', ['east-central', 'California', 'came', 'across', 'some', 'of']]\n",
+ "[['needed,', 'is', 'closure,\"', 'Anderson', 'said', 'Monday'], 'in', ['a', 'statement.', \"Fossett's\", 'wife,', 'Peggy', 'V.']]\n",
+ "[['judge', 'declare', 'her', 'husband', 'legally', 'dead'], 'in', ['February.', 'The', 'National', 'Transportation', 'Safety', 'Board']]\n",
+ "[['year.', 'Fossett', 'held', 'numerous', 'world', 'records'], 'in', ['land', 'and', 'air', 'travel,', 'and', 'was']]\n",
+ "[['first', 'person', 'to', 'circumnavigate', 'the', 'world'], 'in', ['a', 'hot-air', 'balloon.', 'His', 'close', 'friend']]\n",
+ "[['the', 'area', 'for', 'dry', 'lake', 'beds'], 'in', ['which', 'to', 'challenge', 'the', \"world's\", 'land-speed']]\n",
+ "[['case', 'pits', 'the', 'value', 'of', 'finality'], 'in', ['criminal', 'cases', 'against', 'the', 'possibility', 'of']]\n",
+ "[['9th', 'U.S.', 'Circuit', 'Court', 'of', 'Appeals,'], 'in', ['San', 'Francisco,', 'ordered', 'prosecutors', 'in', 'Alaska']]\n",
+ "[['Appeals,', 'in', 'San', 'Francisco,', 'ordered', 'prosecutors'], 'in', ['Alaska', 'to', 'turn', 'over', 'DNA', 'evidence']]\n",
+ "[['the', 'prosecution', 'to', 'implicate', 'Osborne.', 'Prosecutors'], 'in', ['Alaska,', 'in', 'their', 'brief', 'urging', 'the']]\n",
+ "[['to', 'implicate', 'Osborne.', 'Prosecutors', 'in', 'Alaska,'], 'in', ['their', 'brief', 'urging', 'the', 'Supreme', 'Court']]\n",
+ "[['court', 'had', 'made', 'a', 'separate', 'mistake'], 'in', ['allowing', 'a', 'right', 'of', 'access', 'to']]\n",
+ "[['a', 'conviction', 'was', 'not', 'being', 'challenged'], 'in', ['a', 'pending', 'case.', 'The', 'federal', 'government']]\n",
+ "[['post-conviction', 'DNA', 'testing.', 'Osborne', 'was', 'convicted'], 'in', ['1994', 'based', 'in', 'part', 'on', 'DNA']]\n",
+ "[['Osborne', 'was', 'convicted', 'in', '1994', 'based'], 'in', ['part', 'on', 'DNA', 'evidence', 'that', 'had']]\n",
+ "[['testing.', 'It', 'indicated', 'that', 'biological', 'evidence'], 'in', ['the', 'case', 'had', 'characteristics', 'consistent', 'with']]\n",
+ "[['Osborne', 'was', 'sentenced', 'to', '26', 'years'], 'in', ['prison,', 'with', 'five', 'years', 'suspended.', 'He']]\n",
+ "[['since', 'said', 'he', 'did', 'so', 'only'], 'in', ['the', 'hope', 'of', 'quicker', 'release.', 'The']]\n",
+ "[['quicker', 'release.', 'The', 'Supreme', 'Court', 'has'], 'in', ['earlier', 'cases', 'left', 'open', 'the', 'question']]\n",
+ "[['solely', 'on', 'evidence', 'that', 'they', 'are'], 'in', ['fact', 'innocent.', 'Barry', 'Scheck,', 'a', 'director']]\n",
+ "[['he', 'could', 'not', 'understand', 'why', 'prosecutors'], 'in', ['Alaska', 'have', 'opposed', 'testing.', '\"The', 'state']]\n",
+ "[['be', 'afraid', 'to', 'learn', 'the', 'truth'], 'in', ['this', 'case?', 'There', 'is', 'no', 'rational']]\n",
+ "[['collectors', 'and', 'advisers', 'who', 'touch', 'down,'], 'in', ['slightly', 'different', 'configurations,', 'at', 'nearly', 'every']]\n",
+ "[['also', 'a', 'testing', 'ground', 'with', 'little'], 'in', ['the', 'way', 'of', 'way', 'of', 'superstars,']]\n",
+ "[['the', 'vast,', 'chilling', 'art', 'halls', 'endemic'], 'in', ['biennials.', 'It', 'proves', 'that', 'biennials', 'can']]\n",
+ "[['shifting,', 'healing', 'kaleidoscope.', 'Sometimes', 'this', 'occurs'], 'in', ['works', 'that', 'are', 'unrelated', 'to', 'New']]\n",
+ "[['of', '20th-century', 'dictators.', 'Sometimes', 'it', 'occurs'], 'in', ['site-specific', 'works,', 'like', 'Nari', \"Ward's\", '\"Diamond']]\n",
+ "[['filled', 'with', 'weight-lifting', 'machines', 'on', 'view'], 'in', ['the', 'hulk', 'of', 'the', 'historic', 'Battle']]\n",
+ "[['Baptist', 'Church,', 'ruined', 'but', 'still', 'standing'], 'in', ['the', 'Lower', 'Ninth', 'Ward.', 'Dan', 'Cameron,']]\n",
+ "[['He', 'seems', 'to', 'have', 'sensed', 'that'], 'in', ['the', \"city's\", 'rawness', 'a', 'different', 'kind']]\n",
+ "[['one,', 'Cameron', 'has', 'distributed', 'his', 'selections'], 'in', ['about', '30', 'locations:', 'several', 'museums', 'and']]\n",
+ "[['result,', 'you', 'are', 'rarely', 'viewing', 'artworks'], 'in', ['isolation,', 'but', 'rather', 'measuring', 'them', 'against']]\n",
+ "[['or', 'artist,', 'as', 'does', 'seeing', 'him'], 'in', ['them,', 'in', 'action,', 'on', 'video', 'and']]\n",
+ "[['as', 'does', 'seeing', 'him', 'in', 'them,'], 'in', ['action,', 'on', 'video', 'and', 'in', 'photographs.']]\n",
+ "[['them,', 'in', 'action,', 'on', 'video', 'and'], 'in', ['photographs.', 'Made', 'at', 'the', 'rate', 'of']]\n",
+ "[['about', 'the', 'high', 'levels', 'of', 'creativity'], 'in', ['a', 'city', 'where', 'French,', 'French', 'Canadian,']]\n",
+ "[['house', 'on', 'Governor', 'Nicholls', 'Street.', 'Working'], 'in', ['drawing,', 'photography', 'and', 'animation,', 'the', 'artists']]\n",
+ "[['slabs', 'and', 'footings', 'from', 'a', 'house'], 'in', ['the', 'Lower', 'Ninth', 'Ward', 'lost', 'to']]\n",
+ "[['a', 'firsthand', 'experience', 'of', 'the', 'eradication'], 'in', ['the', 'Lower', 'Ninth', 'Ward,', 'where', 'nothing']]\n",
+ "[['the', 'French', 'artists', 'Pierre', 'et', 'Gilles'], 'in', ['a', 'building', 'that', 'was', 'a', 'furniture']]\n",
+ "[['front', 'yard', 'of', 'a', 'dilapidated', 'house'], 'in', ['the', 'Lower', 'Ninth.', 'It', 'may', 'be']]\n",
+ "[['survivors.', 'The', 'effect', 'is', 'more', 'organic'], 'in', ['a', 'double-screen', 'video', 'by', 'the', 'Brazilian']]\n",
+ "[['Rosangela', 'Renno,', 'which', 'can', 'be', 'seen'], 'in', ['the', 'French', 'Quarter', 'in', 'a', 'house']]\n",
+ "[['be', 'seen', 'in', 'the', 'French', 'Quarter'], 'in', ['a', 'house', 'recently', 'acquired', 'by', 'the']]\n",
+ "[['bonds', 'and', 'boundaries', 'among', 'the', 'races'], 'in', ['New', 'Orleans,', 'as', 'well', 'as', 'a']]\n",
+ "[['Hurricane', 'Katrina', 'and', 'a', 'deadly', 'flood'], 'in', ['Bulgaria', 'resulted', 'from', 'the', 'wrath', 'of']]\n",
+ "[['of', 'two', '13th-century', 'Bulgarian', 'kings.', 'Site-specific'], 'in', ['the', 'national,', 'temporal', 'sense', 'is', 'an']]\n",
+ "[['Sen.', 'Barack', 'Obama', 'leaves', 'his', 'hotel'], 'in', ['Jacksonville,', 'Fla.,', 'where', 'he', 'had', 'arrived']]\n",
+ "[['quiet', 'hero\"', 'for', 'her', 'central', 'role'], 'in', ['raising', 'him.', '9:30', 'a.m.', 'Well,', 'here']]\n",
+ "[['9:30', 'a.m.', 'Well,', 'here', 'we', 'are'], 'in', ['Tampa,', 'Fla.,', 'at', 'Sen.', 'John', \"McCain's\"]]\n",
+ "[['65,000-person', 'capacity.', 'McCain', 'is', 'not', 'actually'], 'in', ['the', 'stadium,', 'which', 'sits', 'empty', 'on']]\n",
+ "[['Florida', 'morning,', 'but', 'across', 'the', 'street'], 'in', ['the', 'parking', 'lot.', 'The', 'crowd', 'here']]\n",
+ "[['lot.', 'The', 'crowd', 'here', 'is', 'small,'], 'in', ['the', 'hundreds,', 'but', 'McCain', 'is', 'launching']]\n",
+ "[['although', 'with', 'a', 'bit', 'of', 'sleep'], 'in', ['his', 'voice.', 'He', 'got', 'to', 'his']]\n",
+ "[['voice.', 'He', 'got', 'to', 'his', 'hotel'], 'in', ['Coral', 'Gables,', 'the', 'Biltmore,', 'at', '1:30']]\n",
+ "[['1:30', 'a.m.,', 'after', 'a', 'midnight', 'rally'], 'in', ['Miami.', '\"With', 'this', 'kind', 'of', 'enthusiasm,']]\n",
+ "[['is', 'already', 'done.', 'His', 'speech', 'clocked'], 'in', ['at', 'a', 'little', 'more', 'than', '13']]\n",
+ "[['microphone', 'to', 'introduce', 'Sen.', 'Joe', 'Biden'], 'in', ['Lees', 'Summit,', 'Mo.,', 'and', 'notes', 'that']]\n",
+ "[['Sarah', 'Palin', 'of', 'Alaska,', 'is', 'also'], 'in', ['Missouri', 'this', 'morning,', 'at', 'a', 'rally']]\n",
+ "[['Missouri', 'this', 'morning,', 'at', 'a', 'rally'], 'in', ['Jefferson', 'City.', 'The', 'crowd', 'boos.', 'McCaskill']]\n",
+ "[['Obama', 'chose', 'the', 'very', 'best', 'person'], 'in', ['the', 'country', 'who', 'could', 'be', 'president']]\n",
+ "[['filling', 'the', 'seats', 'of', 'the', 'hall'], 'in', ['anticipation', 'of', \"Obama's\", 'visit', 'to', \"Veteran's\"]]\n",
+ "[[\"Obama's\", 'visit', 'to', \"Veteran's\", 'Memorial', 'Auditorium'], 'in', ['Jacksonville,', 'Fla.,', 'not', 'far', 'from', 'the']]\n",
+ "[['into', 'his', 'day,', 'was', 'Obama', 'sleeping'], 'in', ['this', 'morning?', 'No,', 'his', 'aides', 'say.']]\n",
+ "[['say.', 'After', 'arriving', 'at', 'the', 'Hyatt'], 'in', ['downtown', 'Jacksonville', 'in', 'the', 'early', 'morning']]\n",
+ "[['at', 'the', 'Hyatt', 'in', 'downtown', 'Jacksonville'], 'in', ['the', 'early', 'morning', 'hours,', 'he', 'emerged']]\n",
+ "[['yes,', 'that', 'was', 'the', 'Democratic', 'nominee'], 'in', ['a', 'ball', 'cap', 'and', 'black', 'sweat']]\n",
+ "[['on', 'his', 'day,', 'which', 'includes', 'rallies'], 'in', ['Jacksonville,', 'in', 'North', 'Carolina', 'and', 'in']]\n",
+ "[['day,', 'which', 'includes', 'rallies', 'in', 'Jacksonville,'], 'in', ['North', 'Carolina', 'and', 'in', 'Virginia.', 'Why']]\n",
+ "[['in', 'Jacksonville,', 'in', 'North', 'Carolina', 'and'], 'in', ['Virginia.', 'Why', 'only', 'three', 'states', 'for']]\n",
+ "[['said,', 'the', 'Obama', 'rallies', 'are', 'held'], 'in', ['large', 'arenas,', 'not', 'airport', 'hangars,', 'so']]\n",
+ "[['using', 'a', 'teleprompter', 'for', 'his', 'speech'], 'in', ['Jacksonville,', 'but', 'apparently', 'he', 'is', 'not']]\n",
+ "[['have', 'been', 'showing', 'against', 'him.', '\"Here'], 'in', ['Ohio,\"', 'Obama', 'began.', 'He', 'paused', 'momentarily,']]\n",
+ "[['began.', 'He', 'paused', 'momentarily,', 'as', 'people'], 'in', ['the', 'crowd', 'shouted', 'at', 'him.', 'Realizing']]\n",
+ "[['votes', 'are', 'not', 'up', 'for', 'grabs'], 'in', ['this', 'reliably', 'red', 'state,', 'but', 'McCain']]\n",
+ "[['but', 'McCain', 'has', 'descended', 'into', 'Blountsville'], 'in', ['this', 'far', 'northeastern', 'corner', 'to', 'reach']]\n",
+ "[['corner', 'to', 'reach', 'into', 'television', 'markets'], 'in', ['southwestern', 'Virginia', 'and', 'a', 'bit', 'of']]\n",
+ "[['desperately', 'needs', 'to', 'win.', 'We', 'are'], 'in', ['an', 'airplane', 'hangar', 'and', 'the', 'crowd']]\n",
+ "[['the', 'crowd', 'is', 'roaring', 'and', 'big,'], 'in', ['the', 'thousands.', \"McCain's\", 'campaign', 'plane', 'is']]\n",
+ "[['\"spread', 'the', 'wealth', 'around.\"', 'And', '\"he\\'s'], 'in', ['the', 'far', 'left', 'lane', 'of', 'American']]\n",
+ "[['p.m.', 'The', 'Palin', 'entourage', 'just', 'arrived'], 'in', ['Jefferson', 'City,', 'right', 'in', 'the', 'center']]\n",
+ "[['just', 'arrived', 'in', 'Jefferson', 'City,', 'right'], 'in', ['the', 'center', 'of', 'Missouri.', 'We', 'are']]\n",
+ "[['to', 'their', 'workspace,', 'a', 'few', 'people'], 'in', ['the', 'crowd', 'throw', 'out', 'a', 'few']]\n",
+ "[['unravel.\"', 'She', 'pointed', 'out', 'a', 'sign'], 'in', ['the', 'crowd:', '\"Like', 'that', 'sign', '--']]\n",
+ "[['1:50', 'p.m.', 'Stop', 'No.', '3', 'McCain,'], 'in', ['Moon', 'Township,', 'Pa.', 'This', 'is', 'one']]\n",
+ "[['the', 'Pittsburgh', 'airport', 'and', 'conveniently', 'located'], 'in', ['Western', 'Pennsylvania,', 'home', 'to', 'all', 'those']]\n",
+ "[['the', 'McCain', 'campaign', 'rejected.', 'We', 'are'], 'in', ['another', 'airplane', 'hangar,', 'crowd', 'not', 'so']]\n",
+ "[['why', 'we', 'take', 'nothing', 'for', 'granted'], 'in', ['this', 'race', 'and', 'we', \"don't\", 'believe']]\n",
+ "[['politicians,', 'can', 'smell', 'victory.', '\"There\\'s', 'something'], 'in', ['the', 'air,', 'guys,\"', 'he', 'told', 'a']]\n",
+ "[['on', 'his', 'plane', 'shortly', 'before', 'landing'], 'in', ['Columbus,', 'Ohio,', 'for', 'the', 'first', 'of']]\n",
+ "[['for', 'the', 'first', 'of', 'two', 'appearances'], 'in', ['the', 'state', 'this', 'afternoon.', 'You', 'can']]\n",
+ "[['afternoon.', 'You', 'can', 'see', 'the', 'confidence'], 'in', [\"Biden's\", 'smile', 'and', 'his', 'new', 'accessibility']]\n",
+ "[['like', 'he', 'has', 'a', 'large', 'frog'], 'in', ['his', 'throat.', 'A', 'big', 'portion', 'of']]\n",
+ "[['p.m.', 'Obama', 'steps', 'off', 'his', 'plane'], 'in', ['Charlotte', 'without', 'talking', 'to', 'reporters.', '4:30']]\n",
+ "[['\"My', 'grandmother', 'was', 'able', 'to', 'stay'], 'in', ['a', 'home', 'all', 'the', 'way', 'until']]\n",
+ "[['campaign,', 'Roswell,', 'N.M.', 'We', 'are', 'here'], 'in', ['the', 'supposed', 'land', 'of', 'space', 'aliens']]\n",
+ "[['the', 'way', 'presidential', 'campaigns', 'are', 'fought'], 'in', ['America,', 'a', 'legacy', 'that', 'has', 'almost']]\n",
+ "[['can', 'at', 'a', 'minimum', 'be', 'competitive'], 'in', ['states', 'and', 'regions', 'that', 'had', 'long']]\n",
+ "[['technologically', 'driven', 'voter', 'turnout', 'programs', 'succeed'], 'in', ['getting', 'more', 'people', 'registered', 'and', 'to']]\n",
+ "[['technologically', 'driven', 'voter', 'turnout', 'programs', 'succeed'], 'in', ['getting', 'more', 'people', 'registered', 'and', 'to']]\n",
+ "[['senior', 'adviser', 'to', 'President', \"Bush's\", 'campaigns'], 'in', ['2000', 'and', '2004.', '\"The', 'year', 'campaigns']]\n",
+ "[['\"The', 'year', 'campaigns', 'leveraged', 'the', 'Internet'], 'in', ['ways', 'never', 'imagined.', 'The', 'year', 'we']]\n",
+ "[['from', 'YouTube,', 'which', 'did', 'not', 'exist'], 'in', ['2004,', 'to', 'the', 'cell', 'phone', 'text']]\n",
+ "[['money', '--', 'after', 'declining', 'to', 'participate'], 'in', ['the', 'public', 'financing', 'system', '--', 'to']]\n",
+ "[['to', 'expand', 'the', 'map', 'and', 'compete'], 'in', ['traditionally', 'Republican', 'states.', 'No', 'matter', 'who']]\n",
+ "[['Republicans', 'and', 'Democrats', 'say,', \"Obama's\", 'efforts'], 'in', ['places', 'like', 'Indiana,', 'North', 'Carolina', 'and']]\n",
+ "[['out', 'how', 'to', 'compete', 'with', 'this'], 'in', ['order', 'to', 'become', 'competitive', 'again', 'at']]\n",
+ "[['again', 'at', 'a', 'national', 'level', 'and'], 'in', ['House', 'and', 'Senate', 'races.\"', 'This', 'transformation']]\n",
+ "[['political', 'director', 'of', 'the', 'Bush', 'campaign'], 'in', ['2004,', 'said', 'that', 'the', 'evolution', 'was']]\n",
+ "[['every', 'presidential', 'campaign,', 'and', 'would', 'continue'], 'in', ['2012', 'and', 'beyond.', '\"We', 'are', 'in']]\n",
+ "[['in', '2012', 'and', 'beyond.', '\"We', 'are'], 'in', ['the', 'midst', 'of', 'a', 'fundamental', 'transformation']]\n",
+ "[['did', 'and', 'reflect', 'a', 'cultural', 'shift'], 'in', ['voters,', 'producing', 'an', 'audience', 'that', 'is']]\n",
+ "[['and,', 'from', 'reading', 'blogs,', 'sometimes', 'trafficking'], 'in', ['rumors', 'or', 'suspect', 'information.', 'As', 'a']]\n",
+ "[['had', 'given', 'campaigns', 'opportunities,', 'and', 'challenges,'], 'in', ['trying', 'to', 'manage', 'the', 'news.', '\"The']]\n",
+ "[['year', 'is', 'the', 'intense', 'new', 'interest'], 'in', ['politics,', 'reflected', 'in', 'jumps', 'in', 'voter']]\n",
+ "[['intense', 'new', 'interest', 'in', 'politics,', 'reflected'], 'in', ['jumps', 'in', 'voter', 'registration', 'numbers,', 'early']]\n",
+ "[['interest', 'in', 'politics,', 'reflected', 'in', 'jumps'], 'in', ['voter', 'registration', 'numbers,', 'early', 'voting', 'and']]\n",
+ "[['worked', 'for', 'one', 'of', \"Obama's\", 'rivals'], 'in', ['the', 'Democratic', 'primary', 'campaign,', 'John', 'Edwards,']]\n",
+ "[['who', 'wants', 'it', 'more,', 'who', 'believes'], 'in', ['it', 'more.\"', 'McCain', 'sought', 'to', 'motivate']]\n",
+ "[['New', 'Mexico', 'to', 'Nevada.', 'He', 'stopped'], 'in', ['Tennessee,', 'hoping', 'to', 'reach', 'voters', 'in']]\n",
+ "[['in', 'Tennessee,', 'hoping', 'to', 'reach', 'voters'], 'in', ['North', 'Carolina', 'and', 'Virginia,', 'and', 'he']]\n",
+ "[['to', 'return', 'home', 'for', 'a', 'rally'], 'in', ['Arizona', 'in', 'the', 'small', 'hours', 'of']]\n",
+ "[['home', 'for', 'a', 'rally', 'in', 'Arizona'], 'in', ['the', 'small', 'hours', 'of', 'the', 'night.']]\n",
+ "[['hours', 'of', 'the', 'night.', 'Obama,', 'confident'], 'in', ['his', 'standing', 'on', 'Democratic', 'terrain,', 'devoted']]\n",
+ "[['for', 'his', 'upbringing,', 'had', 'died', 'overnight'], 'in', ['Hawaii.', 'The', 'election', 'eve', 'travels', 'of']]\n",
+ "[['states', 'whose', 'outcomes', 'will', 'loom', 'large'], 'in', ['settling', 'who', 'will', 'become', 'the', \"nation's\"]]\n",
+ "[['its', 'automated', 'phone', 'system', 'to', 'check'], 'in', ['with', 'any', 'voter', 'who', 'has', 'shown']]\n",
+ "[['voter', 'who', 'has', 'shown', 'an', 'interest'], 'in', ['the', 'Republican', 'ticket.', 'In', 'their', 'pitches']]\n",
+ "[['cold', 'that', 'had', 'waylaid', 'many', 'passengers'], 'in', ['his', 'campaign', 'plane.', 'By', 'late', 'afternoon']]\n",
+ "[['his', 'campaign', 'plane.', 'By', 'late', 'afternoon'], 'in', ['Indiana,', 'he', 'was', 'using', 'throat', 'lozenges']]\n",
+ "[['prove', 'it!\"', 'he', 'told', 'a', 'rally'], 'in', ['Indianapolis', 'as', 'he', 'battled', 'to', 'prevent']]\n",
+ "[['or', 'different,', 'than', 'at', 'any', 'point'], 'in', ['the', 'general', 'election.', 'Only', 'a', 'few']]\n",
+ "[['whom', 'he', 'visited', 'late', 'last', 'month'], 'in', ['Honolulu', 'during', 'a', 'brief', 'suspension', 'of']]\n",
+ "[['tinged', 'with', 'emotion.', '\"She', 'died', 'peacefully'], 'in', ['her', 'sleep', 'with', 'my', 'sister', 'at']]\n",
+ "[['McCain', 'said', 'at', 'his', 'opening', 'stop'], 'in', ['Tampa.', '\"I\\'m', 'running', 'to', 'make', 'everyone']]\n",
+ "[['not', 'impossible.', '\"Winning', '270', 'is', 'right'], 'in', ['the', 'cards,\"', \"McCain's\", 'campaign', 'manager,', 'Rick']]\n",
+ "[['to', '\"spread', 'the', 'wealth', 'around.\"', '\"He\\'s'], 'in', ['the', 'far', 'left', 'lane', 'of', 'American']]\n",
+ "[['voting.', 'In', 'Ohio,', 'voting', 'lines', 'looped'], 'in', ['and', 'out', 'of', 'doors,', 'upstairs', 'and']]\n",
+ "[['around', 'corners', 'at', 'the', \"registrar's\", 'office'], 'in', ['Columbus,', 'with', 'a', 'record', 'number', 'of']]\n",
+ "[['And', 'more', 'than', '300,000', 'Virginians', 'voted'], 'in', ['person', 'by', 'an', 'absentee', 'ballot.', 'That']]\n",
+ "[['ballots', 'cast.', 'Worried', 'about', 'the', 'outlook'], 'in', ['Virginia,', 'where', 'a', 'Democrat', \"hasn't\", 'won']]\n",
+ "[['Democrat', \"hasn't\", 'won', 'the', 'presidential', 'race'], 'in', ['more', 'than', 'four', 'decades,', \"McCain's\", 'campaign']]\n",
+ "[['Ahmadinejad', 'nominated', 'him', 'for', 'the', 'post'], 'in', ['August.', 'The', 'previous', 'minister', 'had', 'been']]\n",
+ "[['legislator', 'close', 'to', 'Ahmadinejad,', 'slapped', 'Abbassi'], 'in', ['the', 'face,', 'and', 'the', 'speaker', 'expelled']]\n",
+ "[['he', 'would', 'not', 'bother', 'to', 'appear'], 'in', ['Parliament', 'to', 'defend', 'his', 'minister.', '\"Who']]\n",
+ "[['the', 'impeachment', 'would', 'undermine', \"Ahmadinejad's\", 'standing'], 'in', ['the', 'coming', 'presidential', 'elections', 'in', 'June']]\n",
+ "[['standing', 'in', 'the', 'coming', 'presidential', 'elections'], 'in', ['June', '2009.', 'This', 'sweltering', 'Amazon', 'outpost']]\n",
+ "[['from', 'Peru,', 'the', 'town', 'has', 'evolved'], 'in', ['the', 'last', 'quarter', 'century', 'from', 'a']]\n",
+ "[['$2,000,', 'half', 'of', 'what', 'they', 'cost'], 'in', ['Brazil.', 'Chinese-made', 'models,', 'which', 'are', 'less']]\n",
+ "[['the', 'river', 'island', 'of', 'Santa', 'Rosa,'], 'in', ['Peru,', 'said', 'Ulianov', 'Mejia,', 'the', 'manager']]\n",
+ "[['manager', 'of', 'the', 'Yamaha', 'motorbike', 'store'], 'in', ['Tabatinga.', '\"Here', 'you', 'can', 'have', 'breakfast']]\n",
+ "[['Tabatinga.', '\"Here', 'you', 'can', 'have', 'breakfast'], 'in', ['Brazil,', 'lunch', 'in', 'Colombia', 'and', 'dinner']]\n",
+ "[['can', 'have', 'breakfast', 'in', 'Brazil,', 'lunch'], 'in', ['Colombia', 'and', 'dinner', 'in', 'Peru', 'because']]\n",
+ "[['Brazil,', 'lunch', 'in', 'Colombia', 'and', 'dinner'], 'in', ['Peru', 'because', \"it's\", 'a', 'triple', 'border,\"']]\n",
+ "[['credit', 'terms', 'allow', 'people', 'to', 'pay'], 'in', ['up', 'to', '24', 'installments,', 'and', 'most']]\n",
+ "[['of', 'the', 'city,', 'which', 'has', 'doubled'], 'in', ['population', 'in', 'the', 'past', '20', 'years,']]\n",
+ "[['city,', 'which', 'has', 'doubled', 'in', 'population'], 'in', ['the', 'past', '20', 'years,', 'surging', 'past']]\n",
+ "[['moto', 'taxi', 'will', 'take', 'you', 'anywhere'], 'in', ['the', 'city.', 'The', 'drivers', 'are', 'the']]\n",
+ "[['is', 'enforced', 'across', 'the', 'Colombian', 'border'], 'in', ['Leticia,', 'drivers', 'stop', 'at', 'the', 'border']]\n",
+ "[['--', 'and', 'rain', 'can', 'be', 'torrential'], 'in', ['the', 'Amazon.', 'Most', 'moto', 'taxi', 'drivers']]\n",
+ "[['taxis', 'get', 'a', 'chance', 'to', 'get'], 'in', ['the', 'game.', 'But', 'good', 'luck', 'finding']]\n",
+ "[['the', 'world-record', 'attempt,', 'he', 'said.', 'But'], 'in', ['the', 'end', 'the', 'duo', 'could', 'not']]\n",
+ "[['Something', 'like', 'that', 'is', 'the', 'case'], 'in', ['the', 'United', 'States', 'right', 'now', 'as']]\n",
+ "[['as', 'Americans', 'go', 'to', 'the', 'polls'], 'in', ['what', 'is', 'probably', 'the', 'most', 'important']]\n",
+ "[['recession', 'has', 'only', 'just', 'begun.', \"It's\"], 'in', ['that', 'atmosphere', 'that', 'voters', 'Tuesday', 'will']]\n",
+ "[['Sarah', 'Palin', 'and', 'Joe', 'the', 'Plumber'], 'in', ['tow.', 'As', 'important', 'as', 'this', 'choice']]\n",
+ "[['the', 'United', 'States', 'is', 'a', 'country'], 'in', ['which', 'wealth', 'is', 'funneled,', 'absurdly,', 'from']]\n",
+ "[['40', 'percent', 'of', 'all', 'the', 'wealth'], 'in', ['the', 'nation', 'and', 'maintains', 'an', 'iron']]\n",
+ "[['United', 'States', 'is', 'also', 'a', 'country'], 'in', ['which', 'blissful', 'ignorance', 'is', 'celebrated,', 'and']]\n",
+ "[['some', 'of', 'the', 'highest', 'dropout', 'rates'], 'in', ['the', 'industrialized', 'world.', 'Math', 'and', 'science?']]\n",
+ "[['21st', 'century,', 'the', 'United', 'States', 'is'], 'in', ['deep,', 'deep', 'trouble.', 'Yet', 'instead', 'of']]\n",
+ "[['clowns,', 'or', 'worse', '--', 'spouting', 'garbage'], 'in', ['the', 'pubic', 'sphere', 'that', 'hearkens', 'back']]\n",
+ "[['Elizabeth', 'Dole,', 'a', 'conservative', 'Republican,', 'is'], 'in', ['a', 'tough', 'fight', 'for', 're-election', 'against']]\n",
+ "[['require', 'more', 'than', 'casting', 'a', 'vote'], 'in', ['one', 'presidential', 'election.', 'It', 'will', 'require']]\n",
+ "[['the', 'way', 'presidential', 'campaigns', 'are', 'fought'], 'in', ['America,', 'a', 'legacy', 'that', 'has', 'almost']]\n",
+ "[['can', 'at', 'a', 'minimum', 'be', 'competitive'], 'in', ['states', 'and', 'regions', 'that', 'had', 'long']]\n",
+ "[['technologically', 'driven', 'voter', 'turnout', 'programs', 'succeed'], 'in', ['getting', 'more', 'people', 'registered', 'and', 'to']]\n",
+ "[['technologically', 'driven', 'voter', 'turnout', 'programs', 'succeed'], 'in', ['getting', 'more', 'people', 'registered', 'and', 'to']]\n",
+ "[['an', 'adviser', 'to', 'President', \"Bush's\", 'campaigns'], 'in', ['2000', 'and', '2004.', '\"The', 'year', 'campaigns']]\n",
+ "[['\"The', 'year', 'campaigns', 'leveraged', 'the', 'Internet'], 'in', ['ways', 'never', 'imagined.', 'The', 'year', 'we']]\n",
+ "[['from', 'YouTube,', 'which', 'did', 'not', 'exist'], 'in', ['2004,', 'to', 'the', 'cell', 'phone', 'text']]\n",
+ "[['money', '--', 'after', 'declining', 'to', 'participate'], 'in', ['the', 'public', 'financing', 'system', '--', 'to']]\n",
+ "[['to', 'expand', 'the', 'map', 'and', 'compete'], 'in', ['traditionally', 'Republican', 'states.', 'Google,', 'the', 'titan']]\n",
+ "[['are', 'two', 'of', 'the', 'many', 'combatants'], 'in', ['a', 'high-technology', 'dispute', 'over', 'precious', 'slices']]\n",
+ "[['up', 'would', 'encourage', 'innovation', 'and', 'investment'], 'in', ['much', 'the', 'same', 'way', 'that', 'the']]\n",
+ "[['Hillary', 'Rodham', 'Clinton,', 'D-N.Y.,', 'and', 'others'], 'in', ['Congress.', 'Also', 'opposed', 'are', 'the', 'professional']]\n",
+ "[['chaos', 'could', 'reign', 'on', 'Broadway', '--'], 'in', ['the', 'form', 'of', 'static', 'and', 'other']]\n",
+ "[['a', 'byproduct', 'of', 'an', 'impending', 'change'], 'in', ['the', 'way', 'over-the-air', 'TV', 'signals', 'are']]\n",
+ "[['to', 'several', 'people', 'who', 'were', 'involved'], 'in', ['the', \"agency's\", 'internal', 'discussions', 'but', 'who']]\n",
+ "[['state-court', 'injury', 'suits.', 'But', 'the', 'argument'], 'in', ['the', 'Supreme', 'Court', 'on', 'Monday,', 'in']]\n",
+ "[['in', 'the', 'Supreme', 'Court', 'on', 'Monday,'], 'in', ['the', 'case', 'of', 'a', 'Vermont', 'musician']]\n",
+ "[['standards.', 'The', 'drug', 'law', 'at', 'issue'], 'in', ['the', 'case', 'says', 'nothing', 'about', 'pre-emption,']]\n",
+ "[[\"regulators'\", 'actions', 'rather', 'than', 'on', 'statements'], 'in', ['laws', 'enacted', 'by', 'Congress', 'could', 'shut']]\n",
+ "[['could', 'shut', 'down', 'countless', 'injury', 'suits'], 'in', ['cases', 'involving', 'not', 'only', 'drugs', 'but']]\n",
+ "[['the', 'label.', 'Given', 'the', \"justices'\", 'interest'], 'in', ['those', 'finer', 'points,', 'the', 'court', 'seemed']]\n",
+ "[['rule', 'broadly', 'on', 'the', 'larger', 'issues'], 'in', ['the', 'case:', 'whether', 'the', 'agency', 'and']]\n",
+ "[['eight-justice', 'majority', 'of', 'the', 'court', 'ruled,'], 'in', ['Riegel', 'v.', 'Medtronic,', 'that', 'suits', 'concerning']]\n",
+ "[['federal', 'law.', 'But', 'the', 'underlying', 'law'], 'in', ['Riegel', 'required', 'pre-emption', 'in', 'so', 'many']]\n",
+ "[['underlying', 'law', 'in', 'Riegel', 'required', 'pre-emption'], 'in', ['so', 'many', 'words:', 'in', 'the', 'jargon,']]\n",
+ "[['required', 'pre-emption', 'in', 'so', 'many', 'words:'], 'in', ['the', 'jargon,', 'it', 'involved', '\"express', 'pre-emption.\"']]\n",
+ "[['it', 'involved', '\"express', 'pre-emption.\"', 'The', 'plaintiff'], 'in', ['the', 'case', 'argued', 'on', 'Monday,', 'Diana']]\n",
+ "[['FDA', 'had', 'considered', 'the', 'risks', 'involved'], 'in', ['IV-push', 'administration,', 'Levine', 'would', 'lose;', 'if']]\n",
+ "[['But', \"Levine's\", 'case,', 'he', 'added,', 'is'], 'in', ['the', '\"heartland\"', 'of', 'implied', 'pre-emption,', 'given']]\n",
+ "[['pitch', 'on', 'Monday,', 'when', 'a', 'jury'], 'in', ['Miami', 'convicted', 'a', 'wealthy', 'Venezuelan', 'businessman']]\n",
+ "[['on', 'American', 'soil.', 'The', 'case,', 'known'], 'in', ['Latin', 'America', 'as', '\"Suitecasegate,\"', 'started', 'with']]\n",
+ "[['a', 'mysterious', 'suitcase', 'filled', 'with', '$800,000'], 'in', ['cash', 'at', 'an', 'airport', 'here', 'in']]\n",
+ "[['in', 'cash', 'at', 'an', 'airport', 'here'], 'in', ['August', '2007.', 'But', 'it', 'has', 'become']]\n",
+ "[['Duran,', 'convicted', 'Monday,', 'went', 'on', 'trial'], 'in', ['Miami', 'for', 'conspiring', 'to', 'cover', 'up']]\n",
+ "[['faces', 'a', 'maximum', 'of', '15', 'years'], 'in', ['prison.', 'The', 'case', 'has', 'become', 'a']]\n",
+ "[['outside', 'her', 'country.', 'The', 'eight-week', 'trial'], 'in', ['Miami', 'revealed', 'an', 'extensive', 'cover-up', 'by']]\n",
+ "[['FBI', 'just', 'days', 'after', 'arriving', 'back'], 'in', ['Florida.', 'He', 'subsequently', 'recorded', 'hundreds', 'of']]\n",
+ "[['had', 'been', 'previous', 'operations', 'to', 'smuggle'], 'in', ['political', 'cash', 'from', 'Venezuela', 'to', 'other']]\n",
+ "[['cash', 'from', 'Venezuela', 'to', 'other', 'countries'], 'in', ['the', 'region.', 'An', 'internal', 'review', 'by']]\n",
+ "[['out', 'an', 'attack', 'on', 'July', '13'], 'in', ['which', 'nine', 'U.S.', 'soldiers', 'were', 'killed']]\n",
+ "[['killed', 'and', 'a', 'remote', 'American', 'outpost'], 'in', ['eastern', 'Afghanistan', 'was', 'nearly', 'overrun.', 'Afghan']]\n",
+ "[['villagers', 'repeatedly', 'warned', 'the', 'American', 'troops'], 'in', ['that', 'time', 'that', 'militants', 'were', 'plotting']]\n",
+ "[['weapons', 'and', 'ammunition', 'that', 'were', 'found'], 'in', ['the', 'police', 'barracks', 'in', 'the', 'adjacent']]\n",
+ "[['were', 'found', 'in', 'the', 'police', 'barracks'], 'in', ['the', 'adjacent', 'village', 'of', 'Wanat', 'after']]\n",
+ "[['The', 'police', 'officers', 'were', 'found', 'dressed'], 'in', ['\"crisp,', 'clean', 'new', 'uniforms,\"', 'the', 'report']]\n",
+ "[['back', 'after', 'a', 'pitched', 'four-hour', 'battle,'], 'in', ['which', 'American', 'artillery,', 'warplanes', 'and', 'attack']]\n",
+ "[['called', 'in.', 'Still,', 'the', 'militants', 'fought'], 'in', ['ways', 'that', 'showed', 'imaginative', 'military', 'training,']]\n",
+ "[['they', 'thought', 'were', 'grenades,', 'but', 'were'], 'in', ['fact', 'rocks', 'thrown', 'by', 'Taliban', 'attackers,']]\n",
+ "[['died', 'and', '27', 'were', 'injured,', 'most'], 'in', ['the', 'first', '20', 'minutes', 'of', 'the']]\n",
+ "[['single', 'loss', 'for', 'the', 'American', 'military'], 'in', ['Afghanistan', 'since', 'June', '2005,', 'and', 'one']]\n",
+ "[['the', 'worst', 'overall', 'since', 'the', 'invasion'], 'in', ['late', '2001.', 'It', 'underscored', 'the', 'vulnerability']]\n",
+ "[['underscored', 'the', 'vulnerability', 'of', 'American', 'forces'], 'in', ['Afghanistan,', 'as', 'well', 'as', 'the', 'continuing']]\n",
+ "[['colonel', 'whose', 'identity', 'was', 'not', 'disclosed'], 'in', ['a', 'redacted', 'copy', 'of', 'the', 'report']]\n",
+ "[['arrested.', 'But', 'the', 'senior', 'American', 'commander'], 'in', ['eastern', 'Afghanistan,', 'Maj.', 'Gen.', 'Jeffrey', 'J.']]\n",
+ "[['Lt.', 'Col.', 'Rumi', 'Nielson-Green.', 'Nielson-Green', 'said'], 'in', ['a', 'telephone', 'interview', 'on', 'Monday', 'that']]\n",
+ "[['was', 'unclear', 'whether', 'the', 'police', 'chief'], 'in', ['Wanat', 'was', 'complicit.', 'A', 'spokesman', 'for']]\n",
+ "[['two', 'days', 'of', 'custody,\"', 'he', 'said'], 'in', ['a', 'telephone', 'interview.', 'The', 'report,', 'which']]\n",
+ "[['completed', 'on', 'Aug.', '13', 'and', 'declassified'], 'in', ['recent', 'days', 'to', 'allow', 'military', 'officials']]\n",
+ "[['Team', '--', 'a', 'unit', 'that', 'was'], 'in', ['the', 'final', 'days', 'of', 'a', '15-month']]\n",
+ "[['It', 'concluded', 'that', 'despite', 'reports', 'earlier'], 'in', ['July', 'that', '200', 'to', '300', 'militants']]\n",
+ "[['massing', 'to', 'attack', 'another', 'remote', 'outpost'], 'in', ['the', 'same', 'vicinity,', 'the', 'commanders', 'at']]\n",
+ "[['of', 'the', 'attack', 'have', 'been', 'described'], 'in', ['recent', 'months', 'by', 'publications', 'including', 'The']]\n",
+ "[['said', 'the', 'military', 'continued', 'to', 'patrol'], 'in', ['the', 'region', 'from', 'a', 'larger', 'base']]\n",
+ "[['guards', 'kidnapped', 'a', 'French', 'aid', 'worker'], 'in', ['central', 'Kabul', 'Monday', 'morning', 'and', 'shot']]\n",
+ "[['of', 'incidents', 'spreading', 'alarm', 'among', 'foreigners'], 'in', ['the', 'capital.', 'It', 'was', 'carried', 'out']]\n",
+ "[['nationality,', 'Gayle', 'Williams,', '34,', 'was', 'killed'], 'in', ['Kabul', 'and', 'the', 'Taliban', 'said', 'it']]\n",
+ "[['an', 'Afghan', 'working', 'as', 'a', 'driver'], 'in', ['the', 'intelligence', 'service', 'tackled', 'one', 'of']]\n",
+ "[['drove', 'off,', 'witnesses', 'said.', 'News', 'reports'], 'in', ['Paris', 'said', 'the', 'abducted', 'man', 'was']]\n",
+ "[['and', 'education', 'expert', 'who', 'had', 'been'], 'in', ['Kabul', 'for', 'only', 'a', 'week.', 'He']]\n",
+ "[['colleagues', 'from', 'AFRANE,', 'which', 'also', 'specializes'], 'in', ['education', 'projects,', 'but', 'worked', 'for', 'a']]\n",
+ "[['has', 'been', 'a', 'string', 'of', 'kidnappings'], 'in', ['the', 'capital', 'and', 'neighboring', 'provinces', 'recently']]\n",
+ "[['of', 'a', 'prominent', 'banker', 'were', 'kidnapped'], 'in', ['recent', 'weeks', 'but', 'were', 'freed', 'by']]\n",
+ "[['trooper', 'who', 'was', 'her', 'former', 'brother'], 'in', ['law', 'and', 'did', 'not', 'violate', 'state']]\n",
+ "[['did', 'not', 'violate', 'state', 'ethics', 'laws'], 'in', ['the', 'firing', 'of', 'her', 'state', 'public']]\n",
+ "[['any', 'state', 'employee', 'had', 'acted', 'improperly'], 'in', [\"Monegan's\", 'dismissal.', 'The', 'report', 'said', 'the']]\n",
+ "[['lawyer,', 'Thomas', 'V.', 'Van', 'Flein,', 'said'], 'in', ['a', 'statement,', '\"The', 'governor', 'is', 'grateful']]\n",
+ "[[\"haven't\", 'done', 'it.\"', 'Monegan', 'said', 'Monday'], 'in', ['an', 'interview,', '\"Obviously', \"I'm\", 'disappointed', 'with']]\n",
+ "[['tension', 'over', 'the', 'matter', 'increased', 'dramatically'], 'in', ['late', 'August,', 'when', 'Palin', 'was', 'selected']]\n",
+ "[['as', 'an', 'ethics', 'reformer.', 'Palin', 'said'], 'in', ['the', 'summer', 'that', 'she', 'would', 'cooperate']]\n",
+ "[['state-court', 'injury', 'suits.', 'But', 'the', 'argument'], 'in', ['the', 'Supreme', 'Court', 'on', 'Monday,', 'in']]\n",
+ "[['in', 'the', 'Supreme', 'Court', 'on', 'Monday,'], 'in', ['the', 'case', 'of', 'a', 'Vermont', 'musician']]\n",
+ "[['standards.', 'The', 'drug', 'law', 'at', 'issue'], 'in', ['the', 'case', 'says', 'nothing', 'about', 'pre-emption,']]\n",
+ "[[\"regulators'\", 'actions', 'rather', 'than', 'on', 'statements'], 'in', ['laws', 'enacted', 'by', 'Congress', 'could', 'shut']]\n",
+ "[['could', 'shut', 'down', 'countless', 'injury', 'suits'], 'in', ['cases', 'involving', 'not', 'only', 'drugs', 'but']]\n",
+ "[['the', 'label.', 'Given', 'the', \"justices'\", 'interest'], 'in', ['those', 'finer', 'points,', 'the', 'court', 'seemed']]\n",
+ "[['rule', 'broadly', 'on', 'the', 'larger', 'issues'], 'in', ['the', 'case:', 'whether', 'the', 'agency', 'and']]\n",
+ "[['that', 'states', 'must', 'follow.', 'The', 'plaintiff'], 'in', ['the', 'case', 'argued', 'on', 'Monday,', 'Diana']]\n",
+ "[['said', \"Levine's\", 'case,', 'he', 'added,', 'is'], 'in', ['the', '\"heartland\"', 'of', 'implied', 'pre-emption,', 'given']]\n",
+ "[['to', 'alter', 'them,', 'the', 'court', 'said'], 'in', ['an', 'important', 'test', 'case', 'last', 'month.']]\n",
+ "[['by', 'Congress,', 'Kennedy', 'said.', '\"This', 'flies'], 'in', ['the', 'face', 'of', 'the', 'detailed', 'statutory']]\n",
+ "[['that', 'allow', 'them', 'to', 'consider', 'cost'], 'in', ['deciding', 'whether', 'the', 'program', 'should', 'cover']]\n",
+ "[['forth', 'the', 'touchstone', 'for', 'Medicare', 'coverage'], 'in', ['a', '1965', 'law', 'that', 'created', 'the']]\n",
+ "[['covered,', 'the', 'payment', 'rate', 'is', 'specified'], 'in', ['other', 'parts', 'of', 'the', 'law.', 'The']]\n",
+ "[['Barack', \"Obama's\", 'sweeping', 'exploration', 'of', 'race'], 'in', ['America,', 'delivered', 'in', 'March,', 'in', 'the']]\n",
+ "[['exploration', 'of', 'race', 'in', 'America,', 'delivered'], 'in', ['March,', 'in', 'the', 'midst', 'of', 'the']]\n",
+ "[['race', 'in', 'America,', 'delivered', 'in', 'March,'], 'in', ['the', 'midst', 'of', 'the', 'Rev.', 'Jeremiah']]\n",
+ "[['McCain', 'Video:', '\"He\\'s', 'the', 'biggest', 'celebrity'], 'in', ['the', 'world,\"', 'this', 'ad', 'for', 'Sen.']]\n",
+ "[['Spears,', 'Paris', 'Hilton', 'and', 'Obama', 'speaking'], 'in', ['Berlin.', '\"But', 'is', 'he', 'ready', 'to']]\n",
+ "[['51', 'percent', 'of', 'the', 'popular', 'vote'], 'in', ['the', 'past', '20', 'years.', 'In', 'fact,']]\n",
+ "[['51', 'percent', '--', 'Dwight', 'D.', 'Eisenhower'], 'in', ['both', '1952', 'and', '1956,', 'Lyndon', 'B.']]\n",
+ "[['1952', 'and', '1956,', 'Lyndon', 'B.', 'Johnson'], 'in', ['1964,', 'Richard', 'M.', 'Nixon', 'in', '1972,']]\n",
+ "[['Johnson', 'in', '1964,', 'Richard', 'M.', 'Nixon'], 'in', ['1972,', 'Ronald', 'Reagan', 'in', '1984', 'and']]\n",
+ "[['M.', 'Nixon', 'in', '1972,', 'Ronald', 'Reagan'], 'in', ['1984', 'and', 'George', 'Bush', 'in', '1988.']]\n",
+ "[['Reagan', 'in', '1984', 'and', 'George', 'Bush'], 'in', ['1988.', '--', 'Winning', 'a', 'second', 'term']]\n",
+ "[['has', 'just', 'had', 'two', 'two-term', 'presidents'], 'in', ['a', 'row,', 'Bill', 'Clinton', 'and', 'George']]\n",
+ "[['Bush.', 'The', 'last', 'time', 'three', 'presidents'], 'in', ['a', 'row', 'won', 'two', 'terms', 'came']]\n",
+ "[['--', 'The', 'first', 'president', 'who', 'served'], 'in', ['the', 'Vietnam', 'War', '--', 'The', 'first']]\n",
+ "[['--', 'The', 'second', 'Naval', 'Academy', 'graduate'], 'in', ['the', 'White', 'House', '(after', 'Jimmy', 'Carter)']]\n",
+ "[['Carter)', '--', 'The', 'first', 'president', 'born'], 'in', ['the', 'Panama', 'Canal', 'Zone', 'If', 'Sen.']]\n",
+ "[['president', '--', 'The', 'first', 'president', 'born'], 'in', ['Hawaii', '--', 'The', 'first', 'president', 'elected']]\n",
+ "[['S.', 'Grant', '--', 'The', 'fourth', 'president'], 'in', ['a', 'row', 'with', 'an', 'Ivy', 'League']]\n",
+ "[['And', 'Gov.', 'Sarah', 'Palin', 'warning', 'voters'], 'in', ['Missouri', 'that', 'Democrats', 'would', 'cut', 'defense']]\n",
+ "[['He', 'would', 'continue', 'campaigning', 'on', 'Tuesday'], 'in', ['Colorado', 'and', 'New', 'Mexico,', 'after', 'voting']]\n",
+ "[['Colorado', 'and', 'New', 'Mexico,', 'after', 'voting'], 'in', ['Arizona.', 'Takeaway:', 'McCain', 'is', 'showing', 'once']]\n",
+ "[['who', 'wants', 'it', 'more,', 'who', 'believes'], 'in', ['it', 'more.\"', '--', 'Sen.', 'Barack', 'Obama,']]\n",
+ "[['Sen.', 'Barack', 'Obama,', 'at', 'a', 'rally'], 'in', ['Jacksonville,', 'Fla.', '\"Will', 'we', 'continue', 'to']]\n",
+ "[['Will', 'our', 'military', 'remain', 'the', 'strongest'], 'in', ['the', 'world?', 'Will', 'our', 'children', 'and']]\n",
+ "[['Sen.', 'John', 'McCain,', 'at', 'a', 'rally'], 'in', ['Indianapolis', 'An', 'internal', 'review', 'by', 'the']]\n",
+ "[['out', 'an', 'attack', 'on', 'July', '13'], 'in', ['which', 'nine', 'U.S.', 'soldiers', 'were', 'killed']]\n",
+ "[['killed', 'and', 'a', 'remote', 'American', 'outpost'], 'in', ['eastern', 'Afghanistan', 'was', 'nearly', 'overrun.', 'Afghan']]\n",
+ "[['villagers', 'repeatedly', 'warned', 'the', 'American', 'troops'], 'in', ['that', 'time', 'that', 'militants', 'were', 'plotting']]\n",
+ "[['weapons', 'and', 'ammunition', 'that', 'were', 'found'], 'in', ['the', 'police', 'barracks', 'in', 'the', 'adjacent']]\n",
+ "[['were', 'found', 'in', 'the', 'police', 'barracks'], 'in', ['the', 'adjacent', 'village', 'of', 'Wanat', 'after']]\n",
+ "[['The', 'police', 'officers', 'were', 'found', 'dressed'], 'in', ['\"crisp,', 'clean', 'new', 'uniforms,\"', 'the', 'report']]\n",
+ "[['single', 'loss', 'for', 'the', 'American', 'military'], 'in', ['Afghanistan', 'since', 'June', '2005,', 'and', 'one']]\n",
+ "[['the', 'worst', 'overall', 'since', 'the', 'invasion'], 'in', ['late', '2001.', 'It', 'underscored', 'the', 'vulnerability']]\n",
+ "[['underscored', 'the', 'vulnerability', 'of', 'American', 'forces'], 'in', ['Afghanistan,', 'as', 'well', 'as', 'the', 'continuing']]\n",
+ "[['colonel', 'whose', 'identity', 'was', 'not', 'disclosed'], 'in', ['a', 'redacted', 'copy', 'of', 'the', 'report']]\n",
+ "[['arrested.', 'But', 'the', 'senior', 'American', 'commander'], 'in', ['eastern', 'Afghanistan,', 'Maj.', 'Gen.', 'Jeffrey', 'J.']]\n",
+ "[['Lt.', 'Col.', 'Rumi', 'Nielson-Green.', 'Nielson-Green', 'said'], 'in', ['a', 'telephone', 'interview', 'on', 'Monday', 'that']]\n",
+ "[['was', 'unclear', 'whether', 'the', 'police', 'chief'], 'in', ['Wanat', 'was', 'complicit.', 'A', 'spokesman', 'for']]\n",
+ "[['them.', 'TWIA-GROWTH', 'will', 'not', 'move', 'tonight'], 'in', ['the', 'New', 'York', 'Times', 'News', 'Service']]\n",
+ "[['who', 'wants', 'it', 'more,', 'who', 'believes'], 'in', ['it', 'more.\"', 'McCain', 'sought', 'to', 'motivate']]\n",
+ "[['New', 'Mexico', 'to', 'Nevada.', 'He', 'stopped'], 'in', ['Tennessee,', 'hoping', 'to', 'reach', 'voters', 'in']]\n",
+ "[['in', 'Tennessee,', 'hoping', 'to', 'reach', 'voters'], 'in', ['North', 'Carolina', 'and', 'Virginia,', 'and', 'he']]\n",
+ "[['to', 'return', 'home', 'for', 'a', 'rally'], 'in', ['Arizona', 'in', 'the', 'small', 'hours', 'of']]\n",
+ "[['home', 'for', 'a', 'rally', 'in', 'Arizona'], 'in', ['the', 'small', 'hours', 'of', 'the', 'night.']]\n",
+ "[['hours', 'of', 'the', 'night.', 'Obama,', 'confident'], 'in', ['his', 'standing', 'on', 'Democratic', 'terrain,', 'devoted']]\n",
+ "[['for', 'his', 'upbringing,', 'had', 'died', 'overnight'], 'in', ['Hawaii.', 'Only', 'a', 'few', 'close', 'advisers']]\n",
+ "[['whom', 'he', 'visited', 'late', 'last', 'month'], 'in', ['Honolulu', 'during', 'a', 'brief', 'suspension', 'of']]\n",
+ "[['tinged', 'with', 'emotion.', '\"She', 'died', 'peacefully'], 'in', ['her', 'sleep', 'with', 'my', 'sister', 'at']]\n",
+ "[['not', 'impossible.', '\"Winning', '270', 'is', 'right'], 'in', ['the', 'cards,\"', \"McCain's\", 'campaign', 'manager,', 'Rick']]\n",
+ "[['Monday', 'and', 'sentenced', 'him', 'to', 'life'], 'in', ['prison,', 'giving', 'the', 'Bush', 'administration', 'a']]\n",
+ "[['the', 'Bush', 'administration', 'a', 'second', 'conviction'], 'in', ['a', 'war-crimes', 'trial', 'there.', 'But', 'the']]\n",
+ "[['insisted', 'that', 'his', 'lawyer', 'remain', 'mute'], 'in', ['a', 'weeklong', 'trial', 'that', 'drew', 'little']]\n",
+ "[['killed', '17', 'sailors', 'on', 'the', 'ship'], 'in', ['the', 'Yemeni', 'port', 'of', 'Aden.', 'The']]\n",
+ "[['afternoon,', 'after', 'announcing', 'its', 'guilty', 'verdict'], 'in', ['the', 'morning.', 'The', 'only', 'other', 'detainee']]\n",
+ "[['to', 'providing', 'material', 'support', 'for', 'terrorism'], 'in', ['exchange', 'for', 'a', 'nine-month', 'sentence.', 'Pentagon']]\n",
+ "[['turned:', 'U.S.', 'air', 'strikes', 'against', 'militants'], 'in', ['the', 'tribal', 'areas', 'are', 'unhelpful.', 'Petraeus,']]\n",
+ "[['the', 'former', 'commander', 'of', 'U.S.', 'forces'], 'in', ['Iraq,', 'arrived', 'in', 'Pakistan', 'as', 'missile']]\n",
+ "[['of', 'U.S.', 'forces', 'in', 'Iraq,', 'arrived'], 'in', ['Pakistan', 'as', 'missile', 'strikes', 'from', 'drone']]\n",
+ "[['aircraft', 'against', 'the', 'Taliban', 'and', 'al-Qaida'], 'in', [\"Pakistan's\", 'tribal', 'areas', 'have', 'escalated.', 'There']]\n",
+ "[['bomber', 'killed', 'eight', 'Pakistani', 'paramilitary', 'soldiers'], 'in', ['South', 'Waziristan', 'Sunday.', 'After', 'the', 'meeting']]\n",
+ "[['Asif', 'Ali', 'Zardari', 'of', 'Pakistan', 'said'], 'in', ['a', 'statement,', '\"Continuing', 'drone', 'attacks', 'on']]\n",
+ "[['attacks', 'on', 'our', 'territory,', 'which', 'result'], 'in', ['loss', 'of', 'precious', 'lives', 'and', 'property,']]\n",
+ "[['returned.', 'Petraeus,', 'who', 'has', 'been', 'consulting'], 'in', ['recent', 'weeks', 'with', 'a', 'wide', 'range']]\n",
+ "[['Pakistani', 'military', 'to', 'quell', 'the', 'insurgency'], 'in', ['the', 'tribal', 'areas', 'and', 'on', 'the']]\n",
+ "[['areas', 'and', 'on', 'the', 'deteriorating', 'situation'], 'in', ['Afghanistan,', 'on', 'Friday', 'took', 'over', 'Central']]\n",
+ "[['over', 'Central', 'Command', ',', 'putting', 'him'], 'in', ['overall', 'charge', 'of', 'the', 'American-led', 'military']]\n",
+ "[['charge', 'of', 'the', 'American-led', 'military', 'operations'], 'in', ['both', 'Iraq', 'and', 'Afghanistan.', 'The', \"general's\"]]\n",
+ "[['the', 'paramilitary', 'force', 'that', 'is', 'fighting'], 'in', ['Bajaur.', 'Massachusetts', 'courts', 'are', 'poised', 'to']]\n",
+ "[['and', 'other', 'business', 'activities', 'to', 'entities'], 'in', ['other', 'states.', 'A', 'Massachusetts', 'victory', 'would']]\n",
+ "[['states.', 'A', 'Massachusetts', 'victory', 'would', 'result'], 'in', ['a', 'flood', 'of', 'revenues', 'that', 'would']]\n",
+ "[['Court', 'last', 'month', 'heard', 'final', 'arguments'], 'in', ['cases', 'against', 'Toys', 'Inc.,', 'operator', 'of']]\n",
+ "[['bills.', 'Some', 'of', 'the', 'biggest', 'names'], 'in', ['corporate', 'America', 'are', 'fighting', 'Massachusetts', 'on']]\n",
+ "[['owned', 'by', 'Bank', 'of', 'America', 'Corp.,'], 'in', ['similar', 'cases', 'before', 'supreme', 'courts', 'in']]\n",
+ "[['in', 'similar', 'cases', 'before', 'supreme', 'courts'], 'in', ['Indiana', 'and', 'West', 'Virginia.', 'Indiana', 'and']]\n",
+ "[['authorities', 'won', 'those', 'cases,', 'and', 'officials'], 'in', ['other', 'states', 'have', 'also', 'prevailed', 'against']]\n",
+ "[['odds.', '\"Any', 'time', 'a', 'ruling', 'goes'], 'in', ['the', \"department's\", 'favor,', 'it', 'helps', 'with']]\n",
+ "[['that,\"', 'Bal', 'said.', 'The', 'dispute', 'arose'], 'in', ['the', '1990s', 'when', 'corporations', 'began', 'employing']]\n",
+ "[['years', 'ago', 'set', 'up', 'a', 'subsidiary'], 'in', ['Delaware,', 'and', 'gave', 'that', 'unit', 'ownership']]\n",
+ "[['trademarks.', 'The', 'company', 'had', 'its', 'stores'], 'in', ['Massachusetts', 'and', 'other', 'states', 'pay', 'royalties']]\n",
+ "[['transferred', 'profits', 'that', 'would', 'be', 'taxable'], 'in', ['Massachusetts', 'to', 'a', 'nontax', 'jurisdiction.', 'The']]\n",
+ "[['a', 'nontax', 'jurisdiction.', 'The', 'amount', 'now'], 'in', ['dispute', 'is', '$1.6', 'million,', 'plus', 'penalties']]\n",
+ "[['other', 'companies', 'with', 'similar', 'disputes', 'contend'], 'in', ['court', 'filings', 'the', 'Constitution', 'only', 'allows']]\n",
+ "[['however,', 'has', 'failed', 'to', 'persuade', 'courts'], 'in', ['South', 'Carolina,', 'Louisiana,', 'New', 'York,', 'and']]\n",
+ "[['will', 'continue', 'to', 'seek', 'a', 'resolution'], 'in', ['court.', 'In', 'the', 'Capital', 'One', 'case,']]\n",
+ "[['effectively', 'has', 'a', 'taxable', 'business', 'presence'], 'in', ['Massachusetts', 'because', 'of', 'the', 'thousands', 'of']]\n",
+ "[['does', 'not', 'have', 'employees', 'or', 'property'], 'in', ['Massachusetts,', 'it', 'should', 'not', 'pay', 'state']]\n",
+ "[['on', 'an', 'electronic', 'network', 'with', 'one'], 'in', ['a', 'local', 'bank', 'branch.', '\"This', 'is']]\n",
+ "[['an', 'arrangement', 'the', 'company', 'set', 'up'], 'in', ['the', 'early', '1990s', 'that', 'treated', 'royalty']]\n",
+ "[['the', \"state's\", 'Appellate', 'Tax', 'Board', 'ruled'], 'in', ['the', 'revenue', \"department's\", 'favor,', 'although', 'it']]\n",
+ "[['from', 'its', 'acquisition', 'of', 'AT&T', 'Broadband'], 'in', ['2002.', 'A', 'spokesman', 'for', 'Home', 'Depot']]\n",
+ "[['many', 'of', 'these', 'disputes', 'from', 'arising'], 'in', ['the', 'first', 'place.', 'The', 'law,', 'known']]\n",
+ "[['of', 'the', 'Long', 'Boom,', 'which', 'began'], 'in', ['1983.', 'Politically,', 'it', 'probably', 'marks', 'the']]\n",
+ "[['end', 'of', 'conservative', 'dominance,', 'which', 'began'], 'in', ['1980.', 'Generationally,', 'it', 'marks', 'the', 'end']]\n",
+ "[['of', 'baby', 'boomer', 'supremacy,', 'which', 'began'], 'in', ['1968.', 'For', 'the', 'past', '16', 'years,']]\n",
+ "[['who', 'breaks', 'from', 'the', 'recent', 'past'], 'in', ['almost', 'every', 'way.', 'Barack', 'Obama', 'is']]\n",
+ "[['earlier', 'than', 'Hillary', 'Clinton.', 'For', 'people'], 'in', [\"Obama's\", 'generation,', 'the', 'great', 'disruption', 'had']]\n",
+ "[['prepared:', 'the', 'problem', 'of', 'scarcity.', 'Raised'], 'in', ['prosperity,', 'favored', 'by', 'genetics,', 'these', 'young']]\n",
+ "[['young', 'meritocrats', 'will', 'have', 'to', 'govern'], 'in', ['a', 'period', 'when', 'the', 'demands', 'on']]\n",
+ "[['rest.', 'As', 'Robert', 'J.', 'Samuelson', 'writes'], 'in', ['his', 'forthcoming', 'book,', '\"The', 'Great', 'Inflation']]\n",
+ "[['country', 'can', 'thrive', 'at', 'some', 'point'], 'in', ['the', 'future.', \"We're\", 'probably', 'entering', 'a']]\n",
+ "[['future.', \"We're\", 'probably', 'entering', 'a', 'period,'], 'in', ['other', 'words,', 'in', 'which', 'smart', 'young']]\n",
+ "[['entering', 'a', 'period,', 'in', 'other', 'words,'], 'in', ['which', 'smart', 'young', 'liberals', 'meet', 'a']]\n",
+ "[['mild', 'for', 'this', 'time', 'of', 'year'], 'in', ['many', 'large', 'urban', 'areas,', 'and', 'precipitation']]\n",
+ "[['of', 'course,', 'can', 'be', 'a', 'factor'], 'in', ['voter', 'turnout,', 'especially', 'for', 'Democrats.', 'Because']]\n",
+ "[['affluent', 'than', 'Republicans', 'and', 'to', 'live'], 'in', ['larger', 'cities,', 'the', 'theory', 'goes,', 'they']]\n",
+ "[['to', 'the', 'polls,', 'but', 'also', 'vote'], 'in', ['precincts', 'that', 'are', 'prone', 'to', 'long']]\n",
+ "[['accounts', 'for', 'about', 'a', '5-point', 'swing'], 'in', ['turnout.\"', 'Another', 'study,', 'published', 'in', '2005,']]\n",
+ "[['swing', 'in', 'turnout.\"', 'Another', 'study,', 'published'], 'in', ['2005,', 'found', 'that', 'every', 'inch', 'of']]\n",
+ "[['up', 'to', '3', 'or', '4', 'inches'], 'in', ['some', 'areas.', 'And', 'the', 'Pacific', 'Northwest']]\n",
+ "[['of', 'rain', 'or', 'snow,', 'though', 'primarily'], 'in', ['uncontested', 'Wyoming', '(reliably', 'Republican).', 'Some', 'parts']]\n",
+ "[['as', 'one', 'of', 'the', 'most-contested', 'states'], 'in', ['the', 'campaign,', 'could', 'also', 'be', 'hit']]\n",
+ "[['not', 'likely', 'to', 'be', 'affected.', 'And'], 'in', ['Missouri,', 'where', 'the', 'race', 'is', 'perhaps']]\n",
+ "[['the', 'race', 'is', 'perhaps', 'the', 'tightest'], 'in', ['the', 'country,', '\"it\\'s', 'going', 'to', 'be']]\n",
+ "[['One', 'of', 'the', 'most', 'memorable', 'moments'], 'in', ['the', '1992', 'presidential', 'campaign', 'came', 'on']]\n",
+ "[['from', 'Sen.', 'Barack', 'Obama:', 'Keep', 'them'], 'in', ['your', 'pants.', 'The', 'subject', 'was', 'raised']]\n",
+ "[['health', 'care,', 'dealing', 'with', 'the', 'war'], 'in', ['Iraq,', 'and', 'anybody,', 'any', 'public', 'official,']]\n",
+ "[['one', 'it', 'is,', 'I', 'look', 'good'], 'in', ['them,\"', 'he', 'said,', 'according', 'to', 'the']]\n",
+ "[['the', 'Democratic', 'Party.', 'But', 'that', 'happened'], 'in', ['1976,', 'and', 'in', 'the', 'pages', 'of']]\n",
+ "[['But', 'that', 'happened', 'in', '1976,', 'and'], 'in', ['the', 'pages', 'of', '\"Treasure', 'Chest,\"', 'a']]\n",
+ "[['unearthed', 'it', 'earlier', 'this', 'year.', 'Writing'], 'in', ['1964', 'of', 'an', 'election', '12', 'years']]\n",
+ "[['Reece', 'said,', '\"was', 'get', 'the', 'readers'], 'in', ['deep', 'through', 'this', \"Pettigrew's\", 'integrity,', 'his']]\n",
+ "[['political', 'turmoil', 'of', 'the', 'period,', 'especially'], 'in', ['his', 'home', 'state,', 'Mississippi.', '\"It', 'was']]\n",
+ "[['now', 'has', 'a', 'black', 'governor.', 'And'], 'in', ['his', 'debate', 'with', 'Sen.', 'Oilandgas,', 'Pettigrew']]\n",
+ "[['defend', 'himself', 'against', 'charges', 'of', 'cowardice'], 'in', ['Vietnam.', '\"There', 'was', 'absolutely', 'no', 'way']]\n",
+ "[['boat', 'attack,\"', 'said', 'Reece,', 'now', 'living'], 'in', ['Annapolis,', 'Md.', 'He', 'says', 'the', 'same']]\n",
+ "[['prescience,\"', 'said', 'Reece,', 'who', 'supported', 'Obama'], 'in', ['the', 'Maryland', 'primary.', '\"It', 'was', 'just']]\n",
+ "[['he', 'win?', 'Well,', 'it', 'would', 'depend'], 'in', ['part', 'on', 'how', 'the', 'boys', 'and']]\n",
+ "[['is', 'about', 'to', 'inherit', 'an', 'economy'], 'in', ['a', 'nose', 'dive', 'and', 'a', 'stock']]\n",
+ "[['John', 'McCain', 'as', 'president,', 'the', 'economy'], 'in', ['general', 'and', 'the', 'stock', 'market', 'in']]\n",
+ "[['in', 'general', 'and', 'the', 'stock', 'market'], 'in', ['particular', 'are', 'fixable.', 'Markets', 'are', 'notoriously']]\n",
+ "[['34.5', 'percent', 'since', 'its', 'peak', 'reached'], 'in', ['October', '2007.', 'All', 'but', 'one', 'of']]\n",
+ "[['who', 'took', 'office', 'with', 'the', 'nation'], 'in', ['financial', 'turmoil', 'benefitted', 'from', 'the', 'stock']]\n",
+ "[['a', 'troubled', 'market', 'begin', 'to', 'rebound'], 'in', ['less', 'than', 'four', 'years.', 'All', 'three']]\n",
+ "[['and', 'the', 'economy', 'remained', 'downright', 'dire'], 'in', ['1936', 'after', \"Roosevelt's\", 'first', 'four', 'years']]\n",
+ "[['1936', 'after', \"Roosevelt's\", 'first', 'four', 'years'], 'in', ['office.', 'But', 'stock', 'prices', 'had', 'moved']]\n",
+ "[['stock', 'prices', 'had', 'moved', 'sharply', 'higher'], 'in', ['each', 'case.', 'The', 'stock', 'market', 'roughly']]\n",
+ "[['case.', 'The', 'stock', 'market', 'roughly', 'tripled'], 'in', ['value', 'during', 'the', 'first', 'Roosevelt', 'term.']]\n",
+ "[['\"But', 'if', 'they', 'appear', 'to', 'be'], 'in', ['charge', 'and', 'do', 'things', 'to', 'address']]\n",
+ "[['by', 'the', 'time', 'Roosevelt', 'took', 'office'], 'in', ['1933,', 'it', 'was', 'almost', 'impossible', 'for']]\n",
+ "[['way', 'around.', 'Reagan', 'came', 'to', 'office'], 'in', ['early', '1981', 'pursuing', 'change', 'his', 'admirers']]\n",
+ "[[\"market's\", 'relationship', 'to', 'the', 'White', 'House'], 'in', ['those', 'years.', 'After', 'taking', 'office', 'in']]\n",
+ "[['in', 'those', 'years.', 'After', 'taking', 'office'], 'in', ['the', 'summer', 'of', '1974,', 'Ford', 'labored']]\n",
+ "[['the', 'stock', 'market', 'as', 'decisions', 'made'], 'in', ['the', 'White', 'House.', 'Policies', 'are', 'important,']]\n",
+ "[['veteran', 'portfolio', 'manager', 'at', 'Pioneer', 'Investments'], 'in', ['Boston.', '\"But', 'I', 'think', \"it's\", 'the']]\n",
+ "[['market', 'of', 'Bill', 'Clinton,', 'who', 'arrived'], 'in', ['and', 'departed', 'from', 'Washington', 'under', 'ideal']]\n",
+ "[['to', '35', 'at', 'its', 'Marlborough', 'headquarters,'], 'in', ['the', 'latest', 'sign', 'that', 'Massachusetts', 'technology']]\n",
+ "[['sold', 'software', 'directly', 'to', 'business', 'customers'], 'in', ['the', 'United', 'States.', '\"We\\'re', 'prepared', 'for']]\n",
+ "[['\"We\\'ve', 'seen', 'signs', 'of', 'a', 'slowdown'], 'in', ['the', 'past', 'year,', 'so', 'we', 'dialed']]\n",
+ "[['technology', 'that', 'enables', 'one', 'networking', 'machine'], 'in', ['a', 'corporate', 'data', 'center', 'to', 'behave']]\n",
+ "[['healthcare,', 'manufacturing,', 'service,', 'and', 'retail', 'businesses'], 'in', ['the', 'United', 'States', 'and', 'worldwide.', 'But']]\n",
+ "[['the', 'United', 'States', 'and', 'worldwide.', 'But'], 'in', ['the', 'third', 'quarter,', 'ended', 'Sept.', '30,']]\n",
+ "[['fallout', 'from', 'an', 'economic', 'crisis', 'originating'], 'in', ['the', 'housing', 'and', 'financial', 'sectors,', 'also']]\n",
+ "[['it', 'will', 'be', 'closing', 'a', 'plant'], 'in', ['Ayer', 'between', 'now', 'and', 'Jan.', '31,']]\n",
+ "[['said', \"it's\", 'laying', 'off', '54', 'workers'], 'in', ['Massachusetts', 'and', '20', 'in', 'New', 'Hampshire.']]\n",
+ "[['54', 'workers', 'in', 'Massachusetts', 'and', '20'], 'in', ['New', 'Hampshire.', 'And', 'at', 'least', 'three']]\n",
+ "[['least', 'three', 'dozen', 'Verizon', 'Communications', 'engineers'], 'in', ['Massachusetts', 'and', 'Rhode', 'Island', 'will', 'lose']]\n",
+ "[['making', 'companies', 'anxious', 'about', 'keeping', 'costs'], 'in', ['line', 'with', 'projected', 'sales,', 'analysts', 'said.']]\n",
+ "[['of', 'research', 'firm', 'Endpoint', 'Technologies', 'Associates'], 'in', ['Wayland.', '\"Some', 'of', 'it', 'is', 'just']]\n",
+ "[['backed', 'by', 'venture', 'capital,', 'was', 'founded'], 'in', ['March', '2000', 'by', 'Vern', 'Brownell,', 'a']]\n",
+ "[['machines', 'that', 'carried', 'more', 'processing', 'power'], 'in', ['less', 'rack', 'space,', 'it', 'has', 'gradually']]\n",
+ "[['rack', 'space,', 'it', 'has', 'gradually', 'transitioned'], 'in', ['recent', 'years', 'to', 'virtualization', 'software,', 'a']]\n",
+ "[['had', 'sold', 'directly', 'to', 'end', 'users'], 'in', ['the', 'United', 'States.', 'By', 'switching', 'to']]\n",
+ "[['Egenera', 'hopes', 'to', 'eventually', 'go', 'public'], 'in', ['an', 'initial', 'public', 'offering,', 'but', 'he']]\n",
+ "[['stimulus', 'package', 'on', 'Monday,', 'the', 'latest'], 'in', ['a', 'string', 'of', 'steps', 'by', 'governments']]\n",
+ "[['and', 'has', 'the', 'highest', 'unemployment', 'rate'], 'in', ['the', 'European', 'Union.', 'Prime', 'Minister', 'Jose']]\n",
+ "[['Rodriguez', 'Zapatero', 'told', 'a', 'news', 'conference'], 'in', ['Madrid', 'that', 'the', 'package', 'would', 'also']]\n",
+ "[['monthly', 'bill', 'for', 'two', 'years', 'starting'], 'in', ['January', '--', 'as', 'long', 'as', 'the']]\n",
+ "[['Spain', 'had', 'been', 'a', 'European', 'leader'], 'in', ['terms', 'of', 'job', 'creation', 'in', 'the']]\n",
+ "[['leader', 'in', 'terms', 'of', 'job', 'creation'], 'in', ['the', 'last', 'decade,', 'as', 'well', 'as']]\n",
+ "[['the', 'last', 'decade,', 'as', 'well', 'as'], 'in', ['home', 'building.', 'But', 'the', 'economy', 'has']]\n",
+ "[['introduced', 'for', 'companies', 'hiring', 'people', 'working'], 'in', ['research', 'and', 'development', 'and', 'renewable', 'energy.']]\n",
+ "[['struggling', 'to', 'pay', 'billions', 'of', 'dollars'], 'in', ['short-term', 'loans,', 'has', 'announced', 'a', 'series']]\n",
+ "[['announced', 'a', 'series', 'of', 'emergency', 'measures'], 'in', ['recent', 'weeks.', 'The', 'latest,', 'announced', 'Monday']]\n",
+ "[['additional', '11', 'trillion', 'won', '($8.7', 'billion)'], 'in', ['government', 'spending', 'and', '3', 'trillion', 'won']]\n",
+ "[['government', 'spending', 'and', '3', 'trillion', 'won'], 'in', ['tax', 'cuts.', 'These', 'are', 'aimed', 'mainly']]\n",
+ "[['as', 'fresh', 'data', 'showed', 'export', 'growth'], 'in', ['October', 'had', 'slowed', 'to', 'its', 'lowest']]\n",
+ "[['had', 'slowed', 'to', 'its', 'lowest', 'pace'], 'in', ['13', 'months.', 'Weak', 'economic', 'data', 'in']]\n",
+ "[['in', '13', 'months.', 'Weak', 'economic', 'data'], 'in', ['Australia', 'were', 'also', 'expected', 'to', 'prompt']]\n",
+ "[['Sept.', '3,', 'and', 'bring', 'the', 'total'], 'in', ['rate', 'cuts', 'to', '1.75', 'percentage', 'points.']]\n",
+ "[['prices', 'for', 'iron', 'ore', 'and', 'copper'], 'in', ['recent', 'months.', 'Data', 'released', 'Monday', 'showed']]\n",
+ "[['showed', 'retail', 'sales', 'fell', '1.1', 'percent'], 'in', ['September,', 'much', 'more', 'than', 'had', 'been']]\n",
+ "[['a', 'flurry', 'of', 'interest', 'rate', 'cuts'], 'in', ['the', 'United', 'States', 'and', 'elsewhere,', 'over']]\n",
+ "[['loosening', 'limits', 'on', 'bank', 'lending.', 'Signs'], 'in', ['China', 'also', 'indicate', 'that', 'growth', 'is']]\n",
+ "[['the', 'White', 'House,', 'capping', 'a', 'campaign'], 'in', ['which', 'the', 'candidates', 'fought', 'conventional', 'skirmishes']]\n",
+ "[['series', 'of', 'states', 'President', 'Bush', 'won'], 'in', ['2004.', 'Obama,', 'sobered', 'by', 'his', '86-year-old']]\n",
+ "[['early', 'Monday,', 'finished', 'with', 'three', 'rallies'], 'in', ['Republican', 'bastions', '-', 'Florida,', 'North', 'Carolina,']]\n",
+ "[['McCain', 'said', 'at', 'an', 'airport', 'hangar'], 'in', ['Blountville,', 'Tenn.,', 'a', 'stop', 'targeting', 'media']]\n",
+ "[['Tenn.,', 'a', 'stop', 'targeting', 'media', 'markets'], 'in', ['southwest', 'Virginia', 'and', 'northwest', 'North', 'Carolina.']]\n",
+ "[[\"they're\", 'all', 'about,', 'my', 'friends.\"', 'Twice'], 'in', ['one', 'speech,', 'he', 'accused', 'Obama', 'of']]\n",
+ "[['speech,', 'he', 'accused', 'Obama', 'of', 'being'], 'in', ['the', '\"far-left', 'lane', 'of', 'American', 'politics,\"']]\n",
+ "[['average', 'workers.', 'At', 'his', 'first', 'rally,'], 'in', ['front', 'of', 'more', 'than', '9,000', 'people']]\n",
+ "[['Obama', 'hammered', 'McCain', 'anew', 'for', 'saying,'], 'in', ['the', 'same', 'setting', 'on', 'Sept.', '15,']]\n",
+ "[['Chairman', 'Alan', 'Greenspan', 'said', 'we', 'were'], 'in', ['a', \"'once\", 'in', 'a', \"century'\", 'crisis,\"']]\n",
+ "[['said', 'we', 'were', 'in', 'a', \"'once\"], 'in', ['a', \"century'\", 'crisis,\"', 'he', 'continued.', '\"Florida,']]\n",
+ "[['if', 'their', 'policy', 'clashes', 'resemble', 'those'], 'in', ['past', 'elections,', 'their', 'battlefield', 'most', 'certainly']]\n",
+ "[['spending', 'the', 'eve', 'of', 'the', 'election'], 'in', ['North', 'Carolina,', 'which', 'last', 'voted', 'for']]\n",
+ "[['Of', 'the', '20', 'events', 'Obama', 'held'], 'in', ['the', 'final', 'full', 'week', 'of', 'campaigning,']]\n",
+ "[['Philadelphia', 'a', 'week', 'ago', '-', 'was'], 'in', ['a', 'state', 'that', 'Democrat', 'John', 'F.']]\n",
+ "[['that', 'Democrat', 'John', 'F.', 'Kerry', 'won'], 'in', ['2004.', 'The', 'rest', 'were', 'in', 'the']]\n",
+ "[['won', 'in', '2004.', 'The', 'rest', 'were'], 'in', ['the', 'traditional', 'battlegrounds', 'of', 'Florida', 'and']]\n",
+ "[['of', 'campaigning', 'was', 'a', 'late-night', 'rally'], 'in', ['Manassas,', 'Va.,', 'outside', 'Washington,', 'D.C.,', 'in']]\n",
+ "[['in', 'Manassas,', 'Va.,', 'outside', 'Washington,', 'D.C.,'], 'in', ['Prince', 'William', 'County,', 'which', 'Bush', 'won']]\n",
+ "[['Bush', 'won', 'by', 'seven', 'percentage', 'points'], 'in', ['2004.', 'McCain,', 'who', 'has', 'followed', 'a']]\n",
+ "[['asserted', 'confidence', 'about', 'his', 'chances', 'Tuesday'], 'in', ['the', 'face', 'of', 'what', 'polls', 'suggest']]\n",
+ "[['day', 'left', 'until', 'we', 'take', 'America'], 'in', ['a', 'new', 'direction,\"', 'McCain', 'told', 'a']]\n",
+ "[['told', 'a', 'raucous,', 'salsa-paced', 'midnight', 'rally'], 'in', ['Miami', 'alongside', 'actor', 'Kelsey', 'Grammer', 'and']]\n",
+ "[['Tampa,', 'a', 'booming', 'coastal', 'metropolis', 'rich'], 'in', ['suburban', 'independents', 'to', 'Prescott,', 'the', 'old']]\n",
+ "[['a', 'state', 'that', 'has', 'become', 'competitive'], 'in', ['the', \"campaign's\", 'closing', 'weeks.', 'Fueled', 'by']]\n",
+ "[['McCain', 'campaigned', 'Monday', 'voted', 'for', 'Bush'], 'in', ['2004.', 'He', 'is', 'expected', 'to', 'visit']]\n",
+ "[['Tuesday.', 'Obama', 'will', 'spend', 'Election', 'Night'], 'in', ['Chicago,', 'but', 'plans', 'a', 'quick', 'side']]\n",
+ "[['midday.', 'His', 'campaign', 'is', 'expressing', 'confidence'], 'in', ['its', 'turnout', 'operation.', 'More', 'than', '29']]\n",
+ "[['operation.', 'More', 'than', '29', 'million', 'people'], 'in', ['30', 'states', 'already', 'voted', 'as', 'of']]\n",
+ "[['and', 'heavy', 'early', 'voting', 'by', 'Democrats'], 'in', ['several', 'swing', 'states', 'suggests', 'that', 'Obama']]\n",
+ "[['was', 'calm,', 'befitting', 'a', 'candidate', 'ahead'], 'in', ['the', 'polls.', '\"I', 'feel', 'pretty', 'peaceful,']]\n",
+ "[['Monday', 'became', 'the', 'first', 'commercial', 'lender'], 'in', ['Germany', 'to', 'accept', 'government', 'cash,', 'while']]\n",
+ "[['an', 'indication', 'of', 'the', 'continuing', 'weakness'], 'in', ['the', 'sector.', 'Commerzbank,', 'based', 'in', 'Frankfurt,']]\n",
+ "[['weakness', 'in', 'the', 'sector.', 'Commerzbank,', 'based'], 'in', ['Frankfurt,', 'said', 'it', 'would', 'avail', 'itself']]\n",
+ "[['Generale', 'announced', 'a', '$7.2', 'billion', 'loss'], 'in', ['January', 'that', 'it', 'pinned', 'on', 'a']]\n",
+ "[['It', 'wrote', 'off', '1.4', 'billion', 'euros'], 'in', ['the', 'latest', 'quarter.', 'Markets', 'worldwide', 'were']]\n",
+ "[['latest', 'quarter.', 'Markets', 'worldwide', 'were', 'buffeted'], 'in', ['the', 'third', 'quarter,', 'when', 'the', 'investment']]\n",
+ "[['lending', 'largely', 'ground', 'to', 'a', 'halt'], 'in', ['the', 'quarter.', \"Commerzbank's\", 'chief', 'executive,', 'Martin']]\n",
+ "[['said', 'the', \"government's\", 'aid', 'would', 'be'], 'in', ['the', 'form', 'of', '\"silent', 'participation\"', '--']]\n",
+ "[['The', 'bank', 'will', 'pay', 'no', 'dividend'], 'in', ['2009', 'or', '2010,', 'and', 'will', 'limit']]\n",
+ "[['and', 'wrote', 'down', '952', 'million', 'euros'], 'in', ['investments.', 'Last', 'week,', 'Hypo', 'Real', 'Estate,']]\n",
+ "[['Monday', 'that', 'its', 'losses', 'grew', 'sharply'], 'in', ['the', 'first', 'nine', 'months.', 'It', 'said']]\n",
+ "[['or', '$2.8', 'billion,', 'for', 'soured', 'loans'], 'in', ['its', 'corporate', 'division,', 'and', 'had', 'lost']]\n",
+ "[['of', '150', 'million', 'pounds', 'were', 'likely'], 'in', ['relation', 'to', 'losses', 'on', 'Icelandic', 'bank']]\n",
+ "[['Shares', 'of', 'Commerzbank', 'rose', '1.6', 'percent'], 'in', ['Frankfurt', 'afternoon', 'trading,', 'while', 'Societe', 'Generale']]\n",
+ "[['while', 'Societe', 'Generale', 'rose', '0.2', 'percent'], 'in', ['Paris.', 'In', 'London,', 'shares', 'of', 'HBOS']]\n",
+ "[['him', '\"Coach', 'Sean.\"', 'At', 'Market', 'Basket'], 'in', ['Andover,', 'where', 'he', 'bagged', 'groceries,', 'customers']]\n",
+ "[['to', 'help', 'others', 'was', 'the', 'one'], 'in', ['desperate', 'need', 'as', 'a', 'fire', 'engulfed']]\n",
+ "[['fire', 'engulfed', 'his', 'house.', 'Neighbors', 'watched'], 'in', ['horror', 'as', 'he', 'leaned', 'out', 'of']]\n",
+ "[['mother,', '51-year-old', 'Linda', 'Cahalane,', 'rushed', 'back'], 'in', ['to', 'save', 'her', 'son.', 'But', 'both']]\n",
+ "[['officials', 'said,', 'after', 'a', 'short', 'circuit'], 'in', ['the', 'electric', 'baseboard', 'heating', 'unit', 'sparked']]\n",
+ "[['electric', 'baseboard', 'heating', 'unit', 'sparked', 'flames'], 'in', ['the', 'kitchen.', 'Sean', 'and', 'Linda', 'Cahalane']]\n",
+ "[['Cahalane', 'were', 'sleeping', 'as', 'Russell', 'worked'], 'in', ['his', 'office,', 'said', 'Watterson,', 'who', 'spoke']]\n",
+ "[['three', 'who', 'insisted', 'that', 'Sean', 'stay'], 'in', ['regular', 'classes.', 'She', 'loved', 'watching', 'videos']]\n",
+ "[['Whittier', 'Regional', 'Vocational', 'Technical', 'High', 'School'], 'in', ['2007,', 'was', 'self-sufficient', 'and', 'independent.', 'In']]\n",
+ "[['the', \"school's\", 'athletic', 'director,', 'Kevin', 'Bradley'], 'in', ['a', 'statement', 'released', 'by', 'the', 'school.']]\n",
+ "[['scope', 'of', 'a', 'planned', 'advertising', 'partnership'], 'in', ['a', 'last-minute', 'effort', 'to', 'win', 'the']]\n",
+ "[['been', 'struggling', 'to', 'accelerate', 'its', 'growth'], 'in', ['the', 'wake', 'of', 'failed', 'merger', 'talks']]\n",
+ "[['receive', '$250', 'million', 'to', '$450', 'million'], 'in', ['additional', 'operating', 'cash', 'flow', 'from', 'the']]\n",
+ "[['operating', 'cash', 'flow', 'from', 'the', 'agreement'], 'in', ['its', 'first', 'year.', 'For', 'Google,', 'a']]\n",
+ "[['and', 'Yahoo', 'announced', 'their', 'planned', 'partnership'], 'in', ['June.', 'They', 'agreed', 'to', 'delay', 'it']]\n",
+ "[['is', 'an', 'enormously', 'popular,', 'can-do-no-wrong', 'player'], 'in', ['the', 'eyes', 'of', 'his', 'constituents,', 'who']]\n",
+ "[['been', 'traded', 'for', 'a', 'second', 'time'], 'in', ['less', 'than', 'two', 'years.', '\"The', 'Answer\"']]\n",
+ "[['his', 'physical', 'peak', 'and', 'b)', 'set'], 'in', ['his', 'ways.', 'There', 'is', 'a', 'chance']]\n",
+ "[['by', 'their', 'play', 'against', 'the', 'Celtics'], 'in', ['the', '2008', 'playoffs', 'that', 'the', 'window']]\n",
+ "[['acquired', 'him', 'with', 'a', 'larger', 'idea'], 'in', ['mind.', 'Can', 'Allen', 'Iverson', 'deal', 'with']]\n",
+ "[['an', 'NBA', 'championship,', 'that', 'he', 'is,'], 'in', ['addition', 'to', 'being', 'an', 'experienced', 'player']]\n",
+ "[['were', 'schooling', 'Iverson', 'and', 'Victor', 'Page'], 'in', ['the', '1996', 'NCAA', 'Eastern', 'Regionals', 'down']]\n",
+ "[['1996', 'NCAA', 'Eastern', 'Regionals', 'down', 'there'], 'in', ['Atlanta.', 'That', 'was', 'a', 'glorious', 'day']]\n",
+ "[['glory,', 'regardless', 'of', 'what', 'took', 'place'], 'in', ['the', 'Georgia', 'Dome', 'that', 'Sunday', 'afternoon.']]\n",
+ "[['got', 'to', 'the', 'NBA', 'Finals', 'once,'], 'in', ['2001', 'against', 'the', 'Lakers,', 'and', 'his']]\n",
+ "[['one', 'of', 'the', 'most', 'intriguing', 'players'], 'in', ['the', 'history', 'of', 'the', 'NBA.', 'There']]\n",
+ "[[\"Iverson's\", 'fearlessness', 'and', 'ability', 'to', 'play'], 'in', ['pain', 'were', 'K.C.', 'Jones', 'and', 'Norm']]\n",
+ "[[\"Stormin'\", 'could', 'have', 'led', 'this', 'league'], 'in', ['scoring', 'even', 'if', 'they', 'had', 'been']]\n",
+ "[['eternal', 'issue', 'with', 'all', 'extraordinary', 'virtuosos'], 'in', ['this', 'game,', 'whether', 'they', 'be', '7-foot']]\n",
+ "[['talent', 'with', 'the', 'other', 'four', 'people'], 'in', ['order', 'to', 'best', 'help', 'a', 'team']]\n",
+ "[['6-1', 'player', 'who', 'can', 'affect', 'basketball'], 'in', ['the', 'long', 'run', 'the', 'way', 'the']]\n",
+ "[['guards', 'fitting', 'a', 'specific', 'team', 'need'], 'in', ['a', 'given', 'point', 'in', 'time', 'help']]\n",
+ "[['team', 'need', 'in', 'a', 'given', 'point'], 'in', ['time', 'help', 'teams', 'win', 'championships.', 'This']]\n",
+ "[['be', 'reached', 'at', 'ryan@globe.com.', 'The', 'mood'], 'in', ['the', \"Patriots'\", 'locker', 'room', 'following', 'their']]\n",
+ "[['Patriots', \"don't\", 'have', 'time', 'to', 'wallow'], 'in', ['pigskin', 'self-pity.', 'With', 'next', 'to', 'no']]\n",
+ "[['5-3', 'halfway', 'through', 'the', 'season,', 'locked'], 'in', ['a', 'three-way', 'tie', 'with', 'the', 'Buffalo']]\n",
+ "[['New', 'York', 'Jets', 'for', 'first', 'place'], 'in', ['the', 'AFC', 'East.', 'This', \"Sunday's\", 'crucial']]\n",
+ "[['games', 'will', 'go', 'a', 'long', 'way'], 'in', ['deciding', 'whether', 'the', 'Patriots', 'can', 'win']]\n",
+ "[['still', 'losing', 'has', 'to', 'be', 'left'], 'in', ['the', 'locker', 'room', 'at', 'Lucas', 'Oil']]\n",
+ "[['the', 'Patriots', 'will', 'be', 'left', 'behind'], 'in', ['the', 'AFC', 'East.', '\"You', 'got', 'to']]\n",
+ "[['Their', '36-10', 'record', '(.783', 'winning', 'percentage)'], 'in', ['divisional', 'play', 'since', '2001', 'is', 'the']]\n",
+ "[['play', 'since', '2001', 'is', 'the', 'best'], 'in', ['the', 'NFL.', 'But', 'this', 'year', 'is']]\n",
+ "[['is', 'different.', 'The', 'balance', 'of', 'power'], 'in', ['the', 'division', 'shifted', 'the', 'moment', 'Chiefs']]\n",
+ "[['Pollard', 'plowed', 'into', \"Brady's\", 'left', 'knee'], 'in', ['the', 'season', 'opener.', 'While', 'the', 'Bills,']]\n",
+ "[['team', 'and', 'how', 'explosive', 'they', 'are'], 'in', ['the', 'return', 'game,', 'on', 'special', 'teams']]\n",
+ "[['up', 'front', 'with', 'some', 'talented', 'guys'], 'in', ['the', 'secondary', 'it', \"doesn't\", 'surprise', 'me']]\n",
+ "[['They', 'have', 'an', 'explosive', 'wide', 'receiver'], 'in', ['Evans,', 'who', 'is', 'averaging', '19.4', 'yards']]\n",
+ "[['per', 'catch,', 'a', 'talented', 'running', 'back'], 'in', ['Lynch,', 'and', 'a', 'quality', 'quarterback', 'in']]\n",
+ "[['in', 'Lynch,', 'and', 'a', 'quality', 'quarterback'], 'in', ['Trent', 'Edwards,', 'who', 'in', 'his', 'second']]\n",
+ "[['quality', 'quarterback', 'in', 'Trent', 'Edwards,', 'who'], 'in', ['his', 'second', 'season', 'out', 'of', 'Stanford']]\n",
+ "[['a', '5-1', 'start,', 'both', 'losses', 'coming'], 'in', ['the', 'division.', 'Working', 'in', 'the', \"Patriots'\"]]\n",
+ "[['losses', 'coming', 'in', 'the', 'division.', 'Working'], 'in', ['the', \"Patriots'\", 'favor', 'is', 'that', 'the']]\n",
+ "[['tormentor', 'who', 'has', 'a', 'torn', 'tendon'], 'in', ['his', 'left', 'foot', 'and', 'has', 'missed']]\n",
+ "[['is', 'really', 'when', 'we', 'start', 'zeroing'], 'in', ['on', 'them.\"', \"That's\", 'good', 'because', 'the']]\n",
+ "[['of', 'the', 'division', 'teams', 'are', 'zeroing'], 'in', ['on', 'the', 'Patriots,', 'and', 'they', \"don't\"]]\n",
+ "[['drive', 'for', 'a', 'division', 'title', 'is'], 'in', ['full', 'gear.', '\"After', 'a', 'loss', 'like']]\n",
+ "[['three', 'times:', 'In', '2004,', 'they', 'married'], 'in', ['a', 'daze.', 'In', '2005,', 'they', 'married']]\n",
+ "[['counted', 'under', 'the', 'law,', 'they', 'married'], 'in', ['a', 'hurry.', '\"We\\'re', 'doing', 'this', 'while']]\n",
+ "[['measure', 'Tuesday', 'on', 'outlawing', 'same-sex', 'marriage'], 'in', ['California', 'a', 'toss-up,', 'couples', 'were', 'not']]\n",
+ "[['The', 'rush', 'to', 'the', 'altar', 'was'], 'in', ['anticipation', 'of', 'Proposition', '8,', 'which', 'would']]\n",
+ "[['five', 'months', 'of', 'legalized', 'same-sex', 'marriages'], 'in', ['the', 'state.', 'The', 'ban,', 'if', 'approved,']]\n",
+ "[['would', 'take', 'effect', 'Wednesday.', '\"We\\'re', 'here'], 'in', ['case', 'of', 'what', 'happens', 'tomorrow,\"', 'said']]\n",
+ "[['who', 'married', 'his', 'partner,', 'Michael', 'Golden,'], 'in', ['San', 'Francisco', 'on', 'Monday,', 'both', 'wearing']]\n",
+ "[['time', '--', 'over', 'allowing', 'same-sex', 'unions'], 'in', ['the', 'state,', 'it', 'is', 'expected', 'that']]\n",
+ "[['As', 'a', 'new', 'president', 'takes', 'office'], 'in', ['Washington,', 'the', 'Czech', 'Republic', 'assumes', 'the']]\n",
+ "[['one', 'of', 'the', 'worst', 'economic', 'conflagrations'], 'in', ['a', 'century.', 'But', 'instead', 'of', 'welcoming']]\n",
+ "[['to', 'carve', 'up', 'Czechoslovakia.', 'He', 'said'], 'in', ['late', 'October', 'that', 'the', 'Czech', 'presidency']]\n",
+ "[['European', 'Union', 'at', 'a', 'sensitive', 'point'], 'in', ['history', 'seems', 'to', 'have', 'brought', 'out']]\n",
+ "[['is', 'teetering', 'badly', 'after', 'huge', 'losses'], 'in', ['recent', 'regional', 'elections,', 'prompting', 'alarm', 'that']]\n",
+ "[['to', 'taming', 'its', 'former', 'master.', 'Some'], 'in', ['France,', 'current', 'holder', 'of', 'the', 'presidency,']]\n",
+ "[['Czech', 'Republic,', 'supported', 'the', 'U.S.-led', 'war'], 'in', ['Iraq,', 'prompting', 'Jacques', 'Chirac,', 'then', 'president']]\n",
+ "[['divide', 'nevertheless', 'threatens', 'to', 'emerge,', 'predicated'], 'in', ['part', 'on', 'divergent', 'approaches', 'to', 'steering']]\n",
+ "[['cousin', 'Slovakia', 'moves', 'to', 'adopt', 'it'], 'in', ['January,', 'has', 'prompted', 'some', 'observers', 'to']]\n",
+ "[['pumped', 'cash', 'into', 'faltering', 'Czech', 'banks'], 'in', ['the', 'late', '1990s,', 'which', 'was', 'now']]\n",
+ "[['European', 'Union,', 'while', 'the', 'manufacturing', 'sector'], 'in', ['the', 'country', 'is', 'suffering.', 'As', 'for']]\n",
+ "[['ambivalence', 'toward', 'the', 'European', 'Union', 'stems'], 'in', ['part', 'from', 'instinctive', 'distrust', 'for', 'Europe']]\n",
+ "[['who', 'heads', 'the', 'foreign', 'affairs', 'committee'], 'in', ['Parliament,', 'said', 'Czechs', 'remembered', 'that', 'Americans']]\n",
+ "[['the', 'rest', 'of', 'Europe,', 'three', 'times'], 'in', ['the', '20th', 'century', '--', 'in', 'World']]\n",
+ "[['times', 'in', 'the', '20th', 'century', '--'], 'in', ['World', 'Wars', 'I', 'and', 'II', 'and']]\n",
+ "[['United', 'States,', 'his', 'French', 'counterparts', 'were'], 'in', ['thrall', 'of', 'protectionism,', 'higher', 'taxes,', 'jobs']]\n",
+ "[[\"Obama's\", 'grandmother,', 'died', 'late', 'Sunday', 'evening'], 'in', ['Hawaii', 'after', 'battling', 'cancer,', 'which', 'Obama']]\n",
+ "[['campaign', 'rally', 'here.', '\"She', 'died', 'peacefully'], 'in', ['her', 'sleep', 'with', 'my', 'sister', 'at']]\n",
+ "[['carried', 'through', 'with', 'a', 'morning', 'rally'], 'in', ['Florida', 'without', 'making', 'an', 'announcement.', 'A']]\n",
+ "[['statement', 'was', 'issued', 'by', 'the', 'campaign,'], 'in', [\"Obama's\", 'name,', 'before', 'he', 'spoke', 'at']]\n",
+ "[['he', 'spoke', 'at', 'a', 'late-afternoon', 'rally'], 'in', ['Charlotte.', 'Dunham', 'was', 'the', 'final', 'remaining']]\n",
+ "[['raise', 'Obama', 'during', 'his', 'teenage', 'years'], 'in', ['Hawaii.', 'He', 'called', 'her', 'Toot,', 'his']]\n",
+ "[['broke', 'from', 'the', 'presidential', 'campaign', 'trail'], 'in', ['late', 'October', 'to', 'travel', 'to', 'Honolulu']]\n",
+ "[['her,', 'as', 'she', 'lay', 'gravely', 'ill'], 'in', ['the', 'small', 'apartment', 'where', 'he', 'lived']]\n",
+ "[['television.', 'Yet', 'she', 'became', 'a', 'figure'], 'in', ['his', 'campaign,', 'seen', 'through', 'images', 'in']]\n",
+ "[['in', 'his', 'campaign,', 'seen', 'through', 'images'], 'in', ['television', 'commercials', 'intended', 'to', 'give', 'him']]\n",
+ "[['who', 'had', 'such', 'a', 'profound', 'impact'], 'in', ['their', 'lives.\"', 'His', \"grandmother's\", 'illness', 'had']]\n",
+ "[['illness', 'had', 'been', 'weighing', 'on', 'him'], 'in', ['recent', 'weeks,', 'friends', 'said,', 'which', 'is']]\n",
+ "[['stimulus', 'package', 'on', 'Monday,', 'the', 'latest'], 'in', ['a', 'string', 'of', 'steps', 'by', 'governments']]\n",
+ "[['and', 'has', 'the', 'highest', 'unemployment', 'rate'], 'in', ['the', 'European', 'Union.', 'Prime', 'Minister', 'Jose']]\n",
+ "[['Rodriguez', 'Zapatero', 'told', 'a', 'news', 'conference'], 'in', ['Madrid', 'that', 'the', 'package', 'would', 'also']]\n",
+ "[['monthly', 'bill', 'for', 'two', 'years', 'starting'], 'in', ['January', '--', 'as', 'long', 'as', 'the']]\n",
+ "[['Spain', 'had', 'been', 'a', 'European', 'leader'], 'in', ['terms', 'of', 'job', 'creation', 'in', 'the']]\n",
+ "[['leader', 'in', 'terms', 'of', 'job', 'creation'], 'in', ['the', 'last', 'decade,', 'as', 'well', 'as']]\n",
+ "[['the', 'last', 'decade,', 'as', 'well', 'as'], 'in', ['home', 'building.', 'But', 'the', 'economy', 'has']]\n",
+ "[['struggling', 'to', 'pay', 'billions', 'of', 'dollars'], 'in', ['short-term', 'loans,', 'has', 'announced', 'a', 'series']]\n",
+ "[['announced', 'a', 'series', 'of', 'emergency', 'measures'], 'in', ['recent', 'weeks.', 'The', 'latest,', 'announced', 'Monday']]\n",
+ "[['additional', '11', 'trillion', 'won', '($8.7', 'billion)'], 'in', ['government', 'spending', 'and', '3', 'trillion', 'won']]\n",
+ "[['government', 'spending', 'and', '3', 'trillion', 'won'], 'in', ['tax', 'cuts.', 'These', 'are', 'aimed', 'mainly']]\n",
+ "[['as', 'fresh', 'data', 'showed', 'export', 'growth'], 'in', ['October', 'had', 'slowed', 'to', 'its', 'lowest']]\n",
+ "[['had', 'slowed', 'to', 'its', 'lowest', 'pace'], 'in', ['13', 'months.', 'Weak', 'economic', 'data', 'in']]\n",
+ "[['in', '13', 'months.', 'Weak', 'economic', 'data'], 'in', ['Australia', 'were', 'also', 'expected', 'to', 'prompt']]\n",
+ "[['Sept.', '3,', 'and', 'bring', 'the', 'total'], 'in', ['rate', 'cuts', 'to', '1.75', 'percentage', 'points.']]\n",
+ "[['an', 'unusual', 'amount', 'of', 'political', 'conversation'], 'in', ['the', 'last', 'few', 'months', '--', 'some']]\n",
+ "[['flight', 'from', 'Atlanta', 'to', 'New', 'York'], 'in', ['mid-August,', 'Goldberg', 'said', 'his', 'seatmate', 'addressed']]\n",
+ "[['he', 'replied', 'that', 'he', 'worked', 'frequently'], 'in', ['Europe', 'and', 'tried', 'to', 'keep', 'up']]\n",
+ "[['out', 'at', 'her', \"organization's\", 'annual', 'meeting'], 'in', ['June,', 'when', 'one', 'lawyer', 'took', 'umbrage']]\n",
+ "[['bar.', '\"He', 'was', 'pointing', 'his', 'finger'], 'in', ['my', 'face.', 'He', 'really', 'thought', 'the']]\n",
+ "[['side.\"', 'The', \"lawyer's\", 'wife', 'eventually', 'stepped'], 'in', ['and', 'changed', 'the', 'subject,', 'and', 'Griffiths']]\n",
+ "[['as', 'to', 'hurry', 'through', 'a', 'meal'], 'in', ['a', 'restaurant', 'or', 'cut', 'short', 'their']]\n",
+ "[['course', 'of', 'a', 'single', 'cross-country', 'journey'], 'in', ['September', 'by', 'travelers', 'who', 'remarked', 'that']]\n",
+ "[['wearing', 'a', 'suit', 'with', 'her', 'hair'], 'in', ['an', 'updo.', 'For', 'Bryce', 'Gruber,', 'being']]\n",
+ "[['a', 'car', 'trip', 'to', 'a', 'meeting'], 'in', ['Philadelphia,', 'Gruber', 'said', 'she', 'was', 'stopped']]\n",
+ "[['\"I\\'ve', 'been', 'a', 'lot', 'more', 'aggressive'], 'in', ['my', 'comments', 'than', 'I', 'think', \"I've\"]]\n",
+ "[['than', 'I', 'think', \"I've\", 'ever', 'been'], 'in', ['the', 'past,\"', 'she', 'said.', 'As', 'the']]\n",
+ "[['a', 'topic', 'to', 'be', 'avoided', 'while'], 'in', ['professional', 'company.', '\"To', 'admit', \"I'm\", 'talking']]\n",
+ "[['Cole', 'said', 'he', 'had', 'found', 'himself'], 'in', ['an', 'uncomfortable', 'situation', 'on', 'a', 'flight']]\n",
+ "[['situation', 'on', 'a', 'flight', 'on', 'United'], 'in', ['October.', 'When', 'the', 'flight', 'attendant', 'came']]\n",
+ "[['lead', 'some', 'to', 'think', 'of', 'themselves'], 'in', ['terms', 'of', 'the', 'groups', 'they', 'support']]\n",
+ "[['research', 'to', 'suggest', 'that', 'people', 'behave'], 'in', ['unique', 'ways', 'when', 'there', 'is', 'anonymity,\"']]\n",
+ "[['Initiative', 'at', 'Johns', 'Hopkins', 'University,', '\"We\\'re'], 'in', ['a', 'sort', 'of', 'suspended', 'life,', 'and']]\n",
+ "[['is', 'traded', 'on', 'the', 'Euronext', 'exchange'], 'in', ['Amsterdam,', 'Netherlands.', '\"The', 'investment', 'thesis', 'for']]\n",
+ "[['The', 'news', 'was', 'the', 'latest', 'bump'], 'in', [\"Kohlberg's\", 'quest', 'to', 'start', 'trading', 'in']]\n",
+ "[['in', \"Kohlberg's\", 'quest', 'to', 'start', 'trading'], 'in', ['the', 'public', 'markets,', 'a', 'process', 'started']]\n",
+ "[['height', 'of', 'the', 'private', 'equity', 'boom'], 'in', ['July', '2007.', 'First,', 'the', 'firm', 'sought']]\n",
+ "[['firm', 'sought', 'an', 'initial', 'offering,', 'following'], 'in', ['the', 'footsteps', 'of', 'Fortress', 'Investment', 'Group']]\n",
+ "[['the', 'New', 'York', 'Stock', 'Exchange.', 'Unlike'], 'in', ['the', 'Blackstone', 'or', 'Fortress', 'offerings,', 'none']]\n",
+ "[['often', 'secretive.', 'The', 'fund,', 'which', 'invests'], 'in', [\"Kohlberg's\", 'private', 'equity', 'funds', 'as', 'well']]\n",
+ "[['fell', '15.3', 'percent,', 'to', '$3.87', 'billion,'], 'in', ['the', 'third', 'quarter.', 'The', 'total', 'return']]\n",
+ "[['of', 'some', 'investments,', 'like', 'its', 'stake'], 'in', ['the', 'hospital', 'operator', 'HCA,', 'owned', 'by']]\n",
+ "[['its', 'other', 'holdings', 'declined.', 'Its', 'investment'], 'in', ['bonds', 'of', 'Sun', 'Microsystems,', 'for', 'example,']]\n",
+ "[['to', '$511', 'million.', 'Other', 'stakes,', 'mostly'], 'in', ['European', 'companies,', 'declined', 'in', 'part', 'because']]\n",
+ "[['stakes,', 'mostly', 'in', 'European', 'companies,', 'declined'], 'in', ['part', 'because', 'of', 'fluctuations', 'in', 'foreign']]\n",
+ "[['declined', 'in', 'part', 'because', 'of', 'fluctuations'], 'in', ['foreign', 'exchange', 'rates.', 'Analysts', 'have', 'grown']]\n",
+ "[['that', 'the', 'value', 'of', 'its', 'investment'], 'in', [\"Kohlberg's\", 'private', 'equity', 'funds', 'fell.', 'With']]\n",
+ "[['With', 'the', 'exception', 'of', 'its', 'stake'], 'in', ['the', 'KKR', 'Asian', 'Fund,', 'the', 'unit']]\n",
+ "[['Asian', 'Fund,', 'the', 'unit', 'had', 'drops'], 'in', ['the', 'values', 'of', 'its', 'five', 'other']]\n",
+ "[['values', 'of', 'its', 'five', 'other', 'investments'], 'in', ['its', \"parent's\", 'buyout', 'funds.', 'Shares', 'in']]\n",
+ "[['in', 'its', \"parent's\", 'buyout', 'funds.', 'Shares'], 'in', ['Private', 'Equity', 'Investors', 'closed', 'at', '4.25']]\n",
+ "[['--', 'U.S.', 'auto', 'sales', 'plunged', '32percent'], 'in', ['October,', 'to', 'their', 'lowest', 'annual', 'rate']]\n",
+ "[['October,', 'to', 'their', 'lowest', 'annual', 'rate'], 'in', ['a', 'quarter-century,', 'as', 'sagging', 'consumer', 'confidence']]\n",
+ "[['owner', 'of', 'the', 'biggest-volume', 'Ford', 'dealership'], 'in', ['the', 'world.', 'The', \"nation's\", 'dealers', 'sold']]\n",
+ "[['have', 'sold', '10.6', 'million', 'new', 'vehicles'], 'in', ['2008.', \"That's\", 'the', 'weakest', 'since', 'February']]\n",
+ "[['Motors', 'Corp.', 'took', 'the', 'biggest', 'hit'], 'in', ['October', '--', 'a', 'decline', 'of', '45']]\n",
+ "[['Japanese', 'companies', 'also', 'saw', 'double-digit', 'declines'], 'in', ['sales:', '23', 'percent', 'at', 'Toyota', 'Motor']]\n",
+ "[['positive', 'despite', 'a', '30', 'percent', 'drop'], 'in', ['business', 'at', 'his', 'Mission', 'Hills', 'dealership.']]\n",
+ "[['to', 'keep', 'inventory', 'levels', 'manageable.', 'Manufacturers,'], 'in', ['turn,', 'have', 'been', 'slowing', 'production.', 'For']]\n",
+ "[['automakers', 'assembled', '16', 'percent', 'fewer', 'vehicles'], 'in', ['the', 'third', 'quarter,', 'with', \"Detroit's\", 'Big']]\n",
+ "[['think', 'it', 'helps', 'we', 'are', 'located'], 'in', ['(upscale)', 'areas', 'like', 'Pasadena', 'and', 'Westlake']]\n",
+ "[['former', 'alderman', 'who', 'led', 'an', 'insurrection'], 'in', ['the', '1980s', 'against', 'this', \"city's\", 'first']]\n",
+ "[['black', 'mayor', 'pleaded', 'guilty', 'on', 'Monday'], 'in', ['federal', 'court', 'to', 'conspiracy', 'in', 'a']]\n",
+ "[['Monday', 'in', 'federal', 'court', 'to', 'conspiracy'], 'in', ['a', 'real-estate', 'kickback', 'scheme.', 'The', 'former']]\n",
+ "[['was', 'also', 'the', 'key', 'government', 'witness'], 'in', ['the', 'corruption', 'trial', 'of', 'Antoin', 'Rezko,']]\n",
+ "[['fraud,', 'money-laundering', 'and', 'bribery.', '\"The', 'notion'], 'in', ['Chicago', 'that', 'there', 'are', 'certain', 'people']]\n",
+ "[['judge', 'ordered', 'special', 'elections', 'for', 'alderman'], 'in', ['seven', 'wards', 'that', 'were', 'remapped', 'to']]\n",
+ "[['by', 'switching', 'to', 'the', 'Republican', 'Party'], 'in', ['1987.', 'In', '1989,', 'days', 'before', 'the']]\n",
+ "[['Richard', 'M.', 'Daley,', 'who', 'is', 'still'], 'in', ['office,', 'defeated', 'him', 'in', 'the', 'general']]\n",
+ "[['is', 'still', 'in', 'office,', 'defeated', 'him'], 'in', ['the', 'general', 'election.', 'Vrdolyak', 'went', 'on']]\n",
+ "[['be', 'remembered', 'as', 'a', 'colorful', 'character'], 'in', ['a', 'certain', 'epoch', 'in', \"Chicago's\", 'history,\"']]\n",
+ "[['colorful', 'character', 'in', 'a', 'certain', 'epoch'], 'in', [\"Chicago's\", 'history,\"', 'said', 'Dick', 'Simpson,', 'a']]\n",
+ "[['we', 'will', 'have', 'a', 'different', 'history'], 'in', ['the', 'future.\"', 'Prosecutors', 'recommended', 'that', 'Vrdolyak']]\n",
+ "[['back', 'exit.', 'At', 'times,', 'he', 'slouched'], 'in', ['his', 'chair,', 'crossing', 'his', 'arms,', 'then']]\n",
+ "[['term.', 'It', 'was', 'a', 'singular', 'moment'], 'in', ['the', 'Bloomberg', 'era', 'of', 'government.', 'For']]\n",
+ "[['endorsed', 'the', 'current', 'eight-year', 'term', 'limits'], 'in', ['two', 'referendums', 'in', 'the', '1990s.', 'There']]\n",
+ "[['eight-year', 'term', 'limits', 'in', 'two', 'referendums'], 'in', ['the', '1990s.', 'There', 'were', 'many', 'voices']]\n",
+ "[['have', 'a', 'choice', 'to', 'keep', 'you'], 'in', ['office,\"', 'said', 'Jill', 'Whitaker,', 'a', 'personal']]\n",
+ "[['said', 'Jill', 'Whitaker,', 'a', 'personal', 'assistant'], 'in', ['Manhattan.', 'Patrick', 'J.', 'Egan,', 'an', 'assistant']]\n",
+ "[['years', '\"a', 'great', 'step', 'for', 'democracy'], 'in', ['New', 'York', 'City.\"', 'In', 'all,', '137']]\n",
+ "[['stately', 'setting.', 'Many', 'put', 'their', 'opposition'], 'in', ['intensely', 'personal', 'terms,', 'saying', 'that', 'a']]\n",
+ "[['vowed', 'to', 'vote', 'against', 'the', 'mayor'], 'in', ['the', 'next', 'race.', '\"He', 'has', 'lost']]\n",
+ "[['would', 'you', 'like', 'to', 'be', 'remembered'], 'in', ['the', 'history', 'books?\"', 'said', 'Andre', 'Calvert,']]\n",
+ "[['a', 'former', 'Wall', 'Street', 'executive,', 'remain'], 'in', ['office.', 'The', 'crowd', 'at', 'the', 'bill']]\n",
+ "[['at', 'the', 'bill', 'signing', 'dwarfed', 'any'], 'in', ['modern', 'memory,', 'with', 'the', 'line', 'of']]\n",
+ "[['items', 'that', 'come', 'up,', 'but', 'nothing'], 'in', ['this', 'realm', '--', 'not', 'even', 'close.\"']]\n",
+ "[['not', 'be', 'easy', 'to', 'you.\"', 'But'], 'in', ['the', 'next', 'breath,', 'Jiler', 'tore', 'into']]\n",
+ "[['after', 'hearing', 'hours', 'of', 'fiery', 'testimony'], 'in', ['1897,', 'Mayor', 'William', 'L.', 'Strong', 'vetoed']]\n",
+ "[['of', 'time,', 'fundamentally', 'changed', 'my', 'opinion'], 'in', ['terms', 'of', 'how', 'long', 'somebody', 'could']]\n",
+ "[['of', 'how', 'long', 'somebody', 'could', 'be'], 'in', ['office,\"', 'Bloomberg', 'said.', '\"Nobody', 'is', 'irreplaceable,\"']]\n",
+ "[['biggest', 'battleground', 'state', 'renders', 'its', 'judgment'], 'in', ['what', 'polls', 'show', 'is', 'a', 'very']]\n",
+ "[['is', 'a', 'very', 'close', 'presidential', 'race'], 'in', ['Florida.', 'Polls', 'are', 'open', 'from', '7']]\n",
+ "[['from', '7', 'a.m.', 'to', '7', 'p.m.'], 'in', ['all', '67', 'counties.', 'The', 'weather', 'forecast']]\n",
+ "[['forecast', 'is', 'for', 'partly', 'cloudy', 'skies'], 'in', ['most', 'of', 'the', 'state', 'with', 'temperatures']]\n",
+ "[['most', 'of', 'the', 'state', 'with', 'temperatures'], 'in', ['the', '70s', 'or', 'low', '80s.', 'All']]\n",
+ "[['eclipse', 'the', '83', 'percent', 'that', 'voted'], 'in', ['the', '1992', 'presidential', 'race.', 'Ballots', 'in']]\n",
+ "[['in', 'the', '1992', 'presidential', 'race.', 'Ballots'], 'in', ['some', 'counties', 'stretch', 'three', 'and', 'four']]\n",
+ "[['as', '10,556', 'voters', 'could', 'be', 'snared'], 'in', ['the', \"state's\", 'controversial', '\"no', 'match\"', 'voter']]\n",
+ "[['registration', 'form', 'does', 'not', 'match', 'information'], 'in', ['state', 'databases.', 'The', 'result', 'is', 'lines']]\n",
+ "[['7', 'p.m.', 'By', 'law,', 'anyone', 'standing'], 'in', ['line', 'when', 'polls', 'close', 'must', 'be']]\n",
+ "[['County', 'Supervisor', 'of', 'Elections', 'Bill', 'Cowles'], 'in', ['Orlando.', '\"It\\'s', 'important', 'to', 'remember', 'how']]\n",
+ "[['Department', 'has', 'assigned', 'observers', 'to', 'polls'], 'in', ['Hillsborough,', 'Duval', 'and', 'Seminole', 'counties', 'to']]\n",
+ "[['two', 'political', 'parties', 'squared', 'off', 'briefly'], 'in', ['a', 'Tallahassee', 'courtroom', 'Monday', 'and', 'a']]\n",
+ "[['percent', 'of', 'the', '11.2-million', 'registered', 'voters'], 'in', ['Florida.', 'At', 'that', 'pace,', 'Secretary', 'of']]\n",
+ "[['Florida', 'record', 'of', '83', 'percent,', 'set'], 'in', ['1992.', '\"Be', 'patient', 'and', 'be', 'prepared,\"']]\n",
+ "[['is', 'being', 'done', 'to', 'accommodate', 'voters'], 'in', ['much', 'of', 'the', 'Panhandle,', 'which', 'is']]\n",
+ "[['Although', 'rain', 'is', 'expected', 'this', 'morning'], 'in', ['Los', 'Angeles,', 'election', 'officials', 'anticipate', 'a']]\n",
+ "[['election', 'officials', 'anticipate', 'a', 'record', 'turnout'], 'in', ['this', 'historic', 'election', 'and', 'have', 'deployed']]\n",
+ "[['\"I', 'think', 'the', 'motivation', 'and', 'interest'], 'in', ['this', 'election', 'is', 'at', 'an', 'all-time']]\n",
+ "[['and', 'we', \"won't\", 'have', 'people', 'out'], 'in', ['the', 'elements', 'waiting', 'to', 'vote.\"', 'The']]\n",
+ "[['a', '60', 'percent', 'chance', 'of', 'rain'], 'in', ['parts', 'of', 'Los', 'Angeles', 'County', 'this']]\n",
+ "[['precincts', 'and', 'has', 'made', 'contingency', 'plans'], 'in', ['case', 'ballots', 'do', 'run', 'out.', '\"We']]\n",
+ "[['will', 'be', 'sufficient', 'quantifies', 'of', 'ballots'], 'in', ['those', 'precincts', 'where', 'voter', 'registration', 'totals']]\n",
+ "[['precinct', 'inspectors', 'only', 'received', '800', 'ballots'], 'in', ['precincts', 'with', 'rosters', 'of', '1,500', 'voters,']]\n",
+ "[['so', 'many', 'emergency', 'ballots', 'are', 'used'], 'in', ['the', 'county,\"', 'Myers', 'said.', 'The', 'advocates']]\n",
+ "[['of', 'poll', 'booths', 'and', 'poll', 'workers'], 'in', ['each', 'of', 'the', '4,394', 'polling', 'locations.']]\n",
+ "[['$32', 'million,', 'up', 'from', '$24', 'million'], 'in', ['2004.', 'As', 'you', 'might', 'expect', 'for']]\n",
+ "[['most-televised,', 'most-streamed,', 'most-blogged,', 'most-Twittered', 'presidential', 'campaign'], 'in', ['history,', 'there', 'is', 'an', 'explosion', 'of']]\n",
+ "[['from', 'the', 'outside', 'looking', 'in?', 'Or'], 'in', ['a', 'different', 'language?', 'The', 'British', 'Broadcasting']]\n",
+ "[['is', 'traded', 'on', 'the', 'Euronext', 'exchange'], 'in', ['Amsterdam,', 'Netherlands.', '\"The', 'investment', 'thesis', 'for']]\n",
+ "[['The', 'news', 'was', 'the', 'latest', 'bump'], 'in', [\"Kohlberg's\", 'quest', 'to', 'start', 'trading', 'in']]\n",
+ "[['in', \"Kohlberg's\", 'quest', 'to', 'start', 'trading'], 'in', ['the', 'public', 'markets,', 'a', 'process', 'started']]\n",
+ "[['height', 'of', 'the', 'private', 'equity', 'boom'], 'in', ['July', '2007.', 'First,', 'the', 'firm', 'sought']]\n",
+ "[['firm', 'sought', 'an', 'initial', 'offering,', 'following'], 'in', ['the', 'footsteps', 'of', 'Fortress', 'Investment', 'Group']]\n",
+ "[['the', 'New', 'York', 'Stock', 'Exchange.', 'Unlike'], 'in', ['the', 'Blackstone', 'or', 'Fortress', 'offerings,', 'none']]\n",
+ "[['often', 'secretive.', 'The', 'fund,', 'which', 'invests'], 'in', [\"Kohlberg's\", 'private', 'equity', 'funds', 'as', 'well']]\n",
+ "[['fell', '15.3', 'percent,', 'to', '$3.87', 'billion,'], 'in', ['the', 'third', 'quarter.', 'The', 'total', 'return']]\n",
+ "[['of', 'some', 'investments,', 'like', 'its', 'stake'], 'in', ['the', 'hospital', 'operator', 'HCA,', 'owned', 'by']]\n",
+ "[['its', 'other', 'holdings', 'declined.', 'Its', 'investment'], 'in', ['bonds', 'of', 'Sun', 'Microsystems,', 'for', 'example,']]\n",
+ "[['to', '$511', 'million.', 'Other', 'stakes,', 'mostly'], 'in', ['European', 'companies,', 'declined', 'in', 'part', 'because']]\n",
+ "[['stakes,', 'mostly', 'in', 'European', 'companies,', 'declined'], 'in', ['part', 'because', 'of', 'fluctuations', 'in', 'foreign']]\n",
+ "[['declined', 'in', 'part', 'because', 'of', 'fluctuations'], 'in', ['foreign', 'exchange', 'rates.', 'After', 'nearly', 'two']]\n",
+ "[['of', 'roller-coaster', 'campaigning,', 'a', 'billion', 'dollars'], 'in', ['campaign', 'spending,', 'and', 'the', 'most', 'diverse']]\n",
+ "[['to', 'a', 'close', 'today.', 'Polls', 'open'], 'in', ['Florida', 'at', '7', 'a.m.', 'and', 'close']]\n",
+ "[['day', 'left', 'until', 'we', 'take', 'America'], 'in', ['a', 'new', 'direction,', 'my', 'friends.', 'We']]\n",
+ "[['1,200', 'supporters', 'outside', 'Raymond', 'James', 'Stadium'], 'in', ['Tampa', 'on', 'Monday', 'morning.', '\"The', 'pundits']]\n",
+ "[['more', 'than', '7,000', 'to', 'a', 'rally'], 'in', ['Jacksonville,', 'a', 'Republican', 'stronghold', 'that', 'also']]\n",
+ "[['of', 'thousands', 'of', 'African-American', 'votes', 'invalidated'], 'in', ['the', '2000', 'election.', '\"Don\\'t', 'believe', 'for']]\n",
+ "[['is', 'going', 'to', 'be', 'close', 'here'], 'in', ['Florida.', 'We', 'have', 'to', 'work', 'like']]\n",
+ "[['like', 'our', 'future', 'depends', 'on', 'it'], 'in', ['the', 'next', '24', 'hours,', 'because', 'it']]\n",
+ "[['Democratic', 'four', 'years', 'ago.', 'Obama', 'campaigned'], 'in', ['Florida,', 'North', 'Carolina', 'and', 'Virginia,', 'each']]\n",
+ "[['Virginia,', 'each', 'of', 'which', 'Bush', 'won'], 'in', ['2004.', 'Until', 'this', 'year,', 'North', 'Carolina']]\n",
+ "[['Obama', 'is', 'running', 'to', 'be', 'redistributionist'], 'in', ['chief.', 'I', 'am', 'running', 'to', 'be']]\n",
+ "[['I', 'am', 'running', 'to', 'be', 'commander'], 'in', ['chief,\"', 'said', 'McCain,', 'periodically', 'interrupted', 'by']]\n",
+ "[['about', '300', 'at', 'the', 'Cuban', 'Club'], 'in', ['Ybor', 'City', 'that', 'he', 'had', 'thought']]\n",
+ "[['Democrats', 'than', 'Republicans', 'had', 'cast', 'ballots'], 'in', ['Florida,', 'but', 'Buzz', 'Jacobs,', \"McCain's\", 'Florida']]\n",
+ "[['Arena,', 'the', 'same', 'site', 'where', 'McCain'], 'in', ['September', 'declared', '\"the', 'fundamentals', 'of', 'our']]\n",
+ "[['at', 'one', 'point', 'referring', 'to', 'being'], 'in', ['Ohio', 'rather', 'than', 'Florida.', 'Steve', 'Schale,']]\n",
+ "[['\"We\\'re', 'where', 'we', 'want', 'to', 'be'], 'in', ['terms', 'of', 'turning', 'out', 'voters', 'and']]\n",
+ "[['36-hour', 'period.', \"We've\", 'put', 'our', 'game'], 'in', ['place,', 'but', 'now', \"it's\", 'up', 'to']]\n",
+ "[['or', '(727)893-8241.', 'As', 'results', 'start', 'pouring'], 'in', ['tonight,', 'a', 'handful', 'of', 'states', 'will']]\n",
+ "[['John', 'McCain', 'spent', 'precious', 'last-minute', 'time'], 'in', ['Newport', 'News,', 'as', 'sure', 'a', 'sign']]\n",
+ "[[\"it's\", 'a', 'sign', 'that', 'McCain', 'is'], 'in', ['for', 'a', 'long', 'night.', 'Georgia:', 'Heavy']]\n",
+ "[['could', 'put', 'this', 'rock-solid', 'Republican', 'state'], 'in', ['play.', 'McCain', 'leads', 'in', 'polls,', 'but']]\n",
+ "[['Republican', 'state', 'in', 'play.', 'McCain', 'leads'], 'in', ['polls,', 'but', \"it's\", 'still', 'a', 'tossup.']]\n",
+ "[['early.', 'Indiana:', 'McCain', 'is', 'scarcely', 'ahead'], 'in', ['a', 'state', 'that', 'has', 'a', 'perfect']]\n",
+ "[['work', 'for', 'McCain', 'without', 'having', 'Florida'], 'in', ['his', 'column.', 'If', 'Obama', 'manages', 'to']]\n",
+ "[['to', 'hold', 'on', 'to', 'his', 'lead'], 'in', ['the', 'polls', '(which', 'has', 'been', 'slipping)']]\n",
+ "[['rich', 'prize', 'has', 'tilted', 'toward', 'Democrats'], 'in', ['recent', 'elections', 'and', 'favors', 'Obama', 'strongly']]\n",
+ "[['recent', 'elections', 'and', 'favors', 'Obama', 'strongly'], 'in', ['the', 'polls.', 'McCain', 'has', 'not', 'given']]\n",
+ "[['drawing', 'blue-collar', 'voters', 'who', 'are', 'important'], 'in', ['other', 'key', 'states', 'like', 'Missouri.', 'Missouri:']]\n",
+ "[['Missouri.', 'Missouri:', 'McCain', 'is', 'leading', 'slightly'], 'in', ['this', 'swing', 'state', 'that', 'has', 'voted']]\n",
+ "[['has', 'so', 'many', 'traditionally', 'Republican', 'states'], 'in', ['play', 'means', 'a', 'victory', 'here', 'may']]\n",
+ "[['p.m.', 'Colorado:', 'Democrats', 'held', 'their', 'convention'], 'in', ['Denver', 'to', 'capitalize', 'on', 'a', 'trend']]\n",
+ "[['trend', 'that', 'had', 'been', 'showing', 'up'], 'in', ['recent', 'elections.', 'Now', 'Obama', 'is', 'favored']]\n",
+ "[['of', 'choosing', 'Republicans', '(except', 'Bill', 'Clinton'], 'in', ['1992).', 'President', 'Bush', 'carried', 'this', 'state']]\n",
+ "[['margins', 'both', 'times.', 'Arizona:', 'McCain', 'leads'], 'in', ['his', 'home', 'state', 'but', 'not', 'by']]\n",
+ "[['snatches', 'this', 'one,', 'McCain', 'would', 'be'], 'in', ['a', 'bad,', 'bad', 'spot', 'in', 'terms']]\n",
+ "[['be', 'in', 'a', 'bad,', 'bad', 'spot'], 'in', ['terms', 'of', 'electoral', 'votes', 'and', 'embarrassed']]\n",
+ "[['wealthy', 'Venezuelan', 'businessman', 'was', 'found', 'guilty'], 'in', ['federal', 'court', 'in', 'Miami', 'on', 'Monday']]\n",
+ "[['was', 'found', 'guilty', 'in', 'federal', 'court'], 'in', ['Miami', 'on', 'Monday', 'of', 'acting', 'as']]\n",
+ "[['to', 'cover', 'up', 'his', \"government's\", 'role'], 'in', ['a', 'political', 'scandal', 'involving', 'a', 'cash-stuffed']]\n",
+ "[['initially', 'accused', 'of', 'politicizing', 'the', 'case'], 'in', ['an', 'effort', 'to', 'embarrass', 'Chavez,', 'a']]\n",
+ "[['The', 'charges', 'relate', 'to', 'an', 'incident'], 'in', ['August', '2007', 'when', \"Duran's\", 'friend', 'and']]\n",
+ "[['was', 'stopped', 'by', 'a', 'customs', 'agent'], 'in', ['Argentina', 'after', 'arriving', 'on', 'a', 'private']]\n",
+ "[['was', 'briefly', 'detained', 'after', 'almost', '$800,000'], 'in', ['cash', 'was', 'found', 'in', 'his', 'luggage.']]\n",
+ "[['almost', '$800,000', 'in', 'cash', 'was', 'found'], 'in', ['his', 'luggage.', 'Duran', 'and', 'four', 'other']]\n",
+ "[['of', 'arranging', 'a', 'series', 'of', 'meetings'], 'in', ['the', 'Miami', 'area', 'to', 'get', 'Antonini']]\n",
+ "[['sought', 'their', 'help', 'to', 'silence', 'Antonini'], 'in', ['return', 'for', 'government', 'favors.', 'Kauffmann', 'admitted']]\n",
+ "[['no', 'mystery', 'as', 'to', 'what', 'happened'], 'in', ['this', 'case,\"', 'Assistant', 'U.S.', 'Attorney', 'John']]\n",
+ "[['Assistant', 'U.S.', 'Attorney', 'John', 'Shipley', 'said'], 'in', ['his', 'closing', 'arguments.', 'Duran', '\"came', 'here']]\n",
+ "[['said.', 'Duran', 'attorney', 'Ed', 'Shohat', 'argued'], 'in', ['court', 'that', 'Duran', 'was', 'simply', 'trying']]\n",
+ "[['faces', 'a', 'maximum', 'of', '15', 'years'], 'in', ['prison', 'at', 'his', 'sentencing', 'Jan.', '12.']]\n",
+ "[['is', 'hurting.', 'But', 'a', 'Hilton', 'hotel'], 'in', ['Washington,', 'D.C.,', 'did', 'just', 'that', 'recently,']]\n",
+ "[['dropped', 'the', 'ball.', 'Glassman,', 'a', 'partner'], 'in', ['a', 'prominent', 'Memphis', 'law', 'firm,', 'was']]\n",
+ "[['the', 'St.', 'Regis,', 'a', 'Starwood', 'hotel'], 'in', ['Aspen,', 'Colo.', 'According', 'to', \"Glassman's\", 'account,']]\n",
+ "[['told', 'him', 'he', 'could', 'not', 'check'], 'in', ['on', 'Sept.', '27', 'because', 'a', 'large']]\n",
+ "[['because', 'a', 'large', 'group', 'was', 'checking'], 'in', ['that', 'day.', '\"There', \"won't\", 'be', 'anyone']]\n",
+ "[['\"I', 'know', 'a', 'couple', 'of', 'guys'], 'in', ['Hilton', 'corporate,', 'so', 'I', 'said', 'to']]\n",
+ "[['an', 'asterisk', 'next', 'to', 'my', 'name'], 'in', ['the', 'computer', 'and', 'told', 'you', 'to']]\n",
+ "[['he', 'e-mailed', 'me.', 'At', \"Hilton's\", 'headquarters'], 'in', ['Beverly', 'Hills,', 'Calif.,', 'Adam', 'Burke,', 'a']]\n",
+ "[['to', 'change', 'that.', 'All', 'right,', 'two'], 'in', ['the', 'Glassman', 'case.', 'With', 'hotel', 'profits']]\n",
+ "[['important', 'to', 'get', 'it', 'right', 'than'], 'in', ['a', 'down', 'cycle,\"', 'Burke', 'said.', '\"Every']]\n",
+ "[['\"Every', 'time', \"we've\", 'seen', 'that', 'cycle'], 'in', ['the', 'last', '20', 'years,', 'the', 'HHonors']]\n",
+ "[['did', 'not', 'violate', 'state', 'ethics', 'laws'], 'in', ['the', 'firing', 'of', 'her', 'public', 'safety']]\n",
+ "[['any', 'state', 'employee', 'had', 'acted', 'improperly'], 'in', [\"Monegan's\", 'dismissal.', 'The', 'report', 'said', 'the']]\n",
+ "[[\"haven't\", 'done', 'it.\"', 'Monegan', 'said', 'Monday'], 'in', ['an', 'interview:', '\"The', 'conversations', 'absolutely', 'did']]\n",
+ "[['supposed', 'to', 'tell', 'the', 'truth?', 'And'], 'in', ['this', 'case', 'I', 'did,', 'under', 'oath']]\n",
+ "[['presidential', 'nominee.', 'Palin', 'had', 'said', 'earlier'], 'in', ['the', 'summer', 'that', 'she', 'would', 'cooperate']]\n",
+ "[['Stephen', 'E.', 'Branchflower,', 'a', 'former', 'prosecutor'], 'in', ['Anchorage,', 'said', 'that', 'Palin', 'had', 'herself']]\n",
+ "[['$3.3', 'million', 'to', 'four', 'confidential', 'informants'], 'in', ['an', 'investigation', 'that', 'led', 'to', 'the']]\n",
+ "[['to', 'go', 'on', 'trial', 'this', 'week'], 'in', ['U.S.', 'District', 'Court', 'in', 'Manhattan.', 'They']]\n",
+ "[['this', 'week', 'in', 'U.S.', 'District', 'Court'], 'in', ['Manhattan.', 'They', 'are', 'charged', 'in', 'a']]\n",
+ "[['Court', 'in', 'Manhattan.', 'They', 'are', 'charged'], 'in', ['a', 'conspiracy', 'to', 'sell', 'weapons', 'to']]\n",
+ "[['conspiracy', 'to', 'sell', 'weapons', 'to', 'rebels'], 'in', ['Colombia', 'who', 'wanted', 'to', 'kill', 'Americans']]\n",
+ "[['travel', 'and', 'living', 'expenses', 'while', 'participating'], 'in', ['an', 'undercover', 'operation.', 'There', 'is', 'little']]\n",
+ "[['ago,', 'with', 'informants', 'posing', 'as', 'players'], 'in', ['a', 'deal', 'to', 'sell', 'weapons', 'to']]\n",
+ "[['according', 'to', 'a', 'defense', \"lawyer's\", 'statement'], 'in', ['court,', 'based', 'on', 'information', 'supplied', 'by']]\n",
+ "[['that', 'locally', 'ignored', 'Jimmy', 'Wales', 'worked'], 'in', ['a', 'windowless', 'office', 'suite', 'near', 'the']]\n",
+ "[['suite', 'near', 'the', 'BayWalk', 'entertainment', 'center'], 'in', ['downtown', 'St.', 'Petersburg.', 'Now', \"he's\", 'often']]\n",
+ "[['Wikipedia', 'the', 'largest', 'and', 'always-updating', 'encyclopedia'], 'in', ['the', 'history', 'of', 'the', 'English', 'language']]\n",
+ "[['2006,', 'he', 'sped', 'west', 'to', 'hang'], 'in', ['Silicon', 'Valley.', 'Wales', 'took', 'the', 'Wikimedia']]\n",
+ "[['search', 'engine.', 'That', 'puts', 'Wales,', '42,'], 'in', ['competition', 'with', 'Google', 'a', 'matchup', 'that']]\n",
+ "[['more', 'the', 'Cassandra.', 'In', 'remarks', 'reported'], 'in', ['London,', 'he', 'sounds', 'more', 'like', 'an']]\n",
+ "[['a', '$44.6-billion', 'takeover', 'bid', 'from', 'Microsoft'], 'in', ['May.', 'Since', 'then', 'the', 'shares', 'have']]\n",
+ "[['a', 'tenth', 'of', 'their', 'peak', 'value'], 'in', ['early', '2000.', 'Not', 'that', \"Wales'\", 'ventures']]\n",
+ "[['as', 'a', 'Web', '2.0', 'reference', 'work'], 'in', ['daily', 'use', 'a', 'glowing', 'report', 'card']]\n",
+ "[['are', 'the', 'political', 'controls', 'we', 'need'], 'in', ['place', 'to', 'prevent', 'governments', 'from', 'abusing']]\n",
+ "[['Publix', 'deli', 'fried', 'chicken', 'was', 'banished'], 'in', ['favor', 'of', 'a', 'baked', 'alternative', 'that']]\n",
+ "[['learn', 'the', 'crispy', 'coating', 'is', 'soaked'], 'in', ['buttermilk.', 'Publix', 'GreenWise', 'Market', 'is', 'nothing']]\n",
+ "[['on', 'a', 'natural/organic', 'supermarket', 'opens', 'Thursday'], 'in', ['Hyde', 'Park', 'at', 'Armenia', 'Avenue', 'and']]\n",
+ "[['will', 'take', 'over', 'former', 'Albertsons', 'locations'], 'in', ['Tallahassee', 'and', 'Winter', 'Park.', 'A', 'hybrid']]\n",
+ "[['will', 'be', 'branded', 'as', 'a', 'Publix'], 'in', ['Naples.', 'The', 'curious', 'should', 'bring', 'an']]\n",
+ "[['a', 'percentage', 'of', 'their', 'income', 'even'], 'in', ['this', 'time', 'of', 'soaring', 'prices.', 'Whether']]\n",
+ "[['home', 'state', 'to', 'skim', 'the', 'cream'], 'in', ['top-income', 'neighborhoods.', \"That's\", 'why', 'the', 'GreenWise']]\n",
+ "[['twice', 'the', 'size', 'of', \"what's\", 'found'], 'in', ['Whole', 'Foods.', 'The', 'prices', 'are', 'a']]\n",
+ "[['chicken', 'is', 'only', 'the', 'starting', 'point'], 'in', ['a', 'meat', 'department', 'that', 'leaps', 'above']]\n",
+ "[['Appealing', 'to', 'all', 'tastes', 'sticks', 'out'], 'in', ['a', 'wine', 'section', 'stocked', 'with', 'both']]\n",
+ "[['with', 'both', '$800', 'Bordeaux', 'and', 'Franzia'], 'in', ['a', 'box.', 'The', 'top-selling', 'wine', 'at']]\n",
+ "[['And', 'for', 'dieters', 'wondering', 'just', \"what's\"], 'in', ['those', 'tasty', 'restaurant-quality', 'meals,', 'Publix', 'is']]\n",
+ "[['little', 'outdated,', 'given', 'that', 'almost', 'four'], 'in', ['10', 'Floridians', 'already', 'have', 'voted.', 'If']]\n",
+ "[['it', \"shouldn't,\", 'not', 'by', 'now,', 'not'], 'in', ['Florida.', 'Anybody', 'who', 'messes', 'up', 'an']]\n",
+ "[['Anybody', 'who', 'messes', 'up', 'an', 'election'], 'in', ['Florida', 'ought', 'to', 'be', 'kicked', 'out']]\n",
+ "[['nice,', 'clean,', 'undisputed', 'election.', 'Please.', 'Here'], 'in', ['Florida,', \"there's\", 'still', 'a', 'certain', 'amount']]\n",
+ "[['if', 'the', 'rule', 'was,', 'itself,', 'passed'], 'in', ['2006', 'by', 'fewer', 'than', '60', 'percent']]\n",
+ "[['many', 'seats', 'the', 'Democrats', 'pick', 'up'], 'in', ['Congress.', 'But', 'here', 'in', 'Florida,', 'there']]\n",
+ "[['pick', 'up', 'in', 'Congress.', 'But', 'here'], 'in', ['Florida,', 'there', 'is', 'no', 'corresponding', 'drama']]\n",
+ "[['state', 'Legislature.', 'That', 'body', 'is', 'safely'], 'in', ['the', 'hands', 'of', 'Republicans,', 'and', 'even']]\n",
+ "[['team', 'because', 'of', 'his', 'reported', 'involvement'], 'in', ['a', 'fight', 'in', 'Gainesville,', 'hours', 'after']]\n",
+ "[['his', 'reported', 'involvement', 'in', 'a', 'fight'], 'in', ['Gainesville,', 'hours', 'after', 'a', 'victory', 'at']]\n",
+ "[['one', 'count', 'of', 'battery', '(both', 'misdemeanors),'], 'in', ['an', 'incident', 'that', 'happened', 'about', '3:30']]\n",
+ "[['Department', 'incident', 'report,', 'Wilson', 'became', 'involved'], 'in', ['a', '\"verbal', 'altercation', 'over', 'a', 'female']]\n",
+ "[['was', 'at', 'the', 'Lexington', 'Crossing', 'apartments'], 'in', ['Gainesville.', 'Wilson', 'is', 'accused', 'of', 'hitting']]\n",
+ "[['the', 'man', 'outside', 'and', 'confronted', 'him'], 'in', ['a', 'breezeway', 'near', 'the', 'apartment', 'where']]\n",
+ "[['woman', 'as', 'she', 'tried', 'to', 'step'], 'in', ['between', 'them;', 'she', 'suffered', 'a', 'broken']]\n",
+ "[['the', 'third', 'person', 'said', 'he', '\"was'], 'in', ['fear', 'for', 'his', 'safety', 'due', 'to']]\n",
+ "[['on', 'the', 'UF', 'roster,', 'was', 'identified'], 'in', ['a', 'photo', 'lineup', 'by', 'the', 'three']]\n",
+ "[['fourth', 'person,', 'who', 'was', 'not', 'involved'], 'in', ['the', 'fight,', 'identified', 'him.', 'Wilson,', 'a']]\n",
+ "[['into', 'the', 'air', 'during', 'a', 'fight'], 'in', ['which', 'he', 'said', 'he', 'had', 'been']]\n",
+ "[['records', 'indicate', 'the', 'probation', 'was', 'terminated'], 'in', ['April', 'after', 'a', 'judge', 'ruled', 'he']]\n",
+ "[['obligations.', 'After', 'paying', 'for', 'his', 'classes'], 'in', ['the', 'spring', 'and', 'summer', 'semesters,', 'Wilson']]\n",
+ "[['was', 'allowed', 'to', 'rejoin', 'the', 'team'], 'in', ['August,', 'but', 'coach', 'Urban', 'Meyer', 'said']]\n",
+ "[['a', 'junior', 'college', 'transfer', 'who', 'played'], 'in', ['five', 'games,', 'tore', 'his', 'right', 'ACL']]\n",
+ "[['five', 'games,', 'tore', 'his', 'right', 'ACL'], 'in', ['practice', 'two', 'weeks', 'ago.', 'He', 'had']]\n",
+ "[['last', 'week.', 'Epps', 'came', 'to', 'UF'], 'in', ['January', 'after', 'two', 'years', 'at', 'Coffeyville']]\n",
+ "[['two', 'years', 'at', 'Coffeyville', 'Junior', 'College'], 'in', ['Kansas.', 'Haden', 'honored:', 'Sophomore', 'CB', 'Joe']]\n",
+ "[['returned', 'an', 'interception', '88', 'yards', 'early'], 'in', ['the', 'third', 'quarter', 'to', 'set', 'up']]\n",
+ "[['quarter', 'to', 'set', 'up', 'a', 'touchdown'], 'in', ['a', 'victory', 'over', 'Georgia.', 'Kickoff', 'in']]\n",
+ "[['in', 'a', 'victory', 'over', 'Georgia.', 'Kickoff'], 'in', ['limbo:', 'Television', 'networks', 'have', 'been', 'granted']]\n",
+ "[['seven', 'carries', 'for', '71', 'yards', 'late'], 'in', ['the', 'game', 'and', 'ran', 'toward', 'the']]\n",
+ "[['week', 'and', 'then', 'you', 'saw', 'it'], 'in', ['the', 'game', 'and', 'you', 'saw', 'it']]\n",
+ "[['a', 'backlog', 'of', '7,000', 'rape', 'kits'], 'in', ['their', 'crime', 'lab,', 'LAPD', 'officials', 'said']]\n",
+ "[['well', 'as', 'problems', 'within', 'the', 'division'], 'in', ['how', 'it', 'handles', 'other', 'material,', 'including']]\n",
+ "[['enough', 'DNA', 'to', 'process,', 'and', 'that'], 'in', ['itself', 'could', 'take', 'several', 'days', 'to']]\n",
+ "[['of', 'police', 'equipment', 'during', 'a', 'scuffle'], 'in', ['a', 'Brooklyn', 'subway', 'station,', 'a', 'police']]\n",
+ "[['and', 'shields,', 'and', 'suggests', 'a', 'change'], 'in', ['the', 'position', 'of', 'the', 'department,', 'which']]\n",
+ "[['the', 'officers.', 'Officers', 'are', 'often', 'modified'], 'in', ['anticipation', 'of', 'possible', 'disciplinary', 'action.', 'The']]\n",
+ "[[\"officer's\", 'account', 'of', 'what', 'took', 'place'], 'in', ['the', 'encounter', 'was', 'relayed', 'last', 'week']]\n",
+ "[['investigation.', 'They', 'did', 'search', 'a', 'locker'], 'in', ['the', '71st', 'Precinct', 'station', 'house', 'on']]\n",
+ "[['district', 'attorney,', 'Charles', 'J.', 'Hynes.', 'Later'], 'in', ['the', 'evening,', 'the', 'spokesman,', 'Paul', 'J.']]\n",
+ "[['disorderly', 'conduct', 'summons.', 'Mineo', 'ended', 'up'], 'in', ['a', 'hospital', 'with', 'injuries,', 'including', 'a']]\n",
+ "[['cast', 'doubt', 'on', \"Mineo's\", 'account,', 'saying'], 'in', ['a', 'statement', 'that', 'the', '\"assertion', 'that']]\n",
+ "[['the', 'part', 'of', 'the', 'officers,', 'either'], 'in', ['connection', 'with', 'the', 'encounter', 'or', 'some']]\n",
+ "[['him,', 'finding', 'one', 'stemming', 'from', 'charges'], 'in', ['Pennsylvania.', 'But', 'despite', 'the', 'outstanding', 'warrant,']]\n",
+ "[['was', 'defective,', 'with', 'a', 'return', 'date'], 'in', ['January', '2008,', 'which', 'effectively', 'gave', 'Mineo']]\n",
+ "[['improbable,', 'with', 'Democrat', 'Barack', 'Obama', 'leading'], 'in', ['every', 'major', 'national', 'poll,', 'as', 'well']]\n",
+ "[['major', 'national', 'poll,', 'as', 'well', 'as'], 'in', ['numerous', 'battleground', 'states', 'expected', 'to', 'determine']]\n",
+ "[['Sox', 'recovered', 'from', 'a', 'three-game', 'deficit'], 'in', ['2004', 'to', 'win', 'four', 'games', 'straight']]\n",
+ "[['Curt', 'Schilling,', 'a', 'McCain', 'supporter,', 'noted'], 'in', ['Peterborough,', 'N.H.,', 'on', 'Sunday', 'as', 'he']]\n",
+ "[['loss', 'to', 'the', 'New', 'York', 'Giants'], 'in', ['February', 'after', 'a', 'perfect', 'season.', 'As']]\n",
+ "[['enthusiasm\"', 'for', 'McCain,', 'Donatelli', 'said', 'Monday'], 'in', ['between', 'visits', 'to', 'Virginia,', 'Pennsylvania,', 'Missouri,']]\n",
+ "[['the', 'states', 'Democrat', 'John', 'Kerry', 'took'], 'in', ['2004,', 'plus', 'a', 'combination', 'of', 'victories']]\n",
+ "[['2004,', 'plus', 'a', 'combination', 'of', 'victories'], 'in', ['Iowa,', 'New', 'Mexico,', 'Colorado', '-', 'and']]\n",
+ "[['majority', 'mark.', 'Obama', 'is', 'also', 'competitive'], 'in', ['Florida,', 'North', 'Carolina,', 'and', 'Ohio,', 'and']]\n",
+ "[['states', 'like', 'Montana', 'and', 'Georgia', 'are'], 'in', ['play.', 'The', 'battle', 'for', 'Missouri', 'is']]\n",
+ "[['a', 'dead', 'heat.', 'Still,', 'the', 'races'], 'in', ['the', 'battleground', 'states', 'are', 'still', 'quite']]\n",
+ "[['error.', 'Further,', 'McCain', 'has', 'edged', 'up'], 'in', ['a', 'couple', 'of', 'polls', 'in', 'North']]\n",
+ "[['up', 'in', 'a', 'couple', 'of', 'polls'], 'in', ['North', 'Carolina,', 'Ohio', 'and', 'Pennsylvania,', 'giving']]\n",
+ "[['over', 'until', \"it's\", 'over.', 'While', 'polls'], 'in', ['a', 'lot', 'of', 'these', 'key', 'swing']]\n",
+ "[['always', 'the', 'possibility', 'of', 'late', 'movement'], 'in', ['public', 'opinion,\"', 'said', 'Michael', 'Dimmock,', 'associate']]\n",
+ "[['Marist', 'Institute', 'for', 'Public', 'Opinion,', 'said'], 'in', ['assessing', \"McCain's\", 'challenge.', \"It's\", 'possible', 'to']]\n",
+ "[['president.', 'The', 'votes', 'would', 'be', 'taken'], 'in', ['the', 'next', 'Congress,', 'and', 'since', 'Democrats']]\n",
+ "[['are', 'expected', 'to', 'expand', 'their', 'majorities'], 'in', ['both', 'chambers,', 'Obama', 'and', 'Senator', 'Joe']]\n",
+ "[['third', 'quarter', 'against', 'the', 'Houston', 'Oilers'], 'in', ['the', '1993', 'AFC', 'Wild', 'Card', 'playoff']]\n",
+ "[['Cuyahoga', 'County', 'Board', 'of', 'Elections', 'building'], 'in', ['what', 'could', 'be', 'a', 'preview', 'of']]\n",
+ "[['turnout', 'percentage', 'could', 'be', 'the', 'highest'], 'in', ['a', 'century,', 'and', 'election', 'watchers', 'say']]\n",
+ "[['voter', 'lists.', 'Because', 'of', 'catastrophic', 'problems'], 'in', ['the', '2000', 'and', '2004', 'presidential', 'contests,']]\n",
+ "[['provisional', 'ballots', 'were', 'a', 'big', 'problem'], 'in', ['2004,', 'the', 'issue', 'of', 'voter', 'registration']]\n",
+ "[['Administration.', 'The', 'issue', 'has', 'produced', 'litigation'], 'in', ['Ohio,', 'Colorado,', 'and', 'Wisconsin', 'and', 'raised']]\n",
+ "[['where', 'there', 'were', 'widespread', 'voting', 'problems'], 'in', ['2004,', 'there', 'were', 'more', 'provisional', 'ballots']]\n",
+ "[['matching', 'efforts', 'and', 'these', 'lists', 'required'], 'in', ['the', '((Help', 'America', 'Vote', 'Act', 'of']]\n",
+ "[['nonpartisan', 'Pew', 'Center', 'on', 'the', 'States'], 'in', ['Washington.', '\"The', 'real', 'test', 'is', 'what']]\n",
+ "[['Michael', 'McDonald', 'of', 'George', 'Mason', 'University'], 'in', ['Virginia,', 'said', 'that', 'surges', 'in', 'registration']]\n",
+ "[['University', 'in', 'Virginia,', 'said', 'that', 'surges'], 'in', ['registration', 'and', 'heavy', 'early', 'voting', 'could']]\n",
+ "[['produce', 'the', 'highest', 'voter', 'turnout', 'percentage'], 'in', ['a', 'century,', 'since', 'the', 'election', 'of']]\n",
+ "[['of', 'all', 'voters', 'who', 'will', 'vote'], 'in', ['this', 'election,', 'will', 'have', 'cast', 'ballots']]\n",
+ "[['McDonald', 'believes', 'it', 'will', 'this', 'year,'], 'in', ['part,', 'because', 'of', 'the', 'extraordinarily', 'high']]\n",
+ "[['could', 'become', 'the', 'first', 'black', 'president'], 'in', ['history.', 'McDonald', 'projects', 'that', '64', 'percent']]\n",
+ "[['most', 'recent', 'high', 'of', '63.8', 'percent'], 'in', ['1960,', 'the', 'John', 'F.', 'Kennedy-Richard', 'M.']]\n",
+ "[['the', 'previous', 'high', 'was', '65.7', 'percent'], 'in', ['1908,', 'McDonald', 'said.', 'In', 'that', 'election,']]\n",
+ "[['mean', 'about', '136', 'million', 'votes', 'cast'], 'in', ['the', 'presidential', 'race,', 'compared', 'with', 'a']]\n",
+ "[['60', 'percent', 'turnout', 'of', 'eligible', 'voters'], 'in', ['2004', 'and', '123', 'million', 'votes', 'cast']]\n",
+ "[['Bush.', 'Cuyahoga', 'County,', 'the', 'most', 'populous'], 'in', ['the', 'perennial', 'battleground', 'state,', 'has', 'been']]\n",
+ "[['equipment', 'errors,', 'slow', 'voting', 'that', 'resulted'], 'in', ['court-ordered', 'extensions', 'of', 'voting', 'hours,', 'and']]\n",
+ "[['activities', 'that', 'have', 'precipitated', 'criminal', 'investigations'], 'in', ['about', 'a', 'dozen', 'states.', 'To', 'date,']]\n",
+ "[['sides', 'have', 'assembled', 'teams', 'of', 'lawyers'], 'in', ['every', 'state', 'to', 'respond', 'to', 'problems']]\n",
+ "[['a', 'Toledo', 'television', 'reporter,', 'about', 'discrepancies'], 'in', ['her', 'voting', 'record.', 'Her', 'early', 'vote']]\n",
+ "[['voting', 'record.', 'Her', 'early', 'vote', 'cast'], 'in', ['Cuyahoga', 'County', 'was', 'nullified', 'after', 'it']]\n",
+ "[['and', 'applied', 'for', 'an', 'absentee', 'ballot'], 'in', ['Lucas', 'County', 'where', 'Toledo', 'is', 'located.']]\n",
+ "[['this', 'is', 'its', 'third', 'voting', 'system'], 'in', ['four', 'years', 'for', 'Cuyahoga', 'after', 'discarding']]\n",
+ "[['discarding', 'flawed', 'punch-card', 'paper', 'ballots', 'used'], 'in', ['the', '2004', 'presidential', 'election', 'and', 'a']]\n",
+ "[['and', 'a', 'balky', 'touch-screen', 'system', 'used'], 'in', ['2006.', 'The', 'board', 'heard', 'a', 'report']]\n",
+ "[['spent', 'the', 'day', 'watching', 'Clay', 'Buchholz'], 'in', ['an', 'Arizona', 'Fall', 'League', 'game,', 'then']]\n",
+ "[['to', 'discuss', 'where', 'the', 'team', 'stands'], 'in', ['re-signing', 'team', 'captain', 'Jason', 'Varitek.', 'Epstein']]\n",
+ "[['lead', 'to', 'long-term', 'success.', '\"We\\'re', 'all'], 'in', ['this', 'game', 'to', 'work', 'with', 'good']]\n",
+ "[['be', 'a', 'new', 'team', 'with', 'interest'], 'in', ['Varitek:', 'the', 'Dodgers.', 'There', 'is', 'a']]\n",
+ "[['Dodgers.', 'There', 'is', 'a', 'Boston', 'connection'], 'in', ['owner', 'Frank', 'McCourt,', 'and', 'the', 'Dodgers']]\n",
+ "[['next', 'season,', 'but', 'it', \"won't\", 'be'], 'in', ['Boston.', 'Epstein', 'found', 'it', 'remarkable', 'that']]\n",
+ "[['indicated', 'that', 'he', 'wants', 'to', 'stay'], 'in', ['the', 'National', 'League,', 'and', 'while', 'he']]\n",
+ "[['some', 'volume', 'now.', 'That', 'can', 'change'], 'in', ['a', 'hurry', 'with', 'a', 'key', 'injury.']]\n",
+ "[['Epstein', 'also', 'indicated', 'the', 'Sox', 'are'], 'in', ['position', 'to', 'speak', 'to', 'their', 'arbitration-eligible']]\n",
+ "[['gone', 'to', 'arbitration', 'as', 'a', 'GM'], 'in', ['Boston,', 'always', 'settling', 'with', 'his', 'players.']]\n",
+ "[['more', 'budget-conscious', 'because', 'of', 'the', 'downturn'], 'in', ['the', 'economy,', 'arbitration', 'may', 'become', 'a']]\n",
+ "[['may', 'become', 'a', 'more', 'important', 'exercise'], 'in', ['the', 'coming', 'years.', 'The', 'Sox', 'have']]\n",
+ "[['years.', 'The', 'Sox', 'have', 'potential', 'whoppers'], 'in', ['Papelbon', 'and', 'Youkilis.', 'Last', 'season,', 'Phillies']]\n",
+ "[['gave', 'Youkilis', 'a', 'raise', 'from', '$424,000'], 'in', ['2007', 'to', '$3', 'million', 'in', '2008.']]\n",
+ "[['$424,000', 'in', '2007', 'to', '$3', 'million'], 'in', ['2008.', 'Papelbon', 'suffered', 'a', 'subluxation', 'of']]\n",
+ "[['a', 'subluxation', 'of', 'his', 'right', 'shoulder'], 'in', ['September', '2006', 'and', 'since', 'then', 'has']]\n",
+ "[['team', 'payroll,', 'which', 'was', '$133', 'million-plus'], 'in', ['2008,', '\"We\\'ll', 'do', 'whatever', 'we', 'can']]\n",
+ "[['whatever', 'we', 'can', 'to', 'be', 'competitive'], 'in', ['the', 'tough', 'AL', 'East.', \"We'll\", 'examine']]\n",
+ "[['the', 'Sox', 'will', 'cut', 'any', 'corners'], 'in', ['building', 'their', 'team.', 'Nick', 'Cafardo', 'can']]\n",
+ "[['biggest', 'financial', 'risks', 'were', 'covered.', 'Early'], 'in', ['the', 'evening,', 'one', 'of', 'the', 'few']]\n",
+ "[['of', 'the', 'few', 'truly', 'high', 'prices'], 'in', ['an', 'otherwise', 'tepid', 'evening', 'went', 'for']]\n",
+ "[['below', 'their', 'estimates,', 'which', 'were', 'set'], 'in', ['the', 'summer', 'before', 'the', 'financial', 'crisis.']]\n",
+ "[['Surrealist', 'painter', 'Enrico', 'Donati,', 'who', 'died'], 'in', ['April,', 'said', 'they', 'were', 'pulling', 'the']]\n",
+ "[['who', 'have', 'been', 'fueling', 'the', 'market'], 'in', ['the', 'last', 'few', 'years.', 'But', 'as']]\n",
+ "[['also', 'took', 'home', 'several', 'works.', 'Many'], 'in', ['the', 'audience', 'were', 'watching', 'to', 'see']]\n",
+ "[['very', 'tentative.\"', 'A', 'Degas', 'gouache,', '\"Dancer'], 'in', ['Repose,\"', 'that', 'was', 'being', 'sold', 'by']]\n",
+ "[['Kravises', 'bought', 'the', 'work', 'at', \"Sotheby's\"], 'in', ['London', 'in', '1999', 'for', '$27.9', 'million,']]\n",
+ "[['the', 'work', 'at', \"Sotheby's\", 'in', 'London'], 'in', ['1999', 'for', '$27.9', 'million,', 'and', 'in']]\n",
+ "[['in', '1999', 'for', '$27.9', 'million,', 'and'], 'in', ['the', 'summer', 'the', 'auction', 'house', 'gave']]\n",
+ "[['Munch', 'canvas', 'of', 'a', 'man', 'locked'], 'in', ['a', 'tortured', 'embrace,', 'came', 'on', 'the']]\n",
+ "[['the', 'Nahmad', 'family,', 'dealers', 'with', 'galleries'], 'in', ['New', 'York', 'and', 'London,', 'bought', 'at']]\n",
+ "[['York', 'and', 'London,', 'bought', 'at', \"Christie's\"], 'in', ['London', 'in', '1996', 'for', '$3.2', 'million,']]\n",
+ "[['London,', 'bought', 'at', \"Christie's\", 'in', 'London'], 'in', ['1996', 'for', '$3.2', 'million,', 'was', 'estimated']]\n",
+ "[['$25', 'million.', 'There', \"wasn't\", 'a', 'bid'], 'in', ['sight,', 'and', 'Tobias', 'Meyer,', 'the', \"evening's\"]]\n",
+ "[['But', 'again,', 'not', 'a', 'hand', 'went'], 'in', ['the', 'air.', \"Sotheby's\", 'had', 'given', 'Acquavella']]\n",
+ "[['being', 'sold', 'by', 'the', 'Berkshire', 'Museum'], 'in', ['Pittsfield,', 'Mass.,', 'would', 'have', 'been', 'snapped']]\n",
+ "[['fetching', 'more', 'than', 'its', 'high', 'estimate,'], 'in', ['this', 'case', '$3.5', 'million.', 'The', 'volunteers']]\n",
+ "[['jackhammer', 'and', 'mugs', 'of', 'warm', 'coffee'], 'in', ['hand', 'on', 'a', 'brisk', 'fall', 'Sunday']]\n",
+ "[['get', 'a', 'little', 'dirty', 'and', 'revel'], 'in', ['the', 'feel', 'of', 'a', 'neighborhood', 'brought']]\n",
+ "[['profound', 'impact.', 'Their', 'task', 'this', 'day'], 'in', ['the', 'middle-class', 'neighborhood', 'of', 'South', 'Squirrel']]\n",
+ "[['and', 'planning', 'for', 'the', 'site.', 'Officials'], 'in', ['Pittsburgh', 'hope', 'that', 'this', 'kind', 'of']]\n",
+ "[['size', 'it', 'was', 'at', 'its', 'peak'], 'in', ['1950,', 'when', 'it', 'had', '676,000', 'people.']]\n",
+ "[['Mayor', 'Tom', 'Murphy', 'had', 'a', 'program'], 'in', ['the', '1990s', 'called', 'Project', 'Picket', 'Fence']]\n",
+ "[['\"There\\'s', 'a', 'lot', 'of', 'vacant', 'land'], 'in', ['the', 'city.', 'But', \"we're\", 'looking', 'at']]\n",
+ "[['problem.\"', 'Gov.', 'Sarah', 'Palin,', '44,', 'is'], 'in', ['excellent', 'health', 'and', 'has', 'had', 'no']]\n",
+ "[['from', 'that', 'position', 'on', 'Oct.', '22'], 'in', ['an', 'interview', 'with', 'Brian', 'Williams', 'of']]\n",
+ "[['Providence', 'Health', 'and', 'Services', 'Alaska', 'clinic'], 'in', ['Anchorage.', 'Palin,', 'Baldwin-Johnson', 'wrote,', 'has', 'been']]\n",
+ "[['gave', 'birth', 'to', 'her', 'five', 'children'], 'in', ['1989,', '1990,', '1994,', '2000', 'and', '2008.']]\n",
+ "[['her', 'age.\"', 'Baldwin-Johnson', 'also', 'wrote', 'that'], 'in', ['1992,', 'Palin', 'had', 'a', 'breast', 'biopsy']]\n",
+ "[['be', 'physically', 'fit.', '\"Governor', 'Palin', 'is'], 'in', ['excellent', 'health', 'and', 'has', 'no', 'known']]\n",
+ "[['crowd', 'of', 'about', '3,600', 'on', 'Monday,'], 'in', ['the', 'breathless', 'final', 'hours', 'of', 'stumping']]\n",
+ "[['the', 'breathless', 'final', 'hours', 'of', 'stumping'], 'in', ['the', 'presidential', 'election.', 'Exhilarating', 'her', 'base']]\n",
+ "[['the', 'presidential', 'election.', 'Exhilarating', 'her', 'base'], 'in', ['this', 'Republican', 'stronghold,', 'Palin', 'took', 'Democratic']]\n",
+ "[['Board', 'cleared', 'her', 'of', 'ethics', 'violations'], 'in', ['the', 'firing', 'of', 'her', 'public', 'safety']]\n",
+ "[['violated', 'the', 'Alaska', 'Executive', 'Ethics', 'Act'], 'in', ['connection', 'with', 'these', 'matters,\"', 'The', 'Associated']]\n",
+ "[['Associated', 'Press', 'reported.', \"Palin's\", '30-minute', 'speech'], 'in', ['an', 'airport', 'hangar', 'was', 'one', 'of']]\n",
+ "[['and', 'said', 'that', 'he', 'has', 'flip-flopped'], 'in', ['recent', 'weeks', 'on', 'the', 'definition', 'of']]\n",
+ "[['tax', 'cut.', 'Palin', 'said', 'she', 'believed'], 'in', ['Ronald', \"Reagan's\", 'brand', 'of', 'politics.', '\"We']]\n",
+ "[[\"Reagan's\", 'brand', 'of', 'politics.', '\"We', 'believe'], 'in', ['the', 'forward', 'movement', 'of', 'your', 'freedom']]\n",
+ "[['Vietnamese', 'teen', 'who', 'was', 'severely', 'burned'], 'in', ['a', 'savage', 'attack', 'last', 'year', '--']]\n",
+ "[['ago', 'to', 'start', 'a', 'new', 'life'], 'in', ['the', 'U.S.', 'But', 'long', 'before', 'building']]\n",
+ "[['before', 'building', 'up', 'his', 'printing', 'business'], 'in', ['Chatsworth,', 'Ha', 'shared', 'a', 'bond', 'with']]\n",
+ "[['father:', 'All', 'three', 'did', 'backbreaking', 'work'], 'in', ['the', 'Vietnamese', 'rice', 'fields.', 'When', 'Ha']]\n",
+ "[['Vietnamese', 'rice', 'fields.', 'When', 'Ha', 'read'], 'in', ['the', 'Daily', 'News', 'that', 'Ni', 'Na']]\n",
+ "[['Ha,', 'who', 'lives', 'with', 'his', 'family'], 'in', ['Oak', 'Park,', 'northwest', 'of', 'Calabasas.', '\"She']]\n",
+ "[['While', \"Phung's\", 'father', 'continues', 'to', 'work'], 'in', ['the', 'rice', 'fields', 'outside', 'Da', 'Nang,']]\n",
+ "[['outside', 'Da', 'Nang,', 'a', 'port', 'city'], 'in', ['central', 'Vietnam,', 'her', 'mother', 'will', 'accompany']]\n",
+ "[['sponsored', 'by', 'the', \"Children's\", 'Burn', 'Foundation'], 'in', ['Sherman', 'Oaks.', 'Seventy', 'minutes', 'later,', 'after']]\n",
+ "[['later,', 'after', 'clearing', 'customs,', 'Phung', 'emerged'], 'in', ['a', 'wheelchair,', 'her', 'mother', 'by', 'her']]\n",
+ "[['going', 'to', 'be', 'fine.', \"Phung's\", 'arrival'], 'in', ['Southern', 'California', 'follows', 'a', 'long', 'journey']]\n",
+ "[['March', '2007,', 'she', 'attended', 'a', 'party'], 'in', ['her', 'hometown', 'with', 'friends.', 'A', 'neighborhood']]\n",
+ "[['A', 'neighborhood', 'acquaintance,', 'who', 'had', 'been'], 'in', ['a', 'motorcycle', 'accident', 'that', 'doctors', 'said']]\n",
+ "[['and', 'stiffness', 'that', 'has', 'gotten', 'worse'], 'in', ['the', 'months', 'since', 'the', 'incident.', '\"I']]\n",
+ "[['medical', 'appointments.', 'After', \"Phung's\", 'story', 'appeared'], 'in', ['the', 'Daily', 'News', 'earlier', 'this', 'year,']]\n",
+ "[['1,', 'Ha', 'was', 'taking', 'a', 'walk'], 'in', ['his', 'Oak', 'Park', 'neighborhood', 'when', 'he']]\n",
+ "[['less', 'than', '$2', 'a', 'day', 'working'], 'in', ['the', 'rice', 'fields,', 'and', 'her', 'mother']]\n",
+ "[['daughter.', 'Viet', 'Ha,', 'who', 'also', 'worked'], 'in', ['rice', 'fields', 'as', 'a', 'child', 'in']]\n",
+ "[['in', 'rice', 'fields', 'as', 'a', 'child'], 'in', ['his', 'native', 'Vietnam,', 'felt', 'that', 'hosting']]\n",
+ "[['to', 'leave', 'Vietnam', 'unfamiliar', 'with', 'life'], 'in', ['the', 'United', 'States.', 'Ha', 'left', 'Vietnam']]\n",
+ "[['United', 'States.', 'Ha', 'left', 'Vietnam', 'alone'], 'in', ['his', 'late', 'teens,', 'but', 'his', 'brothers']]\n",
+ "[['Ha,', 'who', 'worked', 'his', 'way', 'up'], 'in', ['the', 'printing', 'business', 'and', 'now', 'owns']]\n",
+ "[['after', 'his', 'son.', '\"Everything', \"that's\", 'happened'], 'in', ['my', 'life', 'happened', 'almost', 'by', 'accident']]\n",
+ "[['has', 'refused', 'to', 'look', 'at', 'herself'], 'in', ['a', 'mirror', 'since', 'she', 'was', 'burned,']]\n",
+ "[['mansion', 'compared', 'with', 'her', 'tiny', 'house'], 'in', ['Da', 'Nang.', '\"I\\'m', 'OK,\"', 'Phung', 'said']]\n",
+ "[['Phung', 'said', 'during', 'her', 'first', 'night'], 'in', ['her', 'new', 'home,', 'while', 'her', 'mother']]\n",
+ "[['home,', 'while', 'her', 'mother', 'looked', 'on'], 'in', ['their', 'new', 'bedroom.', \"Phung's\", 'main', 'doctor,']]\n",
+ "[['her', 'first', 'surgery', 'to', 'take', 'place'], 'in', ['the', 'next', 'few', 'weeks.', 'He', 'hopes']]\n",
+ "[['fortunate', 'enough', 'to', 'have', 'good', 'lives'], 'in', ['this', 'country,', 'which', 'once', 'seemed', 'so']]\n",
+ "[['Torain', 'said.', '\"I', 'got', 'healthy', 'just'], 'in', ['time.\"', 'Pittman,', 'the', 'starter', 'in', 'the']]\n",
+ "[['just', 'in', 'time.\"', 'Pittman,', 'the', 'starter'], 'in', ['the', 'past', 'three', 'games,', 'aggravated', 'a']]\n",
+ "[['past', 'three', 'games,', 'aggravated', 'a', 'stinger'], 'in', ['his', 'neck', 'during', 'the', 'Miami', 'game']]\n",
+ "[['during', 'the', 'Miami', 'game', 'and', 'was'], 'in', ['too', 'much', 'pain', 'to', 'play', 'in']]\n",
+ "[['in', 'too', 'much', 'pain', 'to', 'play'], 'in', ['the', 'second', 'half.', 'Hall,', 'who', 'also']]\n",
+ "[['injuries', 'this', 'season,', 'broke', 'a', 'bone'], 'in', ['his', 'left', 'hand', 'late', 'in', 'the']]\n",
+ "[['bone', 'in', 'his', 'left', 'hand', 'late'], 'in', ['the', 'game.', 'The', 'long-term', 'prognosis', \"isn't\"]]\n",
+ "[['who', 'injured', 'the', 'medial', 'collateral', 'ligament'], 'in', ['his', 'left', 'knee', 'in', 'the', 'fourth']]\n",
+ "[['collateral', 'ligament', 'in', 'his', 'left', 'knee'], 'in', ['the', 'fourth', 'quarter.', 'He', 'is', 'expected']]\n",
+ "[['leg', 'and', 'a', 'pair', 'of', 'crutches'], 'in', ['the', 'locker', 'room', 'after', 'the', 'game.']]\n",
+ "[['after', 'the', 'game.', 'Williams', 'was', 'injured'], 'in', ['the', 'fourth', 'quarter', 'while', 'trying', 'to']]\n",
+ "[['most', 'durable', 'defenders', 'and', 'has', 'played'], 'in', ['every', 'game', 'for', 'Denver', 'since', 'the']]\n",
+ "[['Denver', 'since', 'the', 'Broncos', 'drafted', 'him'], 'in', ['the', 'first', 'round', 'in', '2004.', 'He']]\n",
+ "[['drafted', 'him', 'in', 'the', 'first', 'round'], 'in', ['2004.', 'He', 'has', 'started', 'at', 'least']]\n",
+ "[['has', 'started', 'at', 'least', '14', 'games'], 'in', ['each', 'of', 'his', 'first', 'four', 'seasons.']]\n",
+ "[['Green', 'and', 'rookie', 'Wesley', 'Woodyard', 'played'], 'in', [\"Williams'\", 'absence', 'in', 'the', 'fourth', 'quarter,']]\n",
+ "[['Wesley', 'Woodyard', 'played', 'in', \"Williams'\", 'absence'], 'in', ['the', 'fourth', 'quarter,', 'and', 'coaches', 'might']]\n",
+ "[['to', 'New', 'England.', 'Wilborn', 'also', 'filled'], 'in', ['for', 'Bailey', 'there', 'in', 'the', 'preseason']]\n",
+ "[['also', 'filled', 'in', 'for', 'Bailey', 'there'], 'in', ['the', 'preseason', 'and', 'the', 'season', 'opener.']]\n",
+ "[['why', 'his', 'underachieving', 'team', 'cannot', 'win'], 'in', ['the', 'NBA', 'playoffs?', 'Under', 'the', 'duress']]\n",
+ "[['and', 'get', 'hometown', 'hero', 'Chauncey', 'Billups'], 'in', ['return.', 'Love', 'him', 'or', 'loathe', 'him,']]\n",
+ "[['letting', 'baseball', 'superstar', 'Alex', 'Rodriguez', 'move'], 'in', ['with', 'Derek', 'Jeter', 'at', 'the', 'House']]\n",
+ "[['as', 'obvious', 'as', 'the', 'bad', 'vibe'], 'in', ['the', 'dressing', 'room', 'on', \"Iverson's\", 'last']]\n",
+ "[['dressing', 'room', 'on', \"Iverson's\", 'last', 'game'], 'in', ['a', 'Nuggets', 'uniform.', 'Everybody', 'knew', 'this']]\n",
+ "[['this', 'probably', 'was', 'his', 'final', 'season'], 'in', ['Denver.', 'But', 'why', 'did', 'the', 'team']]\n",
+ "[['most', 'upbeat', 'personality', 'on', 'the', 'team'], 'in', ['victory', 'or', 'defeat,', 'dressed', 'silently', 'in']]\n",
+ "[['in', 'victory', 'or', 'defeat,', 'dressed', 'silently'], 'in', ['a', 'corner', 'stall,', 'like', 'a', 'sad']]\n",
+ "[['angrily', 'on', \"A.I.'s\", 'behalf', 'and', 'got'], 'in', ['the', 'face', 'of', 'a', 'Nuggets', 'executive']]\n",
+ "[['one', 'of', 'the', 'most', 'prolific', 'scorers'], 'in', ['NBA', 'history.', 'A', 'Nuggets', 'bench', 'that']]\n",
+ "[['center', 'Nene,', 'incredulous', 'at', 'being', 'ignored'], 'in', ['the', 'post', 'by', 'teammates', 'after', 'scoring']]\n",
+ "[['by', 'teammates', 'after', 'scoring', '22', 'points'], 'in', ['a', 'victory', 'only', '24', 'hours', 'earlier,']]\n",
+ "[['Anthony', 'calmly', 'explained', 'his', 'own', 'failures'], 'in', ['the', 'home', 'opener,', 'but', 'as', 'he']]\n",
+ "[['about', 'the', 'trade', 'until', 'I', 'came'], 'in', ['(Monday)', 'morning.', 'I', 'think', \"that's\", 'the']]\n",
+ "[['natural-born', 'gunners,', 'a', 'clash', 'of', 'egos'], 'in', ['the', 'locker', 'room', 'and', 'the', 'failure']]\n",
+ "[['young', 'franchise', 'player,', 'a', 'full', 'partner'], 'in', ['the', \"plan's\", 'execution', 'when', 'the', 'going']]\n",
+ "[['African', 'import', 'Cheikh', 'Samb', 'joining', 'Billups'], 'in', ['Denver.', 'But', 'do', 'not', 'be', 'distracted']]\n",
+ "[['riff', 'or', 'raff.', 'McDyess', 'left', 'town'], 'in', ['2002', 'feeling', 'betrayed,', 'and', 'he', \"ain't\"]]\n",
+ "[['that', 'the', 'next', 'time', 'Dice', 'played'], 'in', ['Denver,', 'it', 'would', 'be', 'wearing', 'a']]\n",
+ "[['had', 'become', 'a', 'point', 'of', 'contention'], 'in', ['discussions', 'behind', 'closed', 'doors', 'with', 'Nuggets']]\n",
+ "[['show.', '\"His', 'instinctive', 'basketball', 'has', 'leadership'], 'in', ['it,\"', 'Karl', 'said', 'of', 'Billups.', '\"I']]\n",
+ "[['as', 'many', 'leaks,', 'as', \"we've\", 'had'], 'in', ['the', 'past.', 'And', 'I', 'think', 'he']]\n",
+ "[['and', 'as', 'stable', 'as', 'any', 'team'], 'in', ['the', 'NBA.', 'But', 'stability', 'eventually', 'lost']]\n",
+ "[['acquired', 'the', 'young', 'center', 'Cheikh', 'Samb'], 'in', ['the', 'deal.', '\"We', 'have', 'been', 'extremely']]\n",
+ "[['approach,', 'the', 'Pistons', 'won', 'the', 'championship'], 'in', ['2004', 'and', 'returned', 'to', 'the', 'finals']]\n",
+ "[['2004', 'and', 'returned', 'to', 'the', 'finals'], 'in', ['2005.', 'Their', '284', 'victories', 'in', 'the']]\n",
+ "[['finals', 'in', '2005.', 'Their', '284', 'victories'], 'in', ['the', 'past', 'five', 'seasons', 'ranked', 'third']]\n",
+ "[['the', 'past', 'five', 'seasons', 'ranked', 'third'], 'in', ['the', 'league.', 'But', 'their', 'core', 'group']]\n",
+ "[['Pistons', 'were', 'overtaken', 'by', 'superstar-driven', 'teams'], 'in', ['Miami,', 'Cleveland', 'and', 'Boston.', 'After', 'Detroit']]\n",
+ "[['After', 'Detroit', 'lost', 'to', 'the', 'Celtics'], 'in', ['the', 'Eastern', 'Conference', 'finals', 'last', 'spring,']]\n",
+ "[['All-Star,', 'he', 'has', 'averaged', '27.7', 'points'], 'in', ['a', '13-year', 'career.', 'He', 'was', 'the']]\n",
+ "[['was', 'the', \"league's\", 'most', 'valuable', 'player'], 'in', ['2001,', 'when', 'he', 'led', 'the', 'Philadelphia']]\n",
+ "[['Wallace', 'leave', 'as', 'a', 'free', 'agent'], 'in', ['2006.', 'Richard', 'Hamilton,', 'Tayshaun', 'Price', 'and']]\n",
+ "[['the', \"league's\", 'best.', 'Rodney', 'Stuckey', 'started'], 'in', [\"Billups'\", 'place', 'at', 'point', 'guard', 'against']]\n",
+ "[['him', 'to', 'make', 'his', 'debut', 'Wednesday'], 'in', ['Toronto.', 'The', 'deal', 'left', 'the', 'Detroit']]\n",
+ "[['two', 'seasons', 'for', 'the', 'Nuggets', 'early'], 'in', ['his', 'career.', 'The', 'trade', 'has', 'multiple']]\n",
+ "[['go', 'and', 'become', 'a', 'major', 'player'], 'in', ['free', 'agency', 'in', '2010,', 'when', 'LeBron']]\n",
+ "[['a', 'major', 'player', 'in', 'free', 'agency'], 'in', ['2010,', 'when', 'LeBron', 'James,', 'Chris', 'Bosh']]\n",
+ "[['clock', 'counting', 'down', 'the', 'minutes', 'remaining'], 'in', ['practice', 'and', 'possibly', 'in', 'his', 'Knicks']]\n",
+ "[['minutes', 'remaining', 'in', 'practice', 'and', 'possibly'], 'in', ['his', 'Knicks', 'career,', 'Stephon', 'Marbury', 'idled']]\n",
+ "[['Bucks,', 'but', 'he', 'was', 'perhaps', 'active'], 'in', ['his', 'own', 'negotiations', 'to', 'solve', 'a']]\n",
+ "[['and', 'he', 'and', 'Walsh', 'met', 'Monday'], 'in', ['an', 'attempt', 'to', 'find', 'a', 'resolution.']]\n",
+ "[['resolution.', 'Marbury', 'is', 'owed', '$21.9', 'million'], 'in', ['the', 'final', 'year', 'of', 'his', 'contract,']]\n",
+ "[['anything', 'less', 'than', 'his', 'full', 'contract'], 'in', ['a', 'buyout.', 'On', 'Monday,', 'he', 'reiterated']]\n",
+ "[['no', 'one', 'is', 'directly', 'advising', 'Marbury'], 'in', ['his', 'dealings', 'with', 'Walsh', 'and,', 'at']]\n",
+ "[['the', 'union', 'might', 'try', 'to', 'intervene'], 'in', ['the', 'stalemate', 'on', \"Marbury's\", 'behalf', 'to']]\n",
+ "[['other', 'problems,', 'including', 'the', 'listlessness', 'displayed'], 'in', ['consecutive', 'defeats', 'after', 'their', 'season-opening', 'win']]\n",
+ "[['for', 'candidates', 'to', 'troll', 'for', 'votes'], 'in', ['nontraditional', 'ways.', 'So,', 'two', 'years', 'after']]\n",
+ "[['No', 'late-night', 'rallies', 'could', 'place', 'them'], 'in', ['front', 'of', 'as', 'many', 'supporters', 'as']]\n",
+ "[['been', 'alive', 'through', '10', 'elections.', '\"Maybe'], 'in', ['the', 'past,', 'there', 'was', 'a', 'desire']]\n",
+ "[['vice', 'president', 'of', 'ESPN,', 'which', 'is'], 'in', ['its', 'first', 'presidential', 'election', 'cycle', 'with']]\n",
+ "[['former', '\"Monday', 'Night\"', 'team', 'said', 'that'], 'in', ['their', 'time', 'it', 'would', 'have', 'been']]\n",
+ "[['Tonight.\"', 'McCain', 'and', 'Obama', 'were', 'not'], 'in', ['the', 'ESPN', 'booth,', 'unlike', 'the', 'celebrities']]\n",
+ "[['unlike', 'the', 'celebrities', 'the', 'network', 'paraded'], 'in', ['front', 'of', 'viewers', 'in', '2006', 'and']]\n",
+ "[['network', 'paraded', 'in', 'front', 'of', 'viewers'], 'in', ['2006', 'and', '2007', 'before', 'realizing', 'that']]\n",
+ "[['Chris', 'Berman,', 'working', 'from', \"ESPN's\", 'studios'], 'in', ['Bristol,', 'Conn.,', 'interviewed', 'Obama', 'first', 'Monday']]\n",
+ "[['spoke', 'next', 'with', 'McCain,', 'who', 'was'], 'in', ['Indianapolis.', 'The', 'order', 'that', 'they', 'ran,']]\n",
+ "[['Reagan', 'was', 'the', 'governor', 'of', 'California'], 'in', ['1973', 'when', 'he', 'was', 'spotted', 'in']]\n",
+ "[['in', '1973', 'when', 'he', 'was', 'spotted'], 'in', ['the', 'back', 'of', \"ABC's\", 'booth', 'talking']]\n",
+ "[['out', 'an', 'attack', 'on', 'July', '13'], 'in', ['which', 'nine', 'U.S.', 'soldiers', 'were', 'killed']]\n",
+ "[['killed', 'and', 'a', 'remote', 'American', 'outpost'], 'in', ['eastern', 'Afghanistan', 'was', 'nearly', 'overrun.', 'Afghan']]\n",
+ "[['villagers', 'repeatedly', 'warned', 'the', 'American', 'troops'], 'in', ['that', 'time', 'that', 'militants', 'were', 'plotting']]\n",
+ "[['weapons', 'and', 'ammunition', 'that', 'were', 'found'], 'in', ['the', 'police', 'barracks', 'in', 'the', 'adjacent']]\n",
+ "[['were', 'found', 'in', 'the', 'police', 'barracks'], 'in', ['the', 'adjacent', 'village', 'of', 'Wanat', 'after']]\n",
+ "[['The', 'police', 'officers', 'were', 'found', 'dressed'], 'in', ['\"crisp,', 'clean', 'new', 'uniforms,\"', 'the', 'report']]\n",
+ "[['back', 'after', 'a', 'pitched', 'four-hour', 'battle,'], 'in', ['which', 'American', 'artillery,', 'warplanes', 'and', 'attack']]\n",
+ "[['called', 'in.', 'Still,', 'the', 'militants', 'fought'], 'in', ['ways', 'that', 'showed', 'imaginative', 'military', 'training,']]\n",
+ "[['they', 'thought', 'were', 'grenades,', 'but', 'were'], 'in', ['fact', 'rocks', 'thrown', 'by', 'Taliban', 'attackers,']]\n",
+ "[['died', 'and', '27', 'were', 'injured,', 'most'], 'in', ['the', 'first', '20', 'minutes', 'of', 'the']]\n",
+ "[['single', 'loss', 'for', 'the', 'American', 'military'], 'in', ['Afghanistan', 'since', 'June', '2005,', 'and', 'one']]\n",
+ "[['the', 'worst', 'overall', 'since', 'the', 'invasion'], 'in', ['late', '2001.', 'It', 'underscored', 'the', 'vulnerability']]\n",
+ "[['underscored', 'the', 'vulnerability', 'of', 'American', 'forces'], 'in', ['Afghanistan,', 'as', 'well', 'as', 'the', 'continuing']]\n",
+ "[['colonel', 'whose', 'identity', 'was', 'not', 'disclosed'], 'in', ['a', 'redacted', 'copy', 'of', 'the', 'report']]\n",
+ "[['arrested.', 'But', 'the', 'senior', 'American', 'commander'], 'in', ['eastern', 'Afghanistan,', 'Maj.', 'Gen.', 'Jeffrey', 'J.']]\n",
+ "[['Lt.', 'Col.', 'Rumi', 'Nielson-Green.', 'Nielson-Green', 'said'], 'in', ['a', 'telephone', 'interview', 'on', 'Monday', 'that']]\n",
+ "[['was', 'unclear', 'whether', 'the', 'police', 'chief'], 'in', ['Wanat', 'was', 'complicit.', 'A', 'spokesman', 'for']]\n",
+ "[['two', 'days', 'of', 'custody,\"', 'he', 'said'], 'in', ['a', 'telephone', 'interview.', 'The', 'report,', 'which']]\n",
+ "[['completed', 'on', 'Aug.', '13', 'and', 'declassified'], 'in', ['recent', 'days', 'to', 'allow', 'military', 'officials']]\n",
+ "[['Team', '--', 'a', 'unit', 'that', 'was'], 'in', ['the', 'final', 'days', 'of', 'a', '15-month']]\n",
+ "[['It', 'concluded', 'that', 'despite', 'reports', 'earlier'], 'in', ['July', 'that', '200', 'to', '300', 'militants']]\n",
+ "[['massing', 'to', 'attack', 'another', 'remote', 'outpost'], 'in', ['the', 'same', 'vicinity,', 'the', 'commanders', 'at']]\n",
+ "[['of', 'the', 'attack', 'have', 'been', 'described'], 'in', ['recent', 'months', 'by', 'publications', 'including', 'The']]\n",
+ "[['said', 'the', 'military', 'continued', 'to', 'patrol'], 'in', ['the', 'region', 'from', 'a', 'larger', 'base']]\n",
+ "[['more', 'willing', 'to', 'run', 'aggressive', 'ads'], 'in', ['which', 'brands', 'attack', 'their', 'competitors', 'by']]\n",
+ "[['Partnership,', 'a', 'brand', 'identity', 'consulting', 'company'], 'in', ['New', 'York.', 'The', 'spin', 'doctors', 'on']]\n",
+ "[['the', 'intent', 'is', 'the', 'same', 'as'], 'in', ['politics:', 'build', 'yourself', 'up', 'by', 'tearing']]\n",
+ "[[\"Dunkin'\", 'Donuts', 'division', 'of', \"Dunkin'\", 'Brands'], 'in', ['Canton,', 'Mass.', 'Her', 'reference', 'was', 'to']]\n",
+ "[['20,', 'centered', 'on', 'a', 'taste', 'test'], 'in', ['which', 'the', 'respondents', 'said', 'they', 'preferred']]\n",
+ "[['created', 'by', 'Hill,', 'Holliday,', 'Connors,', 'Cosmopulos'], 'in', ['Boston,', 'part', 'of', 'the', 'Interpublic', 'Group']]\n",
+ "[['a', 'spokesman', 'for', 'Campbell', 'Soup', 'Co.'], 'in', ['Camden,', 'N.J.', '\"The', 'early', 'interest', 'from']]\n",
+ "[['The', 'campaign,', 'created', 'by', 'BBDO', 'Worldwide'], 'in', ['New', 'York,', 'part', 'of', 'the', 'Omnicom']]\n",
+ "[['generate', 'response', 'ads', 'from', 'the', 'targets'], 'in', ['which', 'they', 'defend', 'themselves', 'or', 'even']]\n",
+ "[['chief', 'marketing', 'officer', 'at', 'General', 'Mills'], 'in', ['Minneapolis,', 'the', 'parent', 'of', 'Progresso,', 'which']]\n",
+ "[['chicken', 'noodle', 'soups', 'that', 'are', 'featured'], 'in', ['the', 'Select', 'Harvest', 'campaign.', 'Progresso,', 'needless']]\n",
+ "[['are', 'created', 'by', 'Saatchi', '&', 'Saatchi'], 'in', ['New', 'York,', 'part', 'of', 'the', 'Publicis']]\n",
+ "[['Macintosh', 'as', 'cool,', 'Microsoft', 'Corp.', 'responded'], 'in', ['September', 'with', '$300', 'million', 'worth', 'of']]\n",
+ "[['riposte,', 'by', 'Crispin', 'Porter', '&', 'Bogusky'], 'in', ['Miami', 'and', 'Boulder,', 'Colo.,', 'part', 'of']]\n",
+ "[['manager', 'for', 'brand', 'marketing', 'at', 'Microsoft'], 'in', ['Redmond,', 'Wash.', '\"If', 'they', 'want', 'to']]\n",
+ "[['Check,', 'released', 'last', 'month', 'by', 'Mullen'], 'in', ['Wenham,', 'Mass.,', 'another', 'agency', 'owned', 'by']]\n",
+ "[['value,\"', 'said', 'a', 'spokesman', 'for', 'Starbucks'], 'in', ['Seattle,', 'Vivek', 'Varma.', '\"Lots', 'of', 'companies']]\n",
+ "[['from', \"Dunkin'\", 'Donuts', 'that', 'challenges', 'Starbucks'], 'in', ['a', 'way', 'consumers', 'consider', 'inappropriate', 'could']]\n",
+ "[['political', 'advertising', '--', 'particularly', 'presidential', 'ads'], 'in', ['2008', '--', 'that', 'may', 'be', 'a']]\n",
+ "[['negotiator', 'on', 'Taiwan', 'matters', 'began', 'negotiating'], 'in', ['Taipei', 'on', 'Tuesday', 'over', 'transportation', 'and']]\n",
+ "[['the', 'end', 'of', 'the', 'civil', 'war'], 'in', ['1949.', 'His', 'delegation', 'and', 'Taiwanese', 'officials']]\n",
+ "[['delegation', 'and', 'Taiwanese', 'officials', 'are', 'engaging'], 'in', ['five', 'days', 'of', 'talks', 'intended', 'to']]\n",
+ "[['began.', 'Negotiators', 'for', 'their', 'governments', 'met'], 'in', ['June', 'in', 'Beijing', 'after', 'a', 'long']]\n",
+ "[['for', 'their', 'governments', 'met', 'in', 'June'], 'in', ['Beijing', 'after', 'a', 'long', 'hiatus', 'and']]\n",
+ "[['Ying-jeou', 'of', 'Taiwan,', 'who', 'was', 'elected'], 'in', ['March', 'after', 'promising', 'to', 'improve', 'the']]\n",
+ "[['mainland.', 'But', \"Ma's\", 'popularity', 'has', 'sagged'], 'in', ['recent', 'months.', \"Taiwan's\", 'economic', 'performance', 'has']]\n",
+ "[['politician', 'while', 'visiting', 'the', 'Confucius', 'Temple'], 'in', ['the', 'southern', 'city', 'of', 'Tainan,', 'an']]\n",
+ "[['the', 'fold.', 'Taiwan', 'split', 'from', 'China'], 'in', ['1949,', 'when', 'the', 'Kuomintang', 'sought', 'refuge']]\n",
+ "[['that', 'the', 'Beijing', 'government', 'first', 'made'], 'in', ['2005', 'that', 'was', 'rejected', 'by', \"Taiwan's\"]]\n",
+ "[['the', 'pandas.', 'There', 'is', 'rampant', 'speculation'], 'in', ['both', 'China', 'and', 'Taiwan', 'over', 'whether']]\n",
+ "[['that', 'Ma', 'holds', 'a', 'title', 'that'], 'in', ['international', 'affairs', 'is', 'usually', 'accorded', 'only']]\n",
+ "[['identity', 'and', 'destiny', 'feels', 'especially', 'timely'], 'in', ['this', 'historic', 'election', 'season.', '\"It', 'just']]\n",
+ "[['said', 'Anderson,', 'who', 'grew', 'up', 'steeped'], 'in', ['revolutionary', 'mythology,', '\"that', 'this', 'was', 'the']]\n",
+ "[['with', 'phrases', 'such', 'as', '\"reason', 'enthroned'], 'in', ['the', 'pillowed', 'seraglio', 'of', 'the', 'brain.\"']]\n",
+ "[['of', 'a', 'trend', 'toward', 'greater', 'heft'], 'in', ['Young', 'Adult', 'literature,', 'once', 'a', 'wasteland']]\n",
+ "[['at', 'Vermont', 'College', 'to', 'immerse', 'himself'], 'in', [\"Octavian's\", 'universe.', '\"For', 'the', '5', '1/2']]\n",
+ "[['or', 'books', 'they', 'would', 'have', 'read'], 'in', ['the', '18th', 'century.', 'So', 'that', 'means,']]\n",
+ "[['which,', 'I', 'should', 'add\"--he', 'laughed--\"I', 'read'], 'in', ['translation.\"', 'Anderson', 'said', 'it', 'was', 'critical']]\n",
+ "[['novel', 'was', 'shaped', 'by', 'his', 'childhood'], 'in', ['Stow,', 'Mass.,', 'a', 'Boston-area', 'town', 'with']]\n",
+ "[['\"We', 'can', 'look', 'at', 'the', 'Revolution'], 'in', ['hindsight,\"', 'he', 'said,', '\"and', 'everything', 'seems']]\n",
+ "[[\"'What\", 'was', 'it', 'like', 'to', 'be'], 'in', ['the', 'midst', 'of', 'that', 'massive,', 'national']]\n",
+ "[['and', 'believes', 'himself', 'a', 'prince.', 'Only'], 'in', ['adolescence', 'does', 'Octavian', 'realize', 'the', 'gothic']]\n",
+ "[['African', 'race.', 'Such', 'an', 'experiment', 'did,'], 'in', ['fact,', 'take', 'place', 'at', \"Anderson's\", 'alma']]\n",
+ "[['on', 'the', 'Waves,\"', 'Anderson', 'places', 'Octavian'], 'in', ['Lord', \"Dunmore's\", 'Royal', 'Ethiopian', 'Regiment--a', 'perfect']]\n",
+ "[['had', 'so', 'much', 'more', 'to', 'lose'], 'in', ['the', 'cause', 'of', 'liberty', 'than', 'their']]\n",
+ "[['historians', 'will', 'say,', '\"At', 'this', 'stage'], 'in', ['history,', 'Americans', 'had', 'a', 'huge', 'investment']]\n",
+ "[['history,', 'Americans', 'had', 'a', 'huge', 'investment'], 'in', ['ignoring', 'the', 'effects', 'of', 'how', 'they']]\n",
+ "[['the', 'organization', 'appears', 'to', 'be', 'locked'], 'in', ['a', 'fatal', 'embrace.', 'The', 'new', 'coach,']]\n",
+ "[['the', 'idea', 'of', 'playing', 'him.', 'Granted,'], 'in', ['this', 'drama', 'of', 'spy', 'and', 'counter']]\n",
+ "[['if', \"he's\", 'sitting', 'on', 'the', 'bench'], 'in', ['street', 'clothes.', \"It's\", 'in', 'the', \"Knicks'\"]]\n",
+ "[['the', 'bench', 'in', 'street', 'clothes.', \"It's\"], 'in', ['the', \"Knicks'\", 'interest', 'to', 'tout', \"Marbury's\"]]\n",
+ "[['--', 'how', 'he', 'came', 'to', 'camp'], 'in', ['the', 'best', 'shape', 'of', 'his', 'life']]\n",
+ "[['bench.', '\"I', 'think', 'he', 'can', 'play'], 'in', ['this', 'style,\"', 'Walsh,', 'referring', 'to', \"D'Antoni's\"]]\n",
+ "[['Knicks', 'scrimmaged', 'and', \"D'Antoni\", 'coached,', 'Marbury,'], 'in', ['full', 'practice', 'attire,', 'leaned', 'against', 'the']]\n",
+ "[['the', 'current', 'events', 'that', 'have', 'Marbury'], 'in', ['limbo', 'as', 'a', 'seemingly', 'permanent', 'fixture']]\n",
+ "[['then', 'that', 'chant', 'and', 'everything', 'was'], 'in', ['there.\"', 'He', 'was', 'referring', 'to', 'the']]\n",
+ "[['and', 'Marbury', 'from', 'their', 'time', 'together'], 'in', ['Phoenix?', '\"I', \"don't\", 'get', 'that', 'feeling']]\n",
+ "[['him,', 'ever.', 'I', \"wouldn't\", 'do', 'that'], 'in', ['this', 'situation.\"', 'The', 'source', 'of', 'the']]\n",
+ "[['to', 'intervene', 'and', 'possibly', 'assist', 'Marbury'], 'in', ['any', 'negotiations.', '\"Quite', 'honestly,', \"I've\", 'never']]\n",
+ "[['the', 'Knicks', 'decided', 'to', 'put', 'Marbury'], 'in', ['uniform', 'for', 'a', 'day', 'or', 'a']]\n",
+ "[['coach,\"', 'Walsh', 'said.', '\"And', 'I', 'believe'], 'in', ['my', 'coach.', 'Right', 'now,', \"I'm\", 'just']]\n",
+ "[['end', 'the', 'entire', 'play.', 'A', 'judge'], 'in', ['Houston', 'heard', 'arguments', 'Monday', 'on', 'the']]\n",
+ "[['whether', 'the', 'case', 'should', 'be', 'tried'], 'in', ['Texas.', 'U.S.', 'District', 'Court', 'Judge', 'Keith']]\n",
+ "[['investigate', 'the', 'use', 'of', 'performance-enhancing', 'substances'], 'in', ['the', 'sport.', 'He', 'released', 'a', 'widely']]\n",
+ "[['a', 'widely', 'distributed', 'report', 'last', 'December'], 'in', ['which', 'Clemens', 'was', 'identified,', 'along', 'with']]\n",
+ "[['the', '\"mere', 'presence', 'of', 'the', 'FBI'], 'in', ['the', 'room\"', 'when', 'McNamee', 'met', 'with']]\n",
+ "[[\"McNamee's\", 'testimony', '\"furthered', 'the', \"government's\", 'cause\"'], 'in', ['prosecuting', 'drug', 'users,', 'which', 'would', 'be']]\n",
+ "[['talking', 'of', 'matters', 'that', 'took', 'place'], 'in', ['Toronto,', 'Florida', 'and', 'New', 'York.\"', 'Restating']]\n",
+ "[['Florida', 'and', 'New', 'York.\"', 'Restating', 'language'], 'in', ['briefs', 'already', 'filed', 'with', 'the', 'court,']]\n",
+ "[['trying', 'to', 'eke', 'out', 'a', 'living'], 'in', ['Queens', 'to', 'support', 'his', 'family.\"', 'Serena']]\n",
+ "[['election,', 'preparing', 'for', 'her', 'opening', 'match'], 'in', ['the', 'WTA', \"Tour's\", 'season-ending', 'championships', 'in']]\n",
+ "[['in', 'the', 'WTA', \"Tour's\", 'season-ending', 'championships'], 'in', ['Doha,', 'Qatar,', 'which', 'begin', 'Tuesday.', 'Williams']]\n",
+ "[['not', 'mean', 'she', 'had', 'no', 'stake'], 'in', ['the', 'outcome', 'on', 'Nov.', '4.', 'As']]\n",
+ "[['president.', '\"I', \"don't\", 'really', 'get', 'involved'], 'in', ['political', 'affairs', 'because', 'of', 'the', 'way']]\n",
+ "[['the', \"world's\", 'biggest', 'nations,\"', 'she', 'said'], 'in', ['an', 'interview', 'before', 'leaving', 'the', 'United']]\n",
+ "[['said.', 'Briefly', 'back', 'at', 'No.', '1'], 'in', ['September', 'after', 'her', 'U.S.', 'Open', 'victory,']]\n",
+ "[['3', 'after', 'playing', 'one', 'singles', 'match'], 'in', ['the', 'last', 'eight', 'weeks.', '\"Well,', 'obviously']]\n",
+ "[['plays', 'every', 'week,', 'so', 'I', 'guess'], 'in', ['this', 'tour', 'if', 'you', 'play', 'every']]\n",
+ "[['Justine', 'Henin', 'and', 'Kim', 'Clijsters.', 'And'], 'in', ['this', 'egalitarian', 'season', 'when,', 'in', 'the']]\n",
+ "[['And', 'in', 'this', 'egalitarian', 'season', 'when,'], 'in', ['the', 'wake', 'of', \"Henin's\", 'surprising', 'retirement,']]\n",
+ "[['ranking,', 'Williams', 'had', 'the', 'best', 'record'], 'in', ['big', 'events.', 'She', 'reached', 'the', 'quarterfinals']]\n",
+ "[['the', 'final', 'at', 'Wimbledon', 'and', 'won'], 'in', ['New', 'York', 'after', 'winning', 'an', 'Olympic']]\n",
+ "[['after', 'winning', 'an', 'Olympic', 'gold', 'medal'], 'in', ['doubles', 'with', 'Venus', 'in', 'Beijing.', 'It']]\n",
+ "[['gold', 'medal', 'in', 'doubles', 'with', 'Venus'], 'in', ['Beijing.', 'It', 'was', 'not', 'quite', '2002,']]\n",
+ "[['was', 'ranked', 'outside', 'the', 'top', '100'], 'in', ['2006', 'and', 'wondering', 'if', 'her', 'fragile']]\n",
+ "[[\"world's\", 'top', 'eight', 'players', 'and', 'are'], 'in', ['Doha', 'for', 'the', 'first', 'time.', '\"That']]\n",
+ "[['one', 'exception', 'was', 'the', 'French', 'Open,'], 'in', ['which', 'she', 'labored', 'to', 'keep', 'the']]\n",
+ "[['she', 'labored', 'to', 'keep', 'the', 'ball'], 'in', ['the', 'court', 'and', 'was', 'upset', 'in']]\n",
+ "[['in', 'the', 'court', 'and', 'was', 'upset'], 'in', ['the', 'third', 'round', 'by', 'Katarina', 'Srebotnik.']]\n",
+ "[[\"don't\", 'even', 'think', 'I', 'can', 'describe'], 'in', ['words', 'how', 'disappointed', 'I', 'was.\"', 'Asked']]\n",
+ "[['and', 'then', 'staggered', 'around', 'the', 'court'], 'in', ['delight.', '\"Definitely', 'the', 'Olympics,', 'definitely', 'hands']]\n",
+ "[['With', 'three', 'straight', 'victories,', 'and', 'four'], 'in', ['five', 'games,', 'things', 'are', 'looking', 'up']]\n",
+ "[['Monday', 'tied', 'with', 'Florida', 'for', 'last'], 'in', ['the', 'league', 'at', '11.4', 'percent', '(5-for-44).']]\n",
+ "[[\"Saturday's\", '1:46', 'five-on-three', 'against', 'the', 'Senators'], 'in', ['which', 'Melrose', 'counted', '\"five', 'quality', 'chances.\"']]\n",
+ "[['has', 'provided', 'flair', 'and', 'a', 'presence'], 'in', ['front', 'of', 'the', 'net.', 'But', 'Melrose']]\n",
+ "[['his', 'one', 'goal', 'and', '21', 'shots'], 'in', ['10', 'games.', '\"I\\'m', 'a', 'shooter,\"', 'St.']]\n",
+ "[['C', 'Chris', 'Gratton', 'entered', 'Monday', 'third'], 'in', ['the', 'league', 'with', 'a', '63.6', 'winning']]\n",
+ "[['taken', 'a', 'hit', 'on', 'the', 'field'], 'in', ['more', 'than', '13', 'months.', 'The', 'return']]\n",
+ "[['trip', 'because', 'of', 'a', 'pinched', 'nerve'], 'in', ['his', 'back.', 'Fullback', 'B.J.', 'Askew', 'has']]\n",
+ "[['week.', '\"Obviously', 'our', 'running', 'back', 'situation'], 'in', ['particular', 'is', 'very', 'concerning', 'to', 'us.']]\n",
+ "[['will', 'get', 'a', 'chance', 'to', 'work'], 'in', ['this', 'week', 'a', 'little', 'bit', 'more,']]\n",
+ "[['and', 'at', 'fullback.', 'He', 'has', 'filled'], 'in', ['for', 'Askew', 'and', 'Byron', 'Storer,', 'who']]\n",
+ "[['\"I', 'think', 'he', 'got', 'hurt', 'early'], 'in', ['the', 'game,\"', 'Gruden', 'said', 'of', 'Graham.']]\n",
+ "[['Courageously,', 'he', 'came', 'out', 'and', 'played'], 'in', ['the', 'second', 'half.', \"It's\", 'a', 'tough']]\n",
+ "[['year,', 'midseason,', 'for', 'a', 'running', 'back'], 'in', ['the', 'NFL.', 'These', 'guys', 'are', 'all']]\n",
+ "[['bit', 'of', 'a', 'throw-it', 'mentality', 'late'], 'in', ['the', 'game.\"', 'Graham', 'rushed', '19', 'times']]\n",
+ "[['Graham', 'was', 'undergoing', 'tests,', 'Smith', 'pitched'], 'in', ['with', 'three', 'carries', 'for', '17', 'yards']]\n",
+ "[['\"He', 'really', 'helped', 'us', 'not', 'only'], 'in', ['the', 'kicking', 'game', 'but', 'from', 'scrimmage,\"']]\n",
+ "[['scrimmage,\"', 'Gruden', 'said.', '\"Earnest', 'went', 'out'], 'in', ['the', 'first', 'half', 'and', 'missed', 'a']]\n",
+ "[['back', 'and', 'gritted', 'it', 'out.', 'But'], 'in', ['those', 'final', 'couple', 'drives,', 'you', 'saw']]\n",
+ "[['guys,', 'but', 'we', 'will', 'have', 'him'], 'in', ['pads', '(today)', 'and', 'Wednesday,\"', 'Gruden', 'said.']]\n",
+ "[['said.', '\"He', 'has', 'a', 'great', 'look'], 'in', ['his', 'eye.', 'He', 'is', 'very', 'confident,']]\n",
+ "[['He', 'is', 'very', 'confident,', 'I', 'think,'], 'in', ['his', 'knee', 'and', 'what', 'he', 'has']]\n",
+ "[['long', 'been', 'established', 'that', 'acquiring', 'him'], 'in', ['the', 'offseason', 'was', 'among', 'the', 'slickest']]\n",
+ "[['slickest', 'moves', 'the', 'Bucs', 'have', 'made'], 'in', ['some', 'time.', 'But', 'with', 'each', 'passing']]\n",
+ "[['And', 'to', 'think,', 'Bryant', 'is', 'still'], 'in', ['his', 'first', 'season', 'with', 'the', 'Bucs']]\n",
+ "[['his', '1,009-yard', 'season', 'for', 'the', 'Browns'], 'in', ['2005.', 'Going', 'into', \"Monday's\", 'Redskins-Steelers', 'game,']]\n",
+ "[['game,', 'Bryant', 'was', 'tied', 'for', 'ninth'], 'in', ['the', 'NFL', 'in', 'receptions', '(45)', 'and']]\n",
+ "[['tied', 'for', 'ninth', 'in', 'the', 'NFL'], 'in', ['receptions', '(45)', 'and', '13th', 'in', 'yards']]\n",
+ "[['NFL', 'in', 'receptions', '(45)', 'and', '13th'], 'in', ['yards', '(566).', \"What's\", 'more', 'important', 'are']]\n",
+ "[['on', 'Sept.', '21,', 'his', '38-yard', 'catch'], 'in', ['overtime', 'positioned', 'the', 'Bucs', 'for', 'the']]\n",
+ "[['thank', '(owners)', 'the', 'Glazers', 'for', 'hanging'], 'in', ['there', 'with', 'me.', \"There's\", 'been', 'a']]\n",
+ "[['is', 'halfway', 'through', 'his', 'seventh', 'season'], 'in', ['Tampa', 'Bay,', 'a', 'bit', 'longer', 'than']]\n",
+ "[['small-business', 'owners', 'has', 'become', 'a', 'theme'], 'in', ['the', 'presidential', 'election.', 'But', 'if', 'small-business']]\n",
+ "[['presidential', 'election.', 'But', 'if', 'small-business', 'owners'], 'in', ['the', 'United', 'States', 'think', 'they', 'have']]\n",
+ "[['Banwell.', 'Banwell', 'owns', 'a', 'cleaning', 'business'], 'in', ['Weymouth,', 'a', 'seaside', 'town', 'in', 'southern']]\n",
+ "[['business', 'in', 'Weymouth,', 'a', 'seaside', 'town'], 'in', ['southern', 'England.', 'He', 'recently', 'contacted', 'his']]\n",
+ "[['his', 'business', 'alive', 'as', 'credit', 'tightens'], 'in', ['the', 'middle', 'of', 'an', 'economic', 'downturn.']]\n",
+ "[['of', 'shopkeepers,\"', 'has', 'a', 'special', 'place'], 'in', ['its', 'heart', 'for', 'small', 'business.', 'And']]\n",
+ "[['the', 'country', 'enters', 'its', 'first', 'recession'], 'in', ['17', 'years.', 'Backed', 'by', 'a', 'strong']]\n",
+ "[['Shaw,', 'chief', 'economist', 'at', 'Investec', 'Securities'], 'in', ['London.', 'But', 'others', 'said', 'smaller', 'firms']]\n",
+ "[['head', 'of', 'debt', 'advisory', 'at', 'KPMG'], 'in', ['London,', 'said.', 'But', '\"the', 'reality', 'for']]\n",
+ "[['liquidity', 'to', 'return', 'to', 'debt', 'markets'], 'in', ['the', 'period', 'through', 'to', 'Christmas.\"', 'That']]\n",
+ "[['who', 'runs', 'a', 'small', 'jewelry', 'store'], 'in', ['London', 'founded', 'by', 'his', 'family', 'in']]\n",
+ "[['in', 'London', 'founded', 'by', 'his', 'family'], 'in', ['1798.', 'He', 'is', 'upset', 'that', 'the']]\n",
+ "[['of', 'small-business', 'studies', 'at', 'Kingston', 'University'], 'in', ['London.', '\"There', 'are', 'a', 'lot', 'of']]\n",
+ "[['\"There', 'are', 'a', 'lot', 'of', 'votes'], 'in', ['small', 'businesses', 'and', 'there', 'is', 'a']]\n",
+ "[['its', 'own', 'bills', 'to', 'smaller', 'businesses'], 'in', ['no', 'more', 'than', '10', 'days', 'but']]\n",
+ "[['authorities,', 'and', 'be', 'given', 'a', 'cut'], 'in', ['some', 'tax', 'rates,', 'to', 'help', 'them']]\n",
+ "[['cope', 'with', '\"the', 'economic', 'downturn', 'made'], 'in', ['Britain', 'and', 'designed', 'by', 'Gordon', 'Brown.\"']]\n",
+ "[['pay', 'late.', 'At', 'his', 'cleaning', 'shop'], 'in', ['the', 'south', 'of', 'England,', 'Banwell', 'seemed']]\n",
+ "[['The', 'Mets', 'are', 'seeking', 'bullpen', 'help'], 'in', ['every', 'shape', 'and', 'form', 'possible.', 'The']]\n",
+ "[['of', 'general', 'managers', 'got', 'under', 'way'], 'in', ['the', 'posh', 'setting', 'of', 'the', 'St.']]\n",
+ "[['In', 'a', 'short', 'interview', 'with', 'reporters'], 'in', ['the', 'hotel', 'lobby,', 'the', 'agent', 'for']]\n",
+ "[['indeed', 'one', 'of', 'the', 'teams', 'interested'], 'in', ['signing', 'the', '33-year-old', 'Fuentes.', 'The', 'agent,']]\n",
+ "[['Hills', 'Sports', 'Council', 'had', 'already', 'been'], 'in', ['contact', 'with', 'Mets', 'General', 'Manager', 'Omar']]\n",
+ "[['both', 'sides', 'were', 'expected', 'to', 'meet'], 'in', ['person', 'later', 'on', 'Monday.', '\"I', 'think']]\n",
+ "[['\"I', 'think', 'he', 'would', 'be', 'great'], 'in', ['New', 'York,', 'he', 'really', 'thrives', 'under']]\n",
+ "[['this', 'past', 'season,', 'with', '30', 'saves'], 'in', ['34', 'chances.', 'Minaya', 'left', 'little', 'doubt']]\n",
+ "[['the', 'case,', 'just', 'about', 'every', 'team'], 'in', ['baseball', 'is', 'in', 'need', 'of', 'bullpen']]\n",
+ "[['about', 'every', 'team', 'in', 'baseball', 'is'], 'in', ['need', 'of', 'bullpen', 'help.', 'Thurman', 'said']]\n",
+ "[[\"K-Rod's\", 'numbers,', 'they', 'are', 'very', 'similar'], 'in', ['some', 'areas', 'and', 'better', 'in', 'others,\"']]\n",
+ "[['similar', 'in', 'some', 'areas', 'and', 'better'], 'in', ['others,\"', 'Thurman', 'said', 'of', 'Fuentes', 'while']]\n",
+ "[['with', 'a', 'small', 'group', 'of', 'reporters'], 'in', ['his', 'hotel', 'suite.', 'In', 'a', 'scene']]\n",
+ "[['a', 'scene', 'unlikely', 'to', 'be', 'duplicated'], 'in', ['the', 'new', 'Yankee', 'Stadium,', 'Cashman', 'took']]\n",
+ "[['Wang', 'and', 'Joba', 'Chamberlain', 'to', 'be'], 'in', ['the', \"team's\", 'rotation', 'next', 'season.', 'Wang']]\n",
+ "[['did', 'not', 'pitch', 'all', 'that', 'many'], 'in', ['2008.', 'There', 'is', 'still', 'a', 'chance']]\n",
+ "[['pitch', 'at', 'least', 'one', 'more', 'year'], 'in', ['the', 'Bronx.', 'Andy', 'Pettitte,', 'a', 'free']]\n",
+ "[['free', 'agent', 'like', 'Mussina,', 'appears', 'interested'], 'in', ['returning.', 'But', 'even', 'if', 'Pettitte', 'and']]\n",
+ "[['head', 'elsewhere,', 'possibly', 'for', 'a', 'contract'], 'in', ['the', '$150', 'million', 'range.', 'The', 'Brewers']]\n",
+ "[['New', 'York', 'City', 'Marathon,', 'the', 'roadway'], 'in', ['Central', 'Park', 'was', 'still', 'a', 'special']]\n",
+ "[['Moving', 'gingerly', 'but', 'proudly,', 'runners', 'dressed'], 'in', ['comfortable', 'clothing', 'returned', 'to', 'the', 'park']]\n",
+ "[['Monday', 'to', 'have', 'their', 'pictures', 'taken'], 'in', ['front', 'of', 'the', 'finish', 'line', 'they']]\n",
+ "[['that', 'there', 'had', 'been', 'a', 'death'], 'in', ['the', 'Road', \"Runners'\", 'family,', 'too.', '\"I']]\n",
+ "[['doctor', 'last', 'night,\"', 'Wittenberg', 'said', 'later'], 'in', ['a', 'private', 'interview.', '\"She', 'said', 'that']]\n",
+ "[['gift', 'card', 'with', 'an', 'unknown', 'quantity'], 'in', ['it.', 'Wittenberg,', 'who', 'won', 'the', 'Marine']]\n",
+ "[['who', 'won', 'the', 'Marine', 'Corps', 'Marathon'], 'in', ['1987', 'and', 'a', 'year', 'later', 'ran']]\n",
+ "[['1987', 'and', 'a', 'year', 'later', 'ran'], 'in', ['the', 'U.S.', 'Olympic', 'marathon', 'trials,', 'said']]\n",
+ "[['it', 'can', 'grow.', 'When', 'it', 'began'], 'in', ['1970,', 'it', 'was', 'a', 'quaint', 'little']]\n",
+ "[['but', 'since', '1976', 'it', 'has', 'taken'], 'in', ['the', 'five', 'boroughs.', 'To', 'a', 'nonrunner,']]\n",
+ "[['quarter-century', '--', 'out', 'to', 'Staten', 'Island'], 'in', ['the', 'darkness,', 'a', 'tour', 'of', 'the']]\n",
+ "[['tour', 'of', 'the', 'boroughs,', 'a', 'finish'], 'in', ['Central', 'Park.', 'The', 'biggest', 'difference,', 'Wittenberg']]\n",
+ "[['charity', 'this', 'year,', 'with', 'more', 'expected'], 'in', ['the', 'next', 'few', 'weeks.', 'In', 'the']]\n",
+ "[['The', 'mass', 'of', 'runners', 'went', 'off'], 'in', ['three', 'waves', 'this', 'year', 'for', 'the']]\n",
+ "[['players', 'running', 'into', 'a', 'tile', 'pillar'], 'in', ['some', 'old', 'church', 'basement', 'gym.', 'In']]\n",
+ "[['there', 'will', 'be', 'new', 'baseball', 'stadiums'], 'in', ['the', 'Bronx', 'and', 'Queens', '--', 'maybe']]\n",
+ "[['its', 'course', 'every', 'year,', 'putting', 'stages'], 'in', ['municipalities', 'willing', 'to', 'pay', 'for', 'the']]\n",
+ "[['or', 'produce', 'the', 'same', 'enthusiasm', 'twice'], 'in', ['a', 'year,', 'and', 'the', 'weather', 'could']]\n",
+ "[['not', 'step', 'on', 'one', \"another's\", 'toes'], 'in', ['the', 'chutes.', 'The', 'race', 'should', 'always']]\n",
+ "[['chutes.', 'The', 'race', 'should', 'always', 'end'], 'in', ['the', 'park,', 'near', 'the', 'statue', 'of']]\n",
+ "[['before', 'they', 'put', 'the', 'bleachers', 'back'], 'in', ['the', 'park.', 'John', 'W.', 'Ripley,', 'a']]\n",
+ "[['died', 'Oct.', '28', 'at', 'his', 'home'], 'in', ['Annapolis,', 'Md.', 'He', 'was', '69.', 'The']]\n",
+ "[['total', 'of', '500', 'pounds', 'of', 'TNT'], 'in', ['a', 'diagonal', 'line', 'from', 'one', 'side']]\n",
+ "[['the', 'boxes.', 'When', 'the', 'boxes', 'were'], 'in', ['place', 'on', 'the', 'bridge,', 'Ripley', 'attached']]\n",
+ "[['moorings', 'so', 'it', \"couldn't\", 'fall', 'back'], 'in', ['place,', 'but', 'collapsed', 'into', 'the', 'river.\"']]\n",
+ "[['bridge.', '\"South', 'Vietnam', 'would', 'have', 'been'], 'in', ['big', 'trouble,\"', 'said', 'Fred', 'Schultz,', 'senior']]\n",
+ "[['the', 'bridge.', 'He', 'served', 'two', 'tours'], 'in', ['Vietnam', 'and', 'remained', 'on', 'active', 'duty']]\n",
+ "[['June', '29,', '1939,', 'and', 'grew', 'up'], 'in', ['Radford,', 'Va.,', 'the', 'son', 'of', 'Bud']]\n",
+ "[['and', 'Verna', 'Holt', 'Ripley.', 'He', 'enlisted'], 'in', ['the', 'Marines', 'out', 'of', 'high', 'school']]\n",
+ "[['the', 'Marines', 'out', 'of', 'high', 'school'], 'in', ['1956,', 'and', 'a', 'year', 'later', 'received']]\n",
+ "[['Naval', 'Academy,', 'from', 'which', 'he', 'graduated'], 'in', ['1962.', 'Besides', 'his', 'son', 'Stephen,', 'Ripley']]\n",
+ "[['grandchildren.', '\"Colonel', 'Ripley', 'is', 'well', 'known'], 'in', ['Marine', 'circles,\"', 'Schultz', 'said,', '\"but', \"he's\"]]\n",
+ "[['is', 'hard', 'to', 'think', 'of', 'Orton'], 'in', ['the', 'same', 'desperate', 'way', 'that', 'Dallas']]\n",
+ "[['And', 'he', 'had', 'been', 'especially', 'hot'], 'in', ['recent', 'weeks.', 'Grossman', 'rallied', 'the', 'Bears']]\n",
+ "[['a', 'three-week', 'journey', 'that', 'includes', 'stops'], 'in', ['Green', 'Bay', 'and', 'Minnesota.', 'The', 'Bears']]\n",
+ "[['Bay', 'and', 'Minnesota.', 'The', 'Bears', 'are'], 'in', ['first', 'place', 'in', 'the', 'mediocre', 'NFC']]\n",
+ "[['The', 'Bears', 'are', 'in', 'first', 'place'], 'in', ['the', 'mediocre', 'NFC', 'North.', 'Grossman', 'will']]\n",
+ "[['641', 'yards.', 'He', 'had', '101', 'yards'], 'in', ['the', 'second', 'half', 'Sunday,', 'when', 'the']]\n",
+ "[['was', 'coming.', '\"We', \"didn't\", 'do', 'enough'], 'in', ['the', 'passing', 'game,\"', 'Crennel', 'said.', 'That']]\n",
+ "[['playoff', 'push.', 'But', 'he', 'faded', 'late'], 'in', ['the', 'season.', \"Cleveland's\", 'defense', 'is', 'largely']]\n",
+ "[['if', 'they', 'have', 'the', 'right', 'quarterback'], 'in', ['waiting.', 'DYSFUNCTION', 'JUNCTION', 'A', 'scene', 'in']]\n",
+ "[['in', 'waiting.', 'DYSFUNCTION', 'JUNCTION', 'A', 'scene'], 'in', ['the', \"Cowboys'\", 'locker', 'room', 'just', 'about']]\n",
+ "[['passes', 'of', 'more', 'than', '20', 'yards'], 'in', ['the', 'past', 'two', 'games.', 'The', \"team's\"]]\n",
+ "[['who', 'spent', 'more', 'than', '$80', 'million'], 'in', ['bonuses', 'this', 'year,', 'thought', 'they', 'could']]\n",
+ "[['was', 'the', \"offense's\", 'boy', 'wonder', 'back'], 'in', ['the', 'good', 'old', 'days', 'of', 'September?']]\n",
+ "[['team', 'with', 'possibly', 'the', 'best', 'roster'], 'in', ['the', 'game.', 'But', 'no', 'team', 'has']]\n",
+ "[['and', 'maybe', 'cornerback', 'Terence', 'Newman', 'back'], 'in', ['two', 'weeks.', 'That', 'will', 'certainly', 'help,']]\n",
+ "[['sideline', 'waiting.', 'I', 'feel', 'like', \"I'm\"], 'in', ['high', 'school.\"', 'Sounds', 'as', 'if', \"he's\"]]\n",
+ "[['her', 'twin', \"sons'\", 'way', 'so', 'early'], 'in', ['their', 'careers,', 'so', 'early', 'in', 'the']]\n",
+ "[['early', 'in', 'their', 'careers,', 'so', 'early'], 'in', ['the', 'season.', 'There', 'will', 'be', 'tugging']]\n",
+ "[['at', 'San', 'Joaquin', 'Memorial', 'High', 'School'], 'in', ['Fresno,', 'Calif.,', 'and', 'later', 'at', 'Stanford']]\n",
+ "[['each', 'other.', '\"They', 'started', 'that', 'rivalry'], 'in', ['the', 'driveway,\"', 'Ledford', 'said.', '\"But', 'a']]\n",
+ "[['rivalry', 'is', 'one', 'thing.', 'Opposite', 'teams'], 'in', ['the', 'NBA', 'is', 'another.\"', 'They', 'prepared']]\n",
+ "[['the', 'way', 'they', 'had', 'for', 'everything'], 'in', ['their', 'lives:', 'scrimmaging', 'against', 'each', 'other,']]\n",
+ "[['against', 'each', 'other,', 'before', 'the', 'draft'], 'in', ['their', 'native', 'Fresno.', 'Early', 'one-on-one', 'duels']]\n",
+ "[['duels', 'produced', 'a', 'sibling', 'rivalry,', 'which'], 'in', ['turn', 'produced', 'sibling', 'bickering', 'from', 'the']]\n",
+ "[['other', '2', 'percent', 'is', 'when', \"they're\"], 'in', ['the', 'driveway', 'and', 'one', 'blocks', 'the']]\n",
+ "[['collegiate', 'eligibility.', 'They', 'were', 'each', 'taken'], 'in', ['the', 'first', 'round,', 'and', 'their', 'straight-lined']]\n",
+ "[['fifth', 'set', 'of', 'twins', 'to', 'play'], 'in', ['the', 'NBA,', 'a', 'rare', 'occurrence', 'throughout']]\n",
+ "[['throughout', 'the', 'league,', 'but', 'not', 'necessarily'], 'in', ['East', 'Rutherford,', 'N.J.', 'Jason', 'Collins,', 'who']]\n",
+ "[['Brook', 'said', 'he', 'was', 'caught', 'up'], 'in', ['a', 'whirlwind', 'of', 'adjustment', 'and', 'had']]\n",
+ "[['an', 'assistant', 'at', 'Belmont', 'Abbey', 'College'], 'in', ['North', 'Carolina.', '\"Twenty-one', 'or', '22', 'years']]\n",
+ "[['University', 'of', 'Washington,', 'is', 'with', 'Robin'], 'in', ['Phoenix.', 'Christopher', 'accompanied', 'Brook', 'to', 'New']]\n",
+ "[['anything', 'but', 'basketball.', 'A', 'city', 'dripping'], 'in', ['culture', 'and', 'arts', 'is', 'only', 'a']]\n",
+ "[['yet', 'to', 'explore', 'New', 'York', 'City'], 'in', ['depth.', 'A', 'planned', 'trip', 'to', 'see']]\n",
+ "[['youthful', 'Nets', 'team,', 'garnering', 'meaningful', 'minutes'], 'in', ['the', 'first', 'few', 'games.', 'Robin', 'starts']]\n",
+ "[['Terence', 'D.', 'Tolbert,', 'the', 'state', 'director'], 'in', ['Nevada', 'for', 'Sen.', 'Barack', \"Obama's\", 'presidential']]\n",
+ "[['Joel', 'I.', 'Klein,', 'died', 'on', 'Sunday'], 'in', ['North', 'Las', 'Vegas.', 'He', 'was', '44.']]\n",
+ "[['attack,', 'Mayor', 'Michael', 'R.', 'Bloomberg', 'said'], 'in', ['a', 'statement.', 'A', 'friend,', 'Basil', 'A.']]\n",
+ "[['night', 'near', 'the', 'Obama', 'campaign', 'offices'], 'in', ['North', 'Las', 'Vegas.', 'Since', '2006,', 'Tolbert']]\n",
+ "[['York', 'City', 'Education', \"Department's\", 'chief', 'lobbyist'], 'in', ['Albany', 'and', 'Washington.', 'He', 'had', 'been']]\n",
+ "[['poised', 'to', 'take', 'a', 'leading', 'role'], 'in', [\"Bloomberg's\", 'coming', 'fight', 'to', 'persuade', 'New']]\n",
+ "[['for', 'John', \"Edwards'\", 'presidential', 'campaign,', 'and'], 'in', ['2004,', 'he', 'was', 'the', 'Nevada', 'state']]\n",
+ "[['also', 'worked', 'on', \"Bloomberg's\", 're-election', 'effort'], 'in', ['2005,', 'serving', 'as', 'a', 'liaison', 'to']]\n",
+ "[['Hunter', 'College,', 'was', 'born', 'and', 'raised'], 'in', ['Harlem,', 'where', 'he', 'lived', 'with', 'his']]\n",
+ "[['repeat.', 'Brown', 'looked', 'like', 'a', 'bride'], 'in', ['a', 'receiving', 'line', 'Monday', 'morning', 'when']]\n",
+ "[['seems', 'content,', 'energized', 'and', 'happy', 'to,'], 'in', ['Brown', 'parlance,', '\"smell', 'the', 'gym\"', 'again,']]\n",
+ "[['the', 'gym\"', 'again,', 'after', 'two', 'years'], 'in', ['the', 'NBA', 'wilderness.', 'But', 'the', 'turbulent']]\n",
+ "[['a', 'team', 'he', 'split', 'with', 'acrimoniously'], 'in', ['2005,', 'just', '13', 'months', 'after', 'taking']]\n",
+ "[['widely', 'reported.', 'He', 'spent', 'a', 'month'], 'in', ['awkward', 'limbo.', 'Prohibited', 'from', 'speaking', 'to']]\n",
+ "[['Knicks', 'did', 'more', 'than', 'fire', 'Brown'], 'in', ['June', '2006.', 'Dolan', 'publicly', 'lashed', 'Brown']]\n",
+ "[['but', 'eventually', 'paid', 'him', '$18.5', 'million'], 'in', ['a', 'settlement', 'brokered', 'by', 'Commissioner', 'David']]\n",
+ "[['NBA', 'career', 'on', \"Brown's\", 'coaching', 'staff'], 'in', ['Denver,', 'and', 'he', 'later', 'hired', 'Brown']]\n",
+ "[[\"can't\", 'think', 'of', 'a', 'job', 'better'], 'in', ['the', 'league,\"', 'Brown', 'said.', '\"The', 'guy']]\n",
+ "[['league', 'to', 'have', 'a', 'good', 'team'], 'in', ['New', 'York?', 'I', 'wanted', 'to', 'help']]\n",
+ "[['a', 'good', 'job', 'as', 'a', 'coach'], 'in', ['New', 'York,', 'you', 'help', 'our', 'sport.\"']]\n",
+ "[['York,', 'you', 'help', 'our', 'sport.\"', 'Failing'], 'in', ['New', 'York', 'brings', 'its', 'own', 'unique']]\n",
+ "[['a', 'whistle,', 'the', 'longest', 'such', 'break'], 'in', ['a', '36-year', 'Hall', 'of', 'Fame', 'career.']]\n",
+ "[['to', 'have', 'any', 'chance', 'of', 'winning'], 'in', ['Charlotte.', 'The', 'Bobcats', 'have', 'never', 'won']]\n",
+ "[['never', 'won', 'more', 'than', '33', 'games'], 'in', ['their', 'four-year', 'existence.', 'They', 'are', 'among']]\n",
+ "[['They', 'are', 'among', 'the', 'youngest', 'teams'], 'in', ['the', 'league.', 'Two', 'of', 'their', 'most']]\n",
+ "[['they', 'drafted', 'with', 'the', 'ninth', 'pick'], 'in', ['June.', '\"Oh,', \"it's\", 'a', 'huge', 'challenge,\"']]\n",
+ "[['who', 'were', 'also', 'on', 'the', 'bench'], 'in', ['New', 'York.', 'He', 'is', 'working', 'for']]\n",
+ "[['high-profile', 'names', 'to', 'the', 'campaign', 'trail'], 'in', ['a', 'last-minute', 'rally', 'for', 'votes.', 'Roughly']]\n",
+ "[['and', 'to', 'record', 'automated', 'phone', 'calls'], 'in', ['a', 'slew', 'of', 'races', 'in', 'western']]\n",
+ "[['calls', 'in', 'a', 'slew', 'of', 'races'], 'in', ['western', 'New', 'York', 'and', 'Queens,', 'and']]\n",
+ "[['would', 'play', 'a', 'fairly', 'limited', 'role'], 'in', ['the', 'Senate', 'elections,', 'moving', 'aggressively', 'to']]\n",
+ "[['setting', 'a', 'target', 'of', '$2', 'million'], 'in', ['September.', 'He', 'has', 'made', 'a', 'last-minute']]\n",
+ "[['on', 'the', 'campaign', 'trail.', 'Paterson', 'appeared'], 'in', ['Buffalo', 'on', 'Saturday', 'with', 'Sen.', 'William']]\n",
+ "[['is', 'campaigning', 'for', 'an', 'open', 'seat'], 'in', ['the', \"city's\", 'suburbs.', 'On', 'Sunday,', 'Paterson']]\n",
+ "[['strong', 'showing', 'by', 'Sen.', 'Barack', 'Obama'], 'in', ['the', 'presidential', 'contest', 'will', 'contribute', 'to']]\n",
+ "[['who', 'is', 'challenging', 'Sen.', 'Suzi', 'Oppenheimer'], 'in', ['Westchester.', 'While', 'officials', 'of', 'both', 'parties']]\n",
+ "[['City', 'councilman', 'who', 'is', 'challenging', 'Maltese'], 'in', ['what', 'is', 'perhaps', 'the', 'most', 'hotly']]\n",
+ "[['that', 'might', 'side', 'with', 'either', 'party'], 'in', ['a', 'leadership', 'battle', 'between', 'Dean', 'G.']]\n",
+ "[['on', 'legislation', 'to', 'legalize', 'same-sex', 'marriage'], 'in', ['New', 'York,', 'something', 'Smith', 'supports.', '\"I']]\n",
+ "[['Democrats', 'gather', 'for', 'a', 'scheduled', 'meeting'], 'in', ['Albany', 'on', 'Wednesday,', 'he', 'will', 'be']]\n",
+ "[['a', 'more', 'decorous,', 'paternal', 'authority', 'was'], 'in', ['fashion,', 'the', 'sort', 'of', 'authority', 'that']]\n",
+ "[['transcendently', 'decent', 'small-town', 'lawyer', 'Atticus', 'Finch'], 'in', ['\"To', 'Kill', 'a', 'Mockingbird,\"', 'Robert', \"Mulligan's\"]]\n",
+ "[['contains', \"Peck's\", 'more', 'vigorously', 'protective', 'paterfamilias'], 'in', ['J.', 'Lee', \"Thompson's\", '1962', '\"Cape', 'Fear,\"']]\n",
+ "[['new', 'to', 'DVD:', 'Raoul', \"Walsh's\", '\"World'], 'in', ['His', 'Arms\"', '(1952),', 'David', \"Miller's\", '\"Captain']]\n",
+ "[['by', 'Martha', 'Graham.', 'And', 'yet,', 'and'], 'in', ['very', 'different', 'ways,', 'Wayne', 'and', 'Peck']]\n",
+ "[['an', 'active', 'combatant', 'and', 'Peck', '--'], 'in', ['a', 'series', 'of', 'films', 'that', 'included']]\n",
+ "[[\"O'Clock\", 'High\"', '(1949)', 'and', '\"The', 'Man'], 'in', ['the', 'Gray', 'Flannel', 'Suit\"', '(1956)', '--']]\n",
+ "[['the', 'sadly', 'matured', 'returning', 'vet.', 'Even'], 'in', ['films', 'that', \"weren't\", 'related', 'to', 'war,']]\n",
+ "[['former', 'man', 'of', 'action', 'now', 'hemmed'], 'in', ['by', 'family', 'responsibilities', 'and', 'social', 'restraints.']]\n",
+ "[['example', 'is', 'the', 'Southern', 'district', 'attorney'], 'in', ['\"Cape', 'Fear\"', 'who', 'goes', 'to', 'extreme']]\n",
+ "[['with', 'Peck', 'as', 'an', 'Army', 'psychiatrist'], 'in', ['World', 'War', 'II,', 'tending', 'with', 'warmth']]\n",
+ "[['with', 'elements', 'of', 'his', 'amnesia', 'victim'], 'in', ['Alfred', \"Hitchcock's\", '\"Spellbound\"', '(1945).', 'Here', 'he']]\n",
+ "[['who', 'finds,', 'after', 'an', 'electrical', 'blackout'], 'in', ['his', 'Manhattan', 'office', 'tower,', 'that', 'he']]\n",
+ "[['spent', 'the', 'last', 'two', 'years.', 'As'], 'in', ['\"Charade,\"', 'none', 'of', 'the', 'characters', 'are']]\n",
+ "[['the', 'solution', 'to', 'the', 'mystery,', 'revealed'], 'in', ['small', 'increments,', 'calls', 'on', 'cold', 'war']]\n",
+ "[['increments,', 'calls', 'on', 'cold', 'war', 'paranoia'], 'in', ['ways', 'that', 'evoke', '\"The', 'Manchurian', 'Candidate.\"']]\n",
+ "[['of', '\"Arabesque,\"', 'a', 'sardonic', 'thriller', 'directed'], 'in', ['high', 'style', 'by', 'Donen', 'as', 'a']]\n",
+ "[['But', 'this', 'time', 'Peck', 'is', 'miscast'], 'in', ['a', 'role', '--', 'an', 'academic', 'specialist']]\n",
+ "[['a', 'role', '--', 'an', 'academic', 'specialist'], 'in', ['hieroglyphics', 'drawn', 'into', 'Middle', 'Eastern', 'intrigue']]\n",
+ "[['a', 'fully', 'clothed', 'Peck', 'finds', 'himself'], 'in', ['a', 'shower', 'stall', 'with', 'the', \"villain's\"]]\n",
+ "[['eye-popping', 'Technicolor', 'restoration', 'of', '\"The', 'World'], 'in', ['His', 'Arms,\"', 'one', 'of', 'two', 'films']]\n",
+ "[['is', 'Warner', \"Brothers'\", '\"Captain', 'Horatio', 'Hornblower\")'], 'in', ['which', 'Peck', 'collaborated', 'with', 'the', 'great']]\n",
+ "[['who', 'found', 'their', 'most', 'satisfying', 'incarnation'], 'in', ['Errol', 'Flynn.', 'At', 'first', 'Peck', 'hardly']]\n",
+ "[['--', 'but', 'he', 'seems', 'to', 'expand'], 'in', ['stature', 'as', '\"The', 'World', 'in', 'His']]\n",
+ "[['expand', 'in', 'stature', 'as', '\"The', 'World'], 'in', ['His', 'Arms\"', 'progresses.', 'Walsh', 'brings', 'out']]\n",
+ "[['Walsh', 'brings', 'out', 'the', 'natural', 'athlete'], 'in', ['the', '6-foot-3', 'Peck,', 'who', 'had', 'been']]\n",
+ "[['seagoing', 'swashbuckler', 'about', 'a', 'seal-hunting', 'captain'], 'in', ['1850', 'who', 'romances', 'a', 'Russian', 'princess']]\n",
+ "[[\"Walsh's\", 'motto', 'as', 'well:', '\"The', 'World'], 'in', ['His', 'Arms,\"', 'like', 'most', 'of', 'his']]\n",
+ "[['Walsh', 'constantly', 'suggests', 'that', 'the', 'drama'], 'in', ['the', 'foreground', 'is', 'only', 'a', 'fraction']]\n",
+ "[['fraction', 'of', 'a', 'much', 'wider', 'world'], 'in', ['continuous', 'tumult,', 'a', 'world', 'that', 'extends']]\n",
+ "[['is', 'far', 'from', 'terrible:', \"it's\", 'amusing'], 'in', ['spots,\"', 'Manohla', 'Dargis', 'wrote', 'in', 'The']]\n",
+ "[['amusing', 'in', 'spots,\"', 'Manohla', 'Dargis', 'wrote'], 'in', ['The', 'New', 'York', 'Times', 'in', 'June.']]\n",
+ "[['wrote', 'in', 'The', 'New', 'York', 'Times'], 'in', ['June.', 'Available', 'in', 'single-disc', '($28.98),', 'double-disc']]\n",
+ "[['New', 'York', 'Times', 'in', 'June.', 'Available'], 'in', ['single-disc', '($28.98),', 'double-disc', '($34.99)', 'and', 'Blu-ray']]\n",
+ "[['the', 'voice', 'of', 'Jack', 'Black', 'stars'], 'in', ['this', 'computer-animated', 'burlesque', 'of', 'Chinese', 'martial']]\n",
+ "[['Stevenson', 'and', 'Mark', 'Osborne', 'directed.', 'Writing'], 'in', ['The', 'Times', 'in', 'June,', 'Manohla', 'Dargis']]\n",
+ "[['Osborne', 'directed.', 'Writing', 'in', 'The', 'Times'], 'in', ['June,', 'Manohla', 'Dargis', 'said', 'it', 'was']]\n",
+ "[['and', 'visually', 'arresting', 'that', 'it', 'succeeds'], 'in', ['transcending', 'its', 'storybook', 'cliches.\"', '(Dreamworks', 'Animation,']]\n",
+ "[['duplicity;', 'erotic', 'intrigue,\"', 'Stephen', 'Holden', 'wrote'], 'in', ['The', 'Times', 'in', 'July.', '(First', 'Look,']]\n",
+ "[['Stephen', 'Holden', 'wrote', 'in', 'The', 'Times'], 'in', ['July.', '(First', 'Look,', 'standard', 'definition,', '$28.98;']]\n",
+ "[['this', 'perennially', 'popular', 'Christmas', 'comedy,', 'packaged'], 'in', ['a', 'cookie', 'tin.', 'Extras', 'include', 'a']]\n",
+ "[['number', 'of', 'small,', 'unexpectedly', 'funny', 'moments'], 'in', [\"'A\", 'Christmas', \"Story,'\", 'but', 'you', 'have']]\n",
+ "[['to', 'find', 'them,\"', 'Vincent', 'Canby', 'wrote'], 'in', ['The', 'Times', 'in', '1983.', '(Standard', 'definition,']]\n",
+ "[['Vincent', 'Canby', 'wrote', 'in', 'The', 'Times'], 'in', ['1983.', '(Standard', 'definition,', '$39.98;', 'Blu-ray,', '$49.99,']]\n",
+ "[['kind', 'of', 'anarchic', 'candidate', 'for', 'president'], 'in', ['1981,', 'an', 'opponent', 'of', 'anti-immigrant', 'sentiment,']]\n",
+ "[['Cultural', 'gulfs', 'can', 'sometimes', 'reveal', 'themselves'], 'in', ['these', 'small', 'details.', 'France,', 'it', 'turns']]\n",
+ "[['years', 'later,', 'not', 'insignificantly', 'caught', 'up'], 'in', ['the', 'cinema', 'spawned', 'by', 'the', 'Occupation,']]\n",
+ "[[\"it's\", 'their', 'own', 'filmmakers,', 'unlike', 'those'], 'in', ['the', 'United', 'States,', 'who', 'shy', 'away']]\n",
+ "[['violence', 'that', 'exploded', 'three', 'years', 'ago'], 'in', ['some', 'of', \"France's\", 'poor', 'immigrant', 'suburbs.']]\n",
+ "[['suburbs.', 'But', '\"La', 'Haine\"', 'was', 'released'], 'in', ['the', 'mid-1990s.', 'Meanwhile,', 'never', 'mind', 'poor']]\n",
+ "[['\"Body', 'of', 'Lies,\"', 'questioning', 'American', 'policy'], 'in', ['the', 'Middle', 'East', 'or', 'otherwise', 'seizing']]\n",
+ "[['including', 'Jean-Luc', \"Godard's\", '\"Petit', 'Soldat\"', '(made'], 'in', ['1960', 'but', 'not', 'released', 'until', '1963),']]\n",
+ "[['for', 'many', 'years', 'after', 'its', 'release'], 'in', ['1966.', 'The', 'closest', 'thing', 'to', 'a']]\n",
+ "[['les', 'Murs\"', '(\"Within', 'the', 'Walls,\"', 'marketed'], 'in', ['English', 'as', '\"The', 'Class\"),', 'which', 'won']]\n",
+ "[['et', 'le', 'Mulet\"', '(opening', 'next', 'month'], 'in', ['the', 'United', 'States', 'as', '\"The', 'Secret']]\n",
+ "[['is', 'about', 'a', 'community', 'of', 'immigrants'], 'in', ['a', 'seaside', 'town', 'in', 'the', 'south']]\n",
+ "[['of', 'immigrants', 'in', 'a', 'seaside', 'town'], 'in', ['the', 'south', 'of', 'France,', '\"Entre', 'les']]\n",
+ "[['but', \"they're\", 'generally', '\"small', 'films', 'made'], 'in', ['the', 'shadows,\"', 'Frodon', 'said.', 'As', 'Antoine']]\n",
+ "[['since', 'Nouvelle', 'Vague', 'deals', 'with', 'reality'], 'in', ['a', 'certain', 'way.\"', 'He', 'was', 'talking']]\n",
+ "[['The', 'most', 'popular', 'film', 'ever', 'made'], 'in', ['France', 'was', 'released', 'this', 'year,', '\"Bienvenue']]\n",
+ "[['from', 'the', 'South', 'forced', 'to', 'work'], 'in', ['the', 'North.', 'Largely', 'unnoted', 'by', 'the']]\n",
+ "[['But', \"it's\", 'not', 'about', 'the', 'riots'], 'in', ['that', 'neighborhood', 'in', '2005.', 'For', 'that,']]\n",
+ "[['about', 'the', 'riots', 'in', 'that', 'neighborhood'], 'in', ['2005.', 'For', 'that,', 'French', 'people', 'these']]\n",
+ "[['one', 'recent', 'morning,', 'shook', 'his', 'head'], 'in', ['disgust.', '\"The', 'real-life', 'characters', 'in', 'the']]\n",
+ "[['head', 'in', 'disgust.', '\"The', 'real-life', 'characters'], 'in', ['the', 'series', 'were', 'blacks', 'and', 'Arabs,']]\n",
+ "[['Muslims,', 'leaders', 'after', 'the', 'white', 'policeman'], 'in', ['the', 'neighborhood', 'had', 'given', 'up,\"', 'he']]\n",
+ "[['\"and', 'France', \"doesn't\", 'like', 'to', 'look'], 'in', ['the', 'mirror', 'except', 'to', 'see', 'itself']]\n",
+ "[['a', \"film's\", 'budget', 'on', 'average', 'than'], 'in', ['Hollywood.', '\"We', 'prefer', 'to', 'euphemize,', 'to']]\n",
+ "[['prefer', 'to', 'euphemize,', 'to', 'think', 'small'], 'in', ['our', 'movies,\"', 'she', 'said.', 'She', 'returned']]\n",
+ "[['of', 'resistance.', 'The', 'most', 'successful', 'films'], 'in', ['this', 'country', 'reflect', 'our', 'collective', 'projection']]\n",
+ "[['to', 'be.', 'We', 'prefer', 'to', 'live'], 'in', ['a', 'dream.\"', 'The', 'other', 'evening', 'Parisians']]\n",
+ "[['romantic', 'comedy', 'made', 'by', 'an', 'American'], 'in', ['Spain.', 'When', 'the', 'last', 'ticket', 'for']]\n",
+ "[['it', 'was', 'sold,', 'the', 'couple', 'next'], 'in', ['line', 'just', 'shrugged.', 'They', 'went', 'instead']]\n",
+ "[['office.', 'Three', 'of', 'four', 'visiting', 'teams'], 'in', ['the', 'first', 'round', 'of', 'the', 'MLS']]\n",
+ "[['to', 'California', 'after', 'Yura', 'Movsisyan', 'scored'], 'in', ['the', '90th', 'minute', 'on', 'a', 'backheel']]\n",
+ "[['only', 'one', 'playoff', 'series', '(against', 'Dallas'], 'in', ['2000)', 'in', 'its', '13-year', 'history.', 'Columbus,']]\n",
+ "[['playoff', 'series', '(against', 'Dallas', 'in', '2000)'], 'in', ['its', '13-year', 'history.', 'Columbus,', 'the', 'team']]\n",
+ "[['Steven', 'Lenhart', 'scored', 'off', 'a', 'scramble'], 'in', ['added', 'time.', 'Attracting', 'fans', 'on', 'relative']]\n",
+ "[['difficult', 'for', 'MLS', 'clubs', 'so', 'far'], 'in', ['the', 'first', 'round.', 'After', 'MLS', 'games']]\n",
+ "[['After', 'MLS', 'games', 'averaged', '16,460', 'overall'], 'in', ['2008,', 'the', 'four', 'opening', 'games', 'drew:']]\n",
+ "[['at', 'San', 'Mames,', 'Athletic', \"Bilbao's\", 'stadium'], 'in', ['the', 'Basque', 'region', 'of', 'Spain.', 'Altidore,']]\n",
+ "[['on', 'Thursday,', 'stepped', 'on', 'the', 'field'], 'in', ['the', '90th', 'minute', 'and', 'made', 'an']]\n",
+ "[['Cazorla', 'to', 'score', 'his', 'first', 'goal'], 'in', ['a', 'Liga', 'match.', 'Altidore,', 'however,', 'is']]\n",
+ "[['night.', 'But', 'he', 'could', 'play', 'more'], 'in', ['league', 'action', 'because', 'of', 'recent', 'injuries']]\n",
+ "[['against', 'Everton', 'and', 'goalkeeper', 'Tim', 'Howard'], 'in', ['the', '88th', 'minute.', 'Dempsey', 'has', 'played']]\n",
+ "[['Borussia', 'Moenchenglabach', 'recorded', 'their', 'eighth', 'loss'], 'in', ['the', 'past', '11', 'games.', 'The', 'club']]\n",
+ "[['past', '11', 'games.', 'The', 'club', 'is'], 'in', ['17th', 'place', 'in', 'the', '18-team', 'Bundesliga.']]\n",
+ "[['The', 'club', 'is', 'in', '17th', 'place'], 'in', ['the', '18-team', 'Bundesliga.', '...', 'Neven', 'Subotic,']]\n",
+ "[['who', 'has', 'represented', 'the', 'United', 'States'], 'in', ['several', 'international', 'youth', 'tournaments,', 'had', 'an']]\n",
+ "[['County', 'and', 'Nottingham', 'Forest', 'that', 'ended'], 'in', ['a', '1-1', 'tie', '(on', 'a', 'goal']]\n",
+ "[['defender', 'who', 'had', 'handled', 'the', 'ball'], 'in', ['the', 'penalty', 'area.', 'Derby', 'was', 'awarded']]\n",
+ "[['the', 'goal', 'after', 'seeing', 'a', 'push'], 'in', ['the', 'area.', 'NOTES', '--', 'The', 'U.S.']]\n",
+ "[['goals', 'Sunday', 'to', 'defeat', 'Paraguay,', '3-1,'], 'in', ['Hamilton,', 'New', 'Zealand.', 'A', 'victory', 'or']]\n",
+ "[['victory', 'or', 'a', 'draw', 'against', 'France'], 'in', ['Auckland', 'on', 'Wednesday', 'will', 'send', 'the']]\n",
+ "[['coverage', 'of', 'the', 'Australian', 'A-League', 'and,'], 'in', ['a', 'deal', 'with', 'Setanta,', 'coverage', 'of']]\n",
+ "[['Supreme', 'Court', 'hears', 'arguments', 'on', 'Tuesday'], 'in', ['an', 'important', 'free-speech', 'case.', 'In', '2004,']]\n",
+ "[['--', 'sometimes', 'a', 'single', 'word,', 'uttered'], 'in', ['a', 'live', 'broadcast.', 'The', 'new', 'policy,']]\n",
+ "[['that', 'a', 'Golden', 'Globes', 'award', 'show,'], 'in', ['which', 'the', 'singer', 'Bono', 'uttered', 'one']]\n",
+ "[['fined', 'a', 'small', 'public', 'television', 'station'], 'in', ['California', 'for', 'airing', 'Martin', \"Scorsese's\", 'documentary']]\n",
+ "[['Just', 'as', 'troubling,', 'broadcasters', 'are', 'engaging'], 'in', ['self-censorship', '--', 'refraining', 'from', 'airing', 'speech']]\n",
+ "[['Bush', 'still', 'has', '77', 'days', 'left'], 'in', ['the', 'White', 'House', '--', 'and', \"he's\"]]\n",
+ "[['on', 'a', 'last-minute', 'policy', 'stamp,', 'but'], 'in', [\"Bush's\", 'case', 'it', 'is', 'more', 'like']]\n",
+ "[['the', 'administration', 'has', 'violated', \"Americans'\", 'rights'], 'in', ['the', 'name', 'of', 'fighting', 'terrorism.', 'Last']]\n",
+ "[['informants', 'to', 'infiltrate', 'lawful', 'groups,', 'engage'], 'in', ['prolonged', 'physical', 'surveillance', 'and', 'lie', 'about']]\n",
+ "[['that', 'it', 'will', 'ignore', 'a', 'provision'], 'in', ['the', 'legislation', 'that', 'established', 'the', 'Department']]\n",
+ "[['environmental', 'law', 'and', 'keep', 'their', 'friends'], 'in', ['industry', 'happy.', 'They', 'have', 'had', 'less']]\n",
+ "[['plants', 'to', 'locate', 'near', 'national', 'parks'], 'in', ['defiance', 'of', 'longstanding', 'congressional', 'mandates', 'to']]\n",
+ "[['congressional', 'mandates', 'to', 'protect', 'air', 'quality'], 'in', ['areas', 'of', 'special', 'natural', 'or', 'recreational']]\n",
+ "[['companies', 'to', 'dump', 'toxic', 'mine', 'wastes'], 'in', ['valleys', 'and', 'streams.', 'And', 'while', 'no']]\n",
+ "[['to', 'oil-and-gas', 'exploration.', 'We', 'fear', 'that'], 'in', ['coming', 'weeks,', 'Kempthorne', 'will', 'open', 'up']]\n",
+ "[['that', 'even', 'the', 'oil', 'companies', 'seem'], 'in', ['no', 'hurry', 'to', 'begin.', 'He', 'should']]\n",
+ "[['and', 'nurses', 'to', 'refuse', 'to', 'participate'], 'in', ['an', 'abortion.', 'These', 'changes', 'would', 'extend']]\n",
+ "[['administration', 'has', 'taken', 'other', 'disturbing', 'steps'], 'in', ['recent', 'weeks.', 'In', 'late', 'September,', 'the']]\n",
+ "[['not', 'to', 'shut', 'down', 'the', 'prison'], 'in', ['Guantanamo', 'Bay,', 'Cuba', '--', 'the', 'most']]\n",
+ "[['suppose', 'there', 'is', 'some', 'good', 'news'], 'in', ['all', 'of', 'this.', 'While', 'Bush', 'leaves']]\n",
+ "[['dismiss', 'a', 'top', 'minister', 'on', 'Tuesday,'], 'in', ['a', 'setback', 'for', 'President', 'Mahmoud', 'Ahmadinejad']]\n",
+ "[['30', 'percent', 'and', 'falling', 'oil', 'prices'], 'in', ['a', 'country', 'that', 'has', 'the', 'second']]\n",
+ "[['the', 'second', 'largest', 'known', 'oil', 'reserves'], 'in', ['the', 'world', 'are', 'undermining', 'the', 'budget.']]\n",
+ "[['confirmed', 'the', 'division', 'between', 'conservative', 'forces'], 'in', ['Iranian', 'politics', 'ahead', 'of', 'the', 'presidential']]\n",
+ "[['politics', 'ahead', 'of', 'the', 'presidential', 'vote'], 'in', ['June', 'next', 'year', 'when', 'Ahmadinejad', 'faces']]\n",
+ "[['of', '247', 'present', 'at', 'the', 'vote'], 'in', ['Parliament,', '188', 'members', 'voted', 'to', 'dismiss']]\n",
+ "[['must', 'face', 'a', 'confidence', 'vote,', 'and'], 'in', ['the', 'past', 'three', 'years', 'Ahmadinejad', 'had']]\n",
+ "[['Ahmadinejad', 'nominated', 'him', 'for', 'the', 'post'], 'in', ['August.', 'The', 'previous', 'minister', 'had', 'been']]\n",
+ "[['legislator', 'close', 'to', 'Ahmadinejad,', 'slapped', 'Abbassi'], 'in', ['the', 'face,', 'and', 'the', 'speaker', 'expelled']]\n",
+ "[['he', 'would', 'not', 'bother', 'to', 'appear'], 'in', ['Parliament', 'to', 'defend', 'his', 'minister.', '\"Who']]\n",
+ "[['who', 'is', 'more', 'pragmatic', 'than', 'Ahmadinejad'], 'in', ['his', 'approach', 'and', 'perhaps', 'willing', 'to']]\n",
+ "[['approach', 'and', 'perhaps', 'willing', 'to', 'engage'], 'in', ['diplomacy', 'with', 'the', 'West.', 'The', 'Swiss']]\n",
+ "[['reputation', 'after', 'it', 'was', 'caught', 'up'], 'in', ['the', 'collapse', 'of', 'the', 'mortgage', 'market,']]\n",
+ "[['predicted', 'that', 'the', '\"difficult\"', 'conditions', 'seen'], 'in', ['October', 'would', 'continue', 'to', 'weigh', 'on']]\n",
+ "[[\"world's\", 'most', 'conservative', 'banks', 'was', 'left'], 'in', ['tatters', 'after', 'its', 'bets', 'on', 'the']]\n",
+ "[['bets', 'on', 'the', 'mortgage', 'securities', 'market'], 'in', ['the', 'United', 'States', 'went', 'spectacularly', 'wrong.']]\n",
+ "[['the', 'credit', 'crisis,', 'including', '$4.4', 'billion'], 'in', ['the', 'latest', 'quarter.', 'Losses', 'and', 'write-downs']]\n",
+ "[['of', 'last', 'year.', 'The', 'results', 'were'], 'in', ['line', 'with', 'expectations,', 'as', 'the', 'bank']]\n",
+ "[['give', 'it', 'a', '9', 'percent', 'stake'], 'in', ['the', 'bank.', 'The', 'government', 'also', 'agreed']]\n",
+ "[['of', 'financial', 'strength,', 'of', '10.8', 'percent,'], 'in', ['line', 'with', 'its', 'European', 'peers.', 'UBS']]\n",
+ "[['book', 'a', 'loss', 'on', 'that', 'item'], 'in', ['the', 'fourth', 'quarter.', 'The', 'bank', 'said']]\n",
+ "[['to', 'desert', 'its', 'wealth', 'management', 'business'], 'in', ['the', 'third', 'quarter,', 'with', 'net', 'outflows']]\n",
+ "[['said', 'there', 'had', 'been', 'some', 'improvement'], 'in', ['the', 'businesses', 'since', 'the', 'government', 'bailout']]\n",
+ "[['On', 'Tuesday,', 'they', 'fell', '4.3', 'percent'], 'in', ['early', 'Zurich', 'trading.', 'Chinese', 'and', 'Taiwanese']]\n",
+ "[['the', 'main', 'negotiating', 'body', 'for', 'China'], 'in', ['matters', 'related', 'to', 'Taiwan.', 'Chen', 'is']]\n",
+ "[['civil', 'war', 'and', 'occupied', 'Taiwan', 'while'], 'in', ['retreat.', 'The', 'mainland', 'Chinese', 'government', 'considers']]\n",
+ "[['economic', 'growth', 'has', 'lagged', 'behind', \"China's\"], 'in', ['recent', 'years,', 'spurring', 'the', 'Taiwanese', 'last']]\n",
+ "[['and', 'Taiwan.', \"Ma's\", 'popularity', 'has', 'plummeted'], 'in', ['recent', 'months,', 'partly', 'based', 'on', 'criticism']]\n",
+ "[['cities', 'on', 'the', 'mainland', 'and', 'eight'], 'in', ['Taiwan', 'receiving', 'service.', 'The', 'planes', 'will']]\n",
+ "[['service.', 'The', 'planes', 'will', 'also', 'fly'], 'in', ['a', 'direct', 'line', 'between', 'cities', 'over']]\n",
+ "[['with', 'its', 'biggest', 'food', 'safety', 'crisis'], 'in', ['years.', 'In', 'September,', 'Chinese', 'dairy', 'products']]\n",
+ "[['with', 'melamine,', 'a', 'toxic', 'chemical', 'used'], 'in', ['plastics', 'that', 'has', 'been', 'regularly', 'and']]\n",
+ "[['been', 'recalled', 'around', 'the', 'world,', 'including'], 'in', ['Taiwan.', 'China', 'and', 'Taiwan', 'also', 'agreed']]\n",
+ "[['recent', 'visit', 'to', 'the', 'Confucius', 'temple'], 'in', ['the', 'southern', 'city', 'of', 'Tainan,', 'where']]\n",
+ "[['off,', 'Dolphins', 'receiver', 'Greg', 'Camarillo', 'put'], 'in', ['a', 'few', \"minutes'\", 'work,', 'conducting', 'a']]\n",
+ "[['if', 'this', 'is', 'his', 'best', 'season'], 'in', ['football,', 'to', 'which', 'Camarillo', 'pretended', 'to']]\n",
+ "[['had', 'roughly', '46', 'catches', 'at', 'Stanford'], 'in', ['his', 'career.', '\"So,', 'yes,\"', 'he', 'concluded,']]\n",
+ "[['Sunday', 'that', 'left', 'Miami', '4-4', 'and'], 'in', ['the', 'thick', 'of', 'playoff', 'contention.', 'If']]\n",
+ "[['the', 'perfect', 'player', 'to', 'personify', 'how,'], 'in', ['half', 'a', 'season,', 'the', 'team', 'has']]\n",
+ "[['many', 'expectations', 'it', 'might', 'have', 'had'], 'in', ['preseason.', \"Camarillo's\", 'goal', 'in', 'July?', '\"To']]\n",
+ "[['have', 'had', 'in', 'preseason.', \"Camarillo's\", 'goal'], 'in', ['July?', '\"To', 'make', 'the', 'team,\"', 'he']]\n",
+ "[['that', 'he', 'has', 'revised', 'that', 'goal,'], 'in', ['much', 'the', 'same', 'way', 'the', 'entire']]\n",
+ "[['can', 'kind', 'of', 'see', 'that', 'late'], 'in', ['the', 'game.', '\"Last', 'year', 'we', 'would']]\n",
+ "[[\"don't\", 'really', 'talk', 'about', 'it', 'much'], 'in', ['the', 'locker', 'room.\"\\'', 'They', 'do', 'now.']]\n",
+ "[['coach', 'Cam', 'Cameron,', 'Sparano', 'finds', 'himself'], 'in', ['a', \"critic's\", 'role,', 'pointing', 'out', 'shortcomings.']]\n",
+ "[['produced', 'a', '15-play,', '80-yard', 'touchdown', 'drive'], 'in', ['crunch', 'time,', 'much', 'like', 'Camarillo', 'recorded']]\n",
+ "[['of', 'the', 'most', 'productive', 'receiving', 'days'], 'in', ['Dolphins', 'history.', 'A', 'man', 'who', 'originally']]\n",
+ "[['his', 'job', 'finds', 'himself', 'No.', '11'], 'in', ['the', 'NFL', 'in', 'number', 'of', 'receptions']]\n",
+ "[['himself', 'No.', '11', 'in', 'the', 'NFL'], 'in', ['number', 'of', 'receptions', '-', 'ahead', 'of']]\n",
+ "[['Terrell', 'Owens', '-', 'and', 'No.', '28'], 'in', ['receiving', 'yards', 'with', '483', '-', 'just']]\n",
+ "[['whole.', 'Ted', 'Ginn', 'had', '175', 'yards'], 'in', ['receptions', 'a', 'week', 'ago', 'against', 'Buffalo,']]\n",
+ "[['all', '-', 'but', \"there's\", 'no', 'star'], 'in', ['that', 'group,\"', 'Sparano', 'said.', '\"They', 'all']]\n",
+ "[['of', 'the', 'Dolphins', 'placed', 'on', 'Sparano'], 'in', ['the', 'mayhem', 'of', 'a', 'successful', 'fourth-down']]\n",
+ "[['making', 'up', 'psychobabble?', '--', 'A', 'reader'], 'in', ['New', 'York', 'DEAR', 'READER:', 'Obviously,', 'I']]\n",
+ "[['Defense', 'mechanisms', 'are', 'strategies', 'or', 'manners'], 'in', ['which', 'we', 'behave', 'or', 'think', 'to']]\n",
+ "[['feelings.', 'We', 'all', 'use', 'them', 'periodically'], 'in', ['an', 'attempt', 'to', 'deal', 'with', 'the']]\n",
+ "[['at', 'three', 'of', 'these', 'defense', 'mechanisms'], 'in', ['their', 'more', 'unhealthy', 'forms:', '--?Rationalization', 'is']]\n",
+ "[['explaining', 'an', 'unacceptable', 'behavior', 'or', 'feeling'], 'in', ['a', 'rational', 'or', 'logical', 'manner', 'that']]\n",
+ "[['of', 'bed\";', 'and', '\"I', 'have', 'fallen'], 'in', ['love', 'with', 'another', 'person', 'because', 'I']]\n",
+ "[['of', 'my', 'situation.\"', '--?Intellectualization', 'is', 'used'], 'in', ['an', 'attempt', 'to', 'avoid', 'reality', 'and']]\n",
+ "[['I', 'will', 'discuss', 'other', 'defense', 'mechanisms'], 'in', ['future', 'columns.', 'Hap', 'LeCrone', 'is', 'a']]\n",
+ "[['columns,', 'visit', 'www.haplecrone.com.', 'This', 'article', 'appeared'], 'in', ['the', 'Waco', 'Tribune-Herald.', 'Fifteen', 'people', 'were']]\n",
+ "[['killed', 'and', 'dozens', 'wounded', 'by', 'bombings'], 'in', ['Baghdad', 'on', 'Tuesday,', 'according', 'to', 'the']]\n",
+ "[['hospital', 'officials,', 'part', 'of', 'an', 'uptick'], 'in', ['violence', 'after', 'a', 'relatively', 'quiet', 'few']]\n",
+ "[['In', 'al-Mashtal,', 'a', 'predominantly', 'Shiite', 'neighborhood'], 'in', ['eastern', 'Baghdad,', 'an', 'improvised', 'explosive', 'device']]\n",
+ "[['Baghdad,', 'an', 'improvised', 'explosive', 'device', 'hidden'], 'in', ['a', \"fishmonger's\", 'stall', 'killed', 'seven', 'and']]\n",
+ "[['the', 'poor', 'guy', 'lost', 'his', 'life'], 'in', [\"today's\", 'blast.\"', 'In', 'al-Qahera,', 'in', 'northeastern']]\n",
+ "[['life', 'in', \"today's\", 'blast.\"', 'In', 'al-Qahera,'], 'in', ['northeastern', 'Baghdad,', 'another', 'improvised', 'explosive', 'device']]\n",
+ "[['attached', 'to', 'a', 'pickup', 'truck', 'parked'], 'in', ['front', 'of', 'his', 'shop.', '\"Suddenly', 'the']]\n",
+ "[['two', 'of', 'the', 'people', 'who', 'were'], 'in', ['it', 'were', 'killed', 'immediately,\"', 'Abu', 'Rajaa']]\n",
+ "[['until', 'the', 'ambulances', 'arrived.\"', 'Another', 'bombing'], 'in', ['Baghdad', 'singled', 'out', 'the', 'convoy', 'of']]\n",
+ "[['wounded.', 'Also', 'Tuesday,', 'Iraqi', 'customs', 'police'], 'in', ['Najaf', 'province', 'announced', 'the', 'discovery', 'of']]\n",
+ "[['a', 'spokesman', 'for', 'the', 'customs', 'police'], 'in', [\"Iraq's\", 'central', 'region,', 'said', 'that', 'the']]\n",
+ "[['night,', 'customs', 'police', 'were', 'conducting', 'patrols'], 'in', ['an', 'area', 'called', 'Rahba,', 'near', \"Iraq's\"]]\n",
+ "[['with', 'Saudi', 'Arabia,\"', 'Mr.', 'Jaberi', 'said'], 'in', ['a', 'phone', 'interview.', '\"They', 'saw', 'a']]\n",
+ "[['\"It', 'was', 'unclear', 'whether', 'the', 'men'], 'in', ['the', 'pickup', 'intended', 'to', 'actually', 'enter']]\n",
+ "[['week', 'of', 'three', 'Islamic', 'militants', 'convicted'], 'in', ['the', '2002', 'Bali', 'bombings.', 'On', 'Tuesday,']]\n",
+ "[['major', 'hotels,', 'shopping', 'centers', 'and', 'embassies'], 'in', ['the', 'capital', 'has', 'increased.', 'The', 'police']]\n",
+ "[['point', 'of', 'entry.', 'Outside', 'the', 'prison'], 'in', ['West', 'Java', 'where', 'the', 'three', 'men']]\n",
+ "[['allowed', 'to', 'travel', 'to', 'the', 'prison'], 'in', ['recent', 'days,', 'which', 'is', 'set', 'on']]\n",
+ "[['a', 'British', 'woman,', 'is', 'seeking', 'asylum'], 'in', ['Spain,', 'the', 'government', 'said', 'Tuesday.', 'Omar']]\n",
+ "[['was', 'being', 'held', 'at', 'the', 'airport'], 'in', ['a', 'special', 'center', 'for', 'asylum', 'seekers.']]\n",
+ "[['provisional', 'asylum,', 'bin', 'Laden', 'may', 'remain'], 'in', ['Spain', 'while', 'his', 'case', 'is', 'reviewed.']]\n",
+ "[['Bin', 'Laden,', 'who', 'wears', 'his', 'hair'], 'in', ['long', 'braids', 'and', 'shares', 'his', 'infamous']]\n",
+ "[['arched', 'brows,', 'caused', 'a', 'media', 'storm'], 'in', ['Britain', 'last', 'year', 'when', 'he', 'married']]\n",
+ "[['Laden', 'during', 'a', 'trip', 'to', 'Egypt'], 'in', ['April', 'last', 'year', 'and', 'married', 'him']]\n",
+ "[['April', 'last', 'year', 'and', 'married', 'him'], 'in', ['September,', 'according', 'to', 'news', 'reports', 'at']]\n",
+ "[['a', 'visa', 'by', 'the', 'British', 'Embassy'], 'in', ['Cairo', 'in', 'April', 'because', 'of', 'what']]\n",
+ "[['by', 'the', 'British', 'Embassy', 'in', 'Cairo'], 'in', ['April', 'because', 'of', 'what', 'the', 'authorities']]\n",
+ "[['which', 'would', '\"cause', 'considerable', 'public', 'concern\"'], 'in', ['Britain,', 'according', 'to', 'The', 'Associated', 'Press.']]\n",
+ "[['The', 'Associated', 'Press.', 'He', 'was', 'said'], 'in', ['those', 'reports', 'to', 'have', 'gone', 'into']]\n",
+ "[['gone', 'into', 'exile', 'with', 'his', 'father'], 'in', ['Sudan', 'and', 'Afghanistan,', 'but', 'returned', 'to']]\n",
+ "[['ERA,', 'MANY', 'VIEWERS', 'STILL', 'UNPREPARED', 'Moving'], 'in', ['Washington', 'and', 'financial', 'categories', 'for', 'release']]\n",
+ "[['100', 'days', 'from', 'Sunday,', 'TV', 'viewers'], 'in', ['millions', 'of', 'U.S.', 'households', 'may', 'be']]\n",
+ "[['Committee', 'hearing', 'into', 'the', 'DTV', 'transition'], 'in', ['September,', 'Federal', 'Communications', 'Commission', 'Chairman', 'Kevin']]\n",
+ "[['Kevin', 'Martin', 'said', 'the', 'people', 'most'], 'in', ['need', 'of', 'help', 'are', '\"senior', 'citizens,']]\n",
+ "[['disabilities,', 'low-income', 'consumers,', 'and', 'those', 'living'], 'in', ['rural', 'or', 'tribal', 'areas.\"', 'Committee', 'chairman']]\n",
+ "[['test', 'run', 'they', 'began', 'Sept.', '8'], 'in', ['Wilmington,', 'N.C.', 'Local', 'broadcasters', 'there', 'turned']]\n",
+ "[['could', 'be', 'swamped', 'by', 'a', 'surge'], 'in', ['coupon', 'requests', 'as', 'the', 'conversion', 'approaches.']]\n",
+ "[['the', 'downstairs,', 'she', 'vacuums', 'the', 'upstairs'], 'in', ['their', 'nearly', '4,000-square-foot', 'home.', 'She', 'mows']]\n",
+ "[['around', 'the', 'house', 'after', '26', 'years'], 'in', ['military', 'service.', 'But', \"he's\", 'always', 'been']]\n",
+ "[['been', 'willing', 'to', 'share', 'the', 'load'], 'in', ['their', 'six-year', 'relationship,', 'says', 'Suzanne,', 'who']]\n",
+ "[['enlightened', 'attitude', 'to', 'a', 'hardscrabble', 'upbringing'], 'in', ['which', 'all', 'his', 'siblings', 'were', 'expected']]\n",
+ "[['Britt,', 'who', 'like', 'his', 'wife', 'is'], 'in', ['his', 'mid-40s.', '\"He', 'did', 'the', 'breakfast,']]\n",
+ "[['the', 'lunch.\"', 'And', 'the', 'military', '\"engrains'], 'in', ['you', 'from', 'Day', 'One', 'that', 'you']]\n",
+ "[['domestic', 'duties.', 'To', 'be', 'sure,', 'unions'], 'in', ['which', 'the', 'menfolk', 'lend', 'a', 'hand']]\n",
+ "[['which', 'the', 'menfolk', 'lend', 'a', 'hand'], 'in', ['the', 'kitchen', 'and', 'laundry', 'room', 'have']]\n",
+ "[['around', 'evenly.', '\"I', 'get', '(Blake)', 'up'], 'in', ['the', 'morning,', 'get', 'him', 'dressed', 'and']]\n",
+ "[['She', 'and', 'Eric', 'sat', 'down', 'early'], 'in', ['their', 'marriage', 'and', 'hashed', 'out', 'their']]\n",
+ "[['of', 'surveys', 'that', 'reflect', 'the', 'shifts'], 'in', ['the', 'American', 'landscape.', 'From', '1997', 'to']]\n",
+ "[['1997', 'to', '2003,', 'the', 'gender', 'gap'], 'in', ['hours', 'devoted', 'to', 'housework', 'fell', 'by']]\n",
+ "[['says.', 'The', \"'90s\", 'saw', 'big', 'increases'], 'in', ['the', 'number', 'of', 'hours', 'men', 'spent']]\n",
+ "[['the', 'number', 'of', 'hours', 'men', 'spent'], 'in', ['cooking', 'and', 'child', 'care.', 'In', '1992,']]\n",
+ "[['This', 'was', 'especially', 'true,', 'she', 'says,'], 'in', ['homes', 'where', 'the', 'women', 'worked', 'full']]\n",
+ "[['worked', 'full', 'time,', 'but', 'the', 'increase'], 'in', [\"men's\", 'domestic', 'involvement', 'has', 'spilled', 'over']]\n",
+ "[['Coontz,', 'who', 'largely', 'attributes', 'the', 'rise'], 'in', ['men', 'helping', 'out', 'to', 'the', 'influx']]\n",
+ "[['think', 'through', 'these', 'kinds', 'of', 'issues'], 'in', ['a', 'way', 'no', 'previous', 'generation', 'bothered']]\n",
+ "[['how', 'often', 'they', 'become', 'angry,', 'women'], 'in', ['traditional', 'marriages', 'report', 'a', 'significantly', 'higher']]\n",
+ "[['anger.', '\"But', 'the', 'most', 'unhappy', 'people'], 'in', ['the', 'entire', 'sample', 'were', 'the', 'women']]\n",
+ "[['to', 'come', 'from', 'a', 'generation', 'immersed'], 'in', ['traditional', 'gender', 'roles,', 'but', 'he', 'carries']]\n",
+ "[['butt?\"', 'People', 'like', 'to', 'read', 'numbers'], 'in', ['the', 'newspaper.', 'True', 'sports', 'fans,', 'for']]\n",
+ "[['from', 'Scarborough', 'Research.', 'That', 'puts', 'us'], 'in', ['the', 'top', '10', 'newspapers', 'nationally', 'for']]\n",
+ "[['the', 'varying', 'numbers.', 'Around', 'the', 'country,'], 'in', ['fact,', 'publishers', 'are', 'intentionally', 'trimming', 'that']]\n",
+ "[['is', 'known', 'as', '\"vanity', 'circulation,\"', 'and'], 'in', ['its', 'place', 'is', 'an', 'effort', 'to']]\n",
+ "[['0.25', 'and', '1.11:', 'Percentage', 'of', 'increase'], 'in', ['Times', 'Union', 'circulation', 'over', 'the', 'last']]\n",
+ "[['the', 'fifth', 'straight', 'half-year', 'reporting', 'period'], 'in', ['which', 'this', 'newspaper', 'has', 'reported', 'growing']]\n",
+ "[['matched', 'by', 'only', 'one', 'other', 'newspaper'], 'in', ['the', 'country.', \"Don't\", 'tell', 'me', \"there's\"]]\n",
+ "[['a', 'great', 'future', 'for', 'print', 'journalism'], 'in', ['this', 'market.', '--', '$121', 'billion,', '$56']]\n",
+ "[['run', '$1.5', 'billion', 'short', 'of', 'revenue'], 'in', ['the', 'current', 'fiscal', 'year', 'and', 'face']]\n",
+ "[['face', 'a', 'deficit', 'of', '$12.5', 'billion'], 'in', ['the', 'fiscal', 'year', 'that', 'begins', 'next']]\n",
+ "[['economic', 'meltdown,', 'then,', 'the', '$14', 'billion'], 'in', ['cuts', 'confronting', 'Paterson', 'and', 'legislators', 'needs']]\n",
+ "[['year', 'than', 'we', 'sent', 'to', 'Washington'], 'in', ['taxes.', 'No', 'wonder', 'Paterson', 'says', 'more']]\n",
+ "[['less', 'likely', 'to', 'side', 'with', 'Paterson'], 'in', ['this', 'debate.', '--', 'Roughly', '0:', 'Percentage']]\n",
+ "[['\"We\\'re', 'seeing', 'sarcopenia,', 'which', 'commonly', 'occurs'], 'in', ['the', 'elderly,', 'in', 'younger', 'subjects', 'in']]\n",
+ "[['which', 'commonly', 'occurs', 'in', 'the', 'elderly,'], 'in', ['younger', 'subjects', 'in', 'their', 'early', 'to']]\n",
+ "[['in', 'the', 'elderly,', 'in', 'younger', 'subjects'], 'in', ['their', 'early', 'to', 'mid-50s,\"', 'said', 'Susan']]\n",
+ "[['and', 'assistant', 'professor', 'at', 'Stetson', 'University'], 'in', ['Florida', 'who', 'specializes', 'in', 'protein', 'metabolism.']]\n",
+ "[['Stetson', 'University', 'in', 'Florida', 'who', 'specializes'], 'in', ['protein', 'metabolism.', 'Hewlings', 'and', 'other', 'researchers']]\n",
+ "[['are', 'hungry', 'for', 'amino', 'acids', 'found'], 'in', ['protein', 'foods', 'all', 'day', 'long.', 'In']]\n",
+ "[['University', 'of', 'Arkansas', 'for', 'Medical', 'Sciences'], 'in', ['Little', 'Rock,', 'warns', 'that', '\"When', 'there']]\n",
+ "[['foods', 'every', 'day', 'and', 'including', 'protein'], 'in', ['each', 'meal.', 'And', 'that', 'includes', 'snacks.']]\n",
+ "[['only', 'if', \"you've\", 'got', 'enough', 'protein'], 'in', ['your', 'diet.\"', 'Keep', 'fat', 'intake', 'down']]\n",
+ "[['foods', 'wisely', 'with', 'other', 'health', 'concerns'], 'in', ['mind.', 'For', 'instance,', 'a', '6-ounce', 'broiled']]\n",
+ "[['list', 'of', 'protein', 'foods', 'to', 'include'], 'in', ['a', 'healthy', 'diet,', 'go', 'to', 'www.mypyramid.gov.']]\n",
+ "[['carolyn', 'AT', 'carolynoneil.com.', 'This', 'article', 'appeared'], 'in', ['The', 'Atlanta', 'Journal-Constitution.', 'Remains', 'of', 'a']]\n",
+ "[['June', '30,', '1944.', 'The', 'bomber', 'crashed'], 'in', ['a', 'swampy', 'area', 'in', 'Hungary.', 'The']]\n",
+ "[['bomber', 'crashed', 'in', 'a', 'swampy', 'area'], 'in', ['Hungary.', 'The', '32-year-old', 'Troy,', 'a', 'staff']]\n",
+ "[['returned', 'to', 'Italy', 'after', 'a', 'mission'], 'in', ['Germany.', \"Troy's\", 'body', 'was', 'found', 'near']]\n",
+ "[['and', 'his', 'wife', 'Grace,', 'who', 'died'], 'in', ['1964,', 'did', 'not', 'have', 'any', 'children.']]\n",
+ "[['Troy', 'was', 'one', 'of', 'five', 'children'], 'in', ['his', 'family.', '\"There', 'are', 'families', 'that']]\n",
+ "[['officer', 'for', 'the', \"Pentagon's\", 'POW/MIA', 'offices'], 'in', ['Arlington,', 'Va.', 'Olsen', 'said', 'nearly', '100']]\n",
+ "[['saying', \"'your\", 'family', 'member', 'is', 'missing'], 'in', ['action,\"\\'', 'she', 'said,', '\"but', 'now', 'we']]\n",
+ "[['for', '-', 'but', 'not', 'to', 'walk'], 'in', ['They', 'were', 'incredibly', 'impractical', 'but', 'absolutely']]\n",
+ "[['I', 'stood.', 'I', 'posed.', 'I', 'strutted'], 'in', ['front', 'of', 'a', 'mirror.', 'They', 'were']]\n",
+ "[['were', 'exactly', 'what', 'not', 'to', 'wear'], 'in', ['the', 'inclement', 'Northeast.', 'They', 'were', 'too']]\n",
+ "[['your', 'attention.', 'My', 'grandmother', 'Kay', 'was'], 'in', ['her', '70s', 'and', 'still', \"couldn't\", 'pass']]\n",
+ "[['she', \"couldn't\", 'walk', 'in.', 'She', 'sat'], 'in', ['them', 'though.', 'She', 'put', 'them', 'on']]\n",
+ "[['now.', 'So', 'last', 'week', 'I', 'went'], 'in', ['search', 'of', 'practical', 'shoes,', 'shoes', 'for']]\n",
+ "[['snow,', 'shoes', 'I', \"wouldn't\", 'kick', 'off'], 'in', ['movie', 'theaters', 'and', 'dark', 'restaurants,', 'shoes']]\n",
+ "[['And', 'I', 'found', 'them', 'right', 'away'], 'in', ['assorted', 'colors', 'in', 'a', 'mall', 'specialty']]\n",
+ "[['them', 'right', 'away', 'in', 'assorted', 'colors'], 'in', ['a', 'mall', 'specialty', 'store,', 'dozens', 'of']]\n",
+ "[['They', 'were', 'cushioned.', 'I', 'could', 'walk'], 'in', ['them.', 'But', 'I', 'put', 'them', 'down']]\n",
+ "[['wear', 'them.', 'But', 'I', 'can', 'walk'], 'in', ['them.', 'And', 'really,', \"isn't\", 'that', 'what']]\n",
+ "[['reached', 'at', 'bevbeckham@aol.com.', 'Walt', 'Disney', 'World'], 'in', ['Orlando,', 'Fla.,', 'has', 'a', 'special', 'rate']]\n",
+ "[['for', 'demonstrating', 'the', 'suitability', 'of', 'color'], 'in', ['art', 'photography.', '(The', 'Whitney', 'show', 'includes']]\n",
+ "[['includes', 'examples', 'of', \"Eggleston's\", 'early', 'work'], 'in', ['black', 'and', 'white.)', '\"Guide\"', 'was', 'also']]\n",
+ "[['vision', 'of', 'the', 'American', 'South,', 'one'], 'in', ['which', 'suburban', 'ranch', 'houses', 'mattered', 'more']]\n",
+ "[['Eggleston', 'has', 'taken', 'his', 'best-known', 'work'], 'in', ['and', 'around', 'Memphis,', 'the', 'Whitney', 'show']]\n",
+ "[['video', 'from', 'the', 'early', \"'70s,\", '\"Stranded'], 'in', ['Canton.\"', '945', 'Madison', 'Ave.,', '212-570-3600,', 'whitney.org.']]\n",
+ "[['Mantegna,', 'one', 'of', 'the', 'pivotal', 'figures'], 'in', ['Renaissance', 'painting.', 'The', '190', 'works', 'on']]\n",
+ "[['aim', 'is', 'to', 'show', \"Mantegna's\", 'achievement'], 'in', ['the', 'larger', 'context', 'of', '15th-century', 'humanism.']]\n",
+ "[['matchup', 'for', 'DeAngelo', 'Hall', 'on', 'Sunday'], 'in', ['Oakland', 'for', 'a', 'lot', 'of', 'reasons.']]\n",
+ "[['and', 'friend', 'for', 'a', '37-yard', 'touchdown'], 'in', ['a', '24-0', 'rout,', 'he', \"wasn't\", 'one']]\n",
+ "[['dictates', 'that.', 'If', 'Matt', 'throws', 'it'], 'in', ['his', 'direction,', \"he's\", 'made', 'the', 'play']]\n",
+ "[['own', 'theory', 'about', \"Jenkins'\", 'day', 'Sunday'], 'in', ['which', 'both', 'of', 'his', 'catches', 'went']]\n",
+ "[['And', \"he's\", 'just', 'continuing', 'to', 'develop'], 'in', ['this', 'offense,', 'trying', 'to', 'take', 'advantage']]\n",
+ "[['five', 'touchdowns', 'receiving.', 'Jenkins', 'is', 'second'], 'in', ['receiving', 'yards', '(323)', 'and', 'touchdowns', '(three).']]\n",
+ "[['(323)', 'and', 'touchdowns', '(three).', \"He's\", 'third'], 'in', ['receptions', '(18)', 'behind', 'Jerious', 'Norwood.', \"Jenkins'\"]]\n",
+ "[['leads', 'the', 'Falcons.', 'White', 'is', 'fourth'], 'in', ['the', 'NFL', 'with', 'those', '733', 'receiving']]\n",
+ "[['of', 'a', 'sudden', 'we', 'can', 'get'], 'in', ['a', 'situation', 'where', \"they've\", 'got', 'to']]\n",
+ "[['I', 'think', \"that's\", 'what', 'his', 'goal'], 'in', ['life', 'is,', 'to', 'catch', 'a', 'couple']]\n",
+ "[['at', 'the', 'line', 'of', 'scrimmage', 'and'], 'in', ['the', 'run', 'game.', 'And', 'Jenkins', 'seems']]\n",
+ "[['run', 'game.', 'And', 'Jenkins', 'seems', 'comfortable'], 'in', ['a', 'role', 'as', 'a', 'receiver', 'in']]\n",
+ "[['in', 'a', 'role', 'as', 'a', 'receiver'], 'in', ['a', 'run-dominated', 'attack.', '\"We\\'re', 'going', 'to']]\n",
+ "[['ball', 'that', 'comes', 'your', 'way.', 'Bring'], 'in', ['every', 'catch.\"', 'Carroll', 'Rogers', 'writes', 'for']]\n",
+ "[['Marcy', 'Ingall', 'saw', 'a', 'giant', 'wave'], 'in', ['the', 'distance', 'last', 'Tuesday', '(10/28)', 'afternoon']]\n",
+ "[['last', 'Tuesday', '(10/28)', 'afternoon', 'and', 'stopped'], 'in', ['her', 'tracks.', 'It', 'was', 'an', 'hour']]\n",
+ "[['was', 'an', 'hour', 'before', 'low', 'tide'], 'in', [\"Maine's\", 'Boothbay', 'Harbor,', 'yet', 'without', 'warning,']]\n",
+ "[['Service', 'said', 'ocean', 'levels', 'rapidly', 'rose'], 'in', ['Boothbay,', 'Southport,', 'and', 'Bristol', 'in', 'a']]\n",
+ "[['rose', 'in', 'Boothbay,', 'Southport,', 'and', 'Bristol'], 'in', ['a', 'matter', 'of', 'minutes', 'around', '3']]\n",
+ "[['the', 'waves', 'from', 'a', 'field', 'office'], 'in', ['Gray,', 'Maine.', '\"But', \"it's\", 'not', 'mysterious']]\n",
+ "[['of', 'sediment', 'from', 'a', 'steep', 'canyon'], 'in', ['the', 'ocean', '-', 'a', 'sort', 'of']]\n",
+ "[['last', 'time', 'such', 'rogue', 'waves', 'appeared'], 'in', ['Maine', 'was', 'at', 'Bass', 'Harbor', 'in']]\n",
+ "[['in', 'Maine', 'was', 'at', 'Bass', 'Harbor'], 'in', ['1926.', 'Jensenius', 'said', 'the', 'occurrence', 'is']]\n",
+ "[['problem,\"', 'he', 'said.', 'A', 'similar', 'occurrence'], 'in', ['Florida', 'more', 'than', '15', 'years', 'ago']]\n",
+ "[['scale', 'of', 'the', 'tsunami', 'that', 'occurred'], 'in', ['the', 'Indian', 'Ocean', 'in', '2004.', 'Those']]\n",
+ "[['that', 'occurred', 'in', 'the', 'Indian', 'Ocean'], 'in', ['2004.', 'Those', 'fast-moving', 'and', 'deadly', 'waves']]\n",
+ "[['think.', 'Jensenius', 'referenced', 'a', '2002', 'article'], 'in', ['the', 'International', 'Journal', 'of', 'the', 'Tsunami']]\n",
+ "[['of', 'tsunami', 'and', 'tsunami-like', 'waves', 'generated'], 'in', ['the', 'Atlantic', 'Ocean', '\"very', 'real', 'despite']]\n",
+ "[['earthquakes', 'or', 'seismic', 'activity', 'were', 'reported'], 'in', ['the', 'area', 'when', 'the', 'Boothbay', 'waves']]\n",
+ "[['waves', 'struck.', 'Tom', 'Lippmann,', 'an', 'oceanographer'], 'in', ['the', 'Marine', 'Sciences', 'Department', 'at', 'the']]\n",
+ "[['a', 'tide', 'surge,', 'he', 'said.', '\"Tides'], 'in', ['the', 'Gulf', 'of', 'Maine', 'are', 'essentially']]\n",
+ "[['well', 'known.\"', 'Residents', 'and', 'business', 'owners'], 'in', ['Boothbay', 'said', 'they', 'were', 'glad', 'the']]\n",
+ "[['damage.', 'Janice', 'Newell,', 'who', 'lives', 'nearby'], 'in', ['Head', 'of', 'the', 'Harbor,', 'told', 'the']]\n",
+ "[['proportion.\"', '\"There', 'were', 'three', 'large', 'whirlpools'], 'in', ['the', 'inner', 'harbor,', 'up', 'to', 'within']]\n",
+ "[['disappeared,', 'leaving', 'clam', 'shells', 'and', 'seaweed'], 'in', ['vortex', 'patterns', 'on', 'the', 'harbor', 'floor.']]\n",
+ "[['somebody', 'took', 'the', 'plug', 'out', 'somewhere\"'], 'in', ['the', 'ocean,', 'Smith', 'said.', '\"It', 'felt']]\n",
+ "[['there', 'must', 'have', 'been', 'water', 'missing'], 'in', ['the', 'ocean', 'someplace.\"', 'Megan', 'Woolhouse', 'can']]\n",
+ "[['first.', \"It's\", 'not', 'the', 'first', 'time'], 'in', ['recent', 'history', 'the', 'typo', 'has', 'seen']]\n",
+ "[['light', 'of', 'day.', \"There's\", 'an', 'example'], 'in', ['a', '2004', 'commentary', 'at', 'the', \"Chattanoogan's\"]]\n",
+ "[[\"Chattanoogan's\", 'website:', '\"Like', 'Barack', 'Obama', 'said'], 'in', ['his', 'Democratical', 'National', 'Convention', 'address', \"'we\"]]\n",
+ "[[\"'we\", 'are', 'one', \"people.'\", '\"', 'And'], 'in', ['1992,', 'the', 'Atlanta', 'Constitution', 'seems', 'to']]\n",
+ "[['says', 'the', 'English', 'church', '\"is', 'Monarchical'], 'in', ['regard', 'of', 'our', 'head,', 'Christ;', 'Aristocratical']]\n",
+ "[['regard', 'of', 'our', 'head,', 'Christ;', 'Aristocratical'], 'in', ['the', 'Eldership;', 'and', 'Democratical', 'in', 'the']]\n",
+ "[['Aristocratical', 'in', 'the', 'Eldership;', 'and', 'Democratical'], 'in', ['the', 'people.\"', 'And', 'America', 'proved', 'just']]\n",
+ "[['contributor', 'to', 'the', 'American', 'Whig', 'Review'], 'in', ['1847.', 'With', 'the', 'adjective', 'already', 'in']]\n",
+ "[['in', '1847.', 'With', 'the', 'adjective', 'already'], 'in', ['circulation,', \"it's\", 'only', 'natural', 'that', 'the']]\n",
+ "[['and', 'then', 'be', 'called', 'democratical,', 'as'], 'in', ['an', '1856', 'essay', 'on', 'political', 'loyalty']]\n",
+ "[['an', '1856', 'essay', 'on', 'political', 'loyalty'], 'in', ['The', 'National', 'Era:', '\"We', 'leave', 'to']]\n",
+ "[['In', '1924,', 'the', 'Mexia', 'Daily', 'News,'], 'in', ['Texas,', 'complained', 'that', '\"fundamentalists', 'call', 'the']]\n",
+ "[['usage', 'at', 'the', 'Statesville,', 'N.C.,', 'Standard'], 'in', ['1947.', 'But', 'when,', 'in', '1960,', 'the']]\n",
+ "[['N.C.,', 'Standard', 'in', '1947.', 'But', 'when,'], 'in', ['1960,', 'the', 'Chicago', 'Tribune', 'called', 'Kennedy']]\n",
+ "[['OED', 'quotes', 'the', 'New', 'York', 'Herald'], 'in', ['1848:', '\"The', 'election', 'of', '1840', 'was']]\n",
+ "[['higher', 'than', 'all', 'other', 'considerations.\"', 'Even'], 'in', ['the', '20th', 'century,', '\"the', 'Democracy\"', 'persisted']]\n",
+ "[['for', 'a', 'while.', 'Linguist', 'Geoff', 'Nunberg,'], 'in', ['an', 'essay', 'broadcast', 'on', '\"Fresh', 'Air,\"']]\n",
+ "[['Jennings', 'Bryan', 'addressing', 'a', 'party', 'gathering'], 'in', ['Boston', 'in', '1902:', '\"I', 'recognize', '.']]\n",
+ "[['addressing', 'a', 'party', 'gathering', 'in', 'Boston'], 'in', ['1902:', '\"I', 'recognize', '.', '.', '.']]\n",
+ "[['it', 'requires', 'to', 'plead', 'for', 'Democracy'], 'in', ['New', 'England.\"', 'But', 'by', 'then,', 'the']]\n",
+ "[['run.', 'Ambrose', 'Bierce', 'sneered', 'at', 'it'], 'in', ['his', '1909', 'usage', 'handbook', '-', '\"One']]\n",
+ "[['the', 'one', 'we', 'still', 'hear', 'today'], 'in', ['President', \"Bush's\", 'references', 'to', '\"the', 'Democrat']]\n",
+ "[['party\":', 'Hoover', 'used', 'it', 'as', 'well,'], 'in', ['1932,', 'in', 'his', 'campaign', 'against', 'Franklin']]\n",
+ "[['used', 'it', 'as', 'well,', 'in', '1932,'], 'in', ['his', 'campaign', 'against', 'Franklin', 'Roosevelt.', 'There']]\n",
+ "[['In', '1908,', 'a', 'wag', 'used', 'it'], 'in', ['a', 'poem', 'accusing', 'William', 'Jennings', 'Bryan']]\n",
+ "[['346-9867;', 'e-mail:', 'mikell@nytimes.com.', 'POLITICS', '(Will', 'move'], 'in', ['\"p\"', 'news', 'file.)', '(EDS:', 'A', 'separate']]\n",
+ "[['once', 'unrecognizable', 'and', 'eerily', 'familiar', 'here'], 'in', ['southwest', 'Georgia.', 'As', 'they', 'exited', 'the']]\n",
+ "[['they', 'exited', 'the', 'voting', 'booths,', 'some'], 'in', ['wheelchairs,', 'others', 'with', 'canes,', 'these', 'foot']]\n",
+ "[['skedded', 'as', 'ELN-BLACKS-VOTE.', 'INTERNATIONAL', '(Will', 'move'], 'in', ['\"i\"', 'news', 'file.)', 'COLOMBIA-ARMY-RESIGN', '(Caracas,', 'Venezuela)']]\n",
+ "[['men', 'whose', 'bodies', 'were', 'later', 'dumped'], 'in', ['mass', 'graves', 'and', 'falsely', 'reported', 'as']]\n",
+ "[['and', 'falsely', 'reported', 'as', 'combat', 'deaths'], 'in', ['the', 'prolonged', 'war', 'with', 'rebel', 'forces.']]\n",
+ "[['from', 'killing', 'civilians', 'to', 'inflate', 'statistics'], 'in', ['the', 'rebel', 'conflict.', '(Summary', 'from', 'wires.)']]\n",
+ "[['lede', 'has', 'moved.', 'FINANCIAL', '(Will', 'move'], 'in', ['\"f\"\\'', 'news', 'file.)', 'ECON-RISK', '(Undated)', '--']]\n",
+ "[['keep', 'pace', 'with', 'the', 'explosive', 'growth'], 'in', ['complex', 'securities,', 'the', 'resulting', 'intricate', 'web']]\n",
+ "[['failure,', 'they', 'say,', 'was', 'human', '--'], 'in', ['how', 'the', 'risk', 'models', 'were', 'applied,']]\n",
+ "[['have', 'been', 'postponed', 'or', 'shelved.', 'Shares'], 'in', ['the', 'handful', 'of', 'other', 'public', 'ethanol']]\n",
+ "[['By', 'Kate', 'Galbraith.', 'CULTURE', '(Will', 'move'], 'in', ['\"e\"', 'news', 'file.)', 'BROADWAY-ECON', '(New', 'York)']]\n",
+ "[['second-act', 'rendition', 'of', '\"Let\\'s', 'Hang', 'On,\"'], 'in', ['\"Jersey', 'Boys,\"', 'might', 'be', \"Broadway's\", 'anthem']]\n",
+ "[['more', 'than', 'a', '10', 'percent', 'drop'], 'in', ['ticket', 'sales.', 'So', 'musicals', 'and', 'plays']]\n",
+ "[['skedded', 'as', 'BROADWAY-SHORT-RUN.', 'DINING', '(Will', 'move'], 'in', ['\"d\"', 'news', 'file.)', 'YELP-RESTAURANT-REVIEWS', '(Undated)', '--']]\n",
+ "[['just', 'an', 'anonymous', 'Zagateer,', 'dutifully', 'filling'], 'in', ['forms.', 'You', 'can', 'have', 'fans.', 'You']]\n",
+ "[['so', 'inclined,', 'you', 'can', 'discuss', 'it'], 'in', ['detail,', 'online,', 'with', 'fellow', 'foodies.', 'Where']]\n",
+ "[['With', 'photos', 'NYT28-29.', 'SPORTS', '(Will', 'move'], 'in', ['\"s\"', 'news', 'file.)', 'FBH-GA-2ND-CHANCE', '(Moultrie,', 'Ga.)']]\n",
+ "[['--', 'Inhabitants', 'of', 'this', 'rural', 'hamlet'], 'in', ['southwest', 'Georgia', 'overwhelmingly', 'identify', 'themselves', 'as']]\n",
+ "[['stories', 'you', 'will', 'receive.)', 'Spring', 'blooms'], 'in', ['the', 'white', 'of', 'winter:', 'You', 'can']]\n",
+ "[['spent', 'its', 'required', 'number', 'of', 'days'], 'in', ['the', 'frozen', 'garden.', 'Plan', 'on', 'this']]\n",
+ "[[\"you'd\", 'like', 'to', 'have', 'the', 'bulbs'], 'in', ['bloom.', 'For', 'example,', 'hyacinths', 'require', 'a']]\n",
+ "[['below', 'ground', 'and', 'mouse-proof.', 'Once', \"they're\"], 'in', ['the', 'cold', 'treatment,', 'do', 'not', 'water']]\n",
+ "[['the', 'bloom', 'period,', 'stagger', 'moving', 'them'], 'in', ['by', 'intervals', 'of', '5', 'to', '7']]\n",
+ "[['bring', 'them', 'indoors', 'and', 'place', 'them'], 'in', ['a', 'bright', 'location.', \"Don't\", 'put', 'them']]\n",
+ "[['bright', 'location.', \"Don't\", 'put', 'them', 'directly'], 'in', ['a', 'south', '--', 'or', 'west', '--']]\n",
+ "[['others', 'can', 'be', 'saved', 'and', 'planted'], 'in', ['the', 'garden', 'come', 'spring.', 'They', \"won't\"]]\n",
+ "[['supply', 'for', 'next', \"spring's\", 'bloom.', 'Mix'], 'in', ['some', 'bonemeal', 'both', 'spring', 'and', 'fall.']]\n",
+ "[['on', 'schedule.', 'Paperwhites', 'are', 'typically', 'planted'], 'in', ['a', 'container', 'filled', 'with', 'small', 'stones']]\n",
+ "[['the', 'roots,', 'not', 'the', 'entire', 'bulb,'], 'in', ['contact', 'with', 'water', '--', 'and', 'place']]\n",
+ "[['contact', 'with', 'water', '--', 'and', 'place'], 'in', ['bright', 'light.', 'You', 'can', 'plant', 'the']]\n",
+ "[['You', 'can', 'plant', 'the', 'other', 'bulbs'], 'in', ['stones', 'rather', 'than', 'potting', 'mix', 'and']]\n",
+ "[['(Nancy', \"O'Donnell\", 'owns', 'Perennial', 'Graphics', 'Nursery'], 'in', ['Schaighticoke,', 'N.Y.', 'Contact', 'her', 'by', 'e-mail']]\n",
+ "[['flavor', 'of', 'Spain,', 'and', 'he', 'erupts'], 'in', ['an', 'impromptu', 'ode', 'to', 'his', 'homeland:']]\n",
+ "[['restaurateur', 'and', 'host', 'of', \"PBS's\", '\"Made'], 'in', ['Spain.\"', 'But', \"he's\", 'just', 'getting', 'started.']]\n",
+ "[['humidity', 'and', 'a', 'touch', 'of', 'smoke'], 'in', ['the', 'air,\"', 'Andr?s', 'muses', 'as', 'he']]\n",
+ "[['shops', 'the', 'Penn', 'Quarter', 'farmers', 'market'], 'in', ['Washington,', 'D.C.,', 'for', 'his', 'restaurant,', 'Minibar.']]\n",
+ "[['old', 'cookbooks.\"', 'Despite', 'its', 'integral', 'role'], 'in', ['the', 'early', 'history', 'of', 'the', 'New']]\n",
+ "[['the', 'Iberian', 'Peninsula,', 'the', 'shows', 'differ'], 'in', ['tone.', 'The', 'Batali-Paltrow', 'show', 'feels', 'a']]\n",
+ "[['hanging', 'out', 'with', 'the', 'popular', 'kids'], 'in', ['high', 'school,', 'except', 'the', 'bus', 'is']]\n",
+ "[['this', 'is', 'a', 'beautifully', 'filmed', 'exercise'], 'in', ['vanity,', 'both', 'Batali', 'and', 'Paltrow', 'lived']]\n",
+ "[['vanity,', 'both', 'Batali', 'and', 'Paltrow', 'lived'], 'in', ['Spain', 'as', 'teenagers', 'and', 'their', 'return']]\n",
+ "[['to', 'translate', 'to', 'the', 'home', 'cook'], 'in', ['his', 'show,\"', 'says', 'Batali', 'by', 'cell']]\n",
+ "[['there', 'first.', '\"My', 'show', 'started', 'airing'], 'in', ['February,\"', 'says', 'Andr?s,', 'who', 'spent', 'nearly']]\n",
+ "[['years', 'shooting', 'his', 'show,', 'which', 'is'], 'in', ['its', 'second', 'season', 'now.', '\"We', 'were']]\n",
+ "[['its', 'second', 'season', 'now.', '\"We', 'were'], 'in', ['different', 'seasons', 'waiting', 'for', 'saffron', 'to']]\n",
+ "[['Atlantic', '19', 'years', 'ago', 'to', 'work'], 'in', ['New', 'York', 'after', 'a', 'stint', 'with']]\n",
+ "[['famed', 'innovator', 'Ferran', 'Adri?', 'at', 'elBulli'], 'in', ['northeastern', 'Spain.', 'With', 'a', 'successful', 'television']]\n",
+ "[['Spain.', 'With', 'a', 'successful', 'television', 'career'], 'in', ['Spain,', 'five', 'restaurants', 'in', 'Washington,', 'D.C.,']]\n",
+ "[['television', 'career', 'in', 'Spain,', 'five', 'restaurants'], 'in', ['Washington,', 'D.C.,', 'and', 'The', 'Bazaar', 'in']]\n",
+ "[['in', 'Washington,', 'D.C.,', 'and', 'The', 'Bazaar'], 'in', ['the', 'new', 'SLS', 'Hotel', 'opening', 'in']]\n",
+ "[['in', 'the', 'new', 'SLS', 'Hotel', 'opening'], 'in', ['Beverly', 'Hills,', 'Calif.,', 'this', 'month,', 'Andr?s']]\n",
+ "[['country', 'through', 'cooking,', 'and', 'not', 'only'], 'in', ['the', 'kitchen.', \"It's\", 'about', 'how', 'powerful']]\n",
+ "[['shows', 'aim', 'to', 'pique', \"viewers'\", 'interest'], 'in', ['traveling', 'to', 'Spain,', 'as', 'they', 'are']]\n",
+ "[['to', 'Spain,', 'as', 'they', 'are', 'sponsored'], 'in', ['part', 'by', 'the', 'Spanish', 'tourism', 'office.']]\n",
+ "[['And', \"they're\", 'sure', 'to', 'stimulate', 'interest'], 'in', ['exploring', 'Spanish', 'flavors', 'here', 'at', 'home.']]\n",
+ "[['about', 'the', 'landscape', 'inspires', 'the', 'poet'], 'in', ['Batali', 'too.', '\"Things', 'that', 'grow', 'together']]\n",
+ "[['over', 'grapevine', 'clippings', 'at', 'Valdub?n', 'Vineyard'], 'in', ['one', 'episode.', '\"Everything', 'about', 'this', 'whole']]\n",
+ "[['cultural', 'and', 'geographic', 'roots.', '\"It\\'s', 'similar'], 'in', ['its', 'Mediterranean-ness', 'to', 'Italian,', 'Greek', 'and']]\n",
+ "[['features', 'the', 'beautiful', 'bonito', 'tuna', 'caught'], 'in', ['the', 'north', 'of', 'Spain', 'plus', 'one']]\n",
+ "[['survive', 'a', 'sailing', 'trip.', 'From', '\"Made'], 'in', ['Spain,\"', 'by', 'Jos?', 'Andr?s,', 'makes', '4']]\n",
+ "[['plate', 'to', 'drain.', 'Slice', 'the', 'tomatoes'], 'in', ['half.', 'Place', 'a', 'large-holed', 'grater', 'over']]\n",
+ "[['cook', '2', 'to', '3', 'minutes.', 'Stir'], 'in', ['tomato', 'pulp,', 'guindilla', 'pepper', 'and', 'smoked']]\n",
+ "[['smoked', 'paprika,', 'cook', '10', 'minutes.', 'Fold'], 'in', ['fried', 'bread', 'and', 'cook', 'for', '2']]\n",
+ "[['Scallops', 'With', 'Albariño', 'Wine', 'From', '\"Made'], 'in', ['Spain.\"', 'Jos?', 'Andr?s', 'recommends', 'Taylor', 'brand']]\n",
+ "[['Sea', 'salt', 'to', 'taste', '8', 'scallops'], 'in', ['their', 'shells', '3', 'tablespoons', 'fresh', 'bread']]\n",
+ "[['crumbs', 'Directions', 'Heat', 'the', 'olive', 'oil'], 'in', ['a', 'medium', 'saut?', 'pan', 'over', 'low']]\n",
+ "[['golden', 'brown,', 'about', '30', 'minutes.', 'Stir'], 'in', ['the', 'garlic', 'and', 'cook', 'for', 'another']]\n",
+ "[['Set', 'aside', 'to', 'cool,', 'then', 'stir'], 'in', ['the', 'ham', 'and', '1', 'teaspoon', 'of']]\n",
+ "[['1', 'teaspoon', 'of', 'the', 'onion-ham', 'mixture'], 'in', ['each', 'shell', 'and', 'sprinkle', 'with', 'salt.']]\n",
+ "[['serve.', 'Red', 'Wine', 'Sangr?a', 'From', '\"Made'], 'in', ['Spain,\"', 'by', 'Jos?', 'Andr?s.', 'Serves', '4.']]\n",
+ "[['apples,', 'cinnamon', 'stick', 'and', 'lemon', 'zest'], 'in', ['a', 'bowl', 'and', 'refrigerate', 'for', 'at']]\n",
+ "[['into', 'chunks', 'Directions', 'Soak', 'bread', 'briefly'], 'in', ['sherry', 'until', 'liquid', 'is', 'absorbed,', 'then']]\n",
+ "[['until', 'liquid', 'is', 'absorbed,', 'then', 'pulse'], 'in', ['a', 'food', 'processor', 'fitted', 'with', 'the']]\n",
+ "[['with', 'flour.', 'Heat', '1', 'tablespoon', 'oil'], 'in', ['a', 'large', 'skillet', 'over', 'medium-high', 'heat.']]\n",
+ "[['skillet', 'over', 'medium-high', 'heat.', 'Add', 'meatballs'], 'in', ['batches', 'and', 'brown', 'on', 'all', 'sides,']]\n",
+ "[['for', 'about', '2', 'minutes,', 'and', 'whisk'], 'in', ['butter', 'to', 'finish', 'sauce.', 'Add', 'meatballs']]\n",
+ "[['it', 'as', 'a', 'tapa,', 'for', 'breakfast,'], 'in', ['a', 'bocadillo', '(sandwich),', 'or', 'for', 'dinner']]\n",
+ "[['extra-large', 'eggs', 'Directions', 'Heat', 'the', 'oil'], 'in', ['a', 'large', 'cast-iron', 'skillet', 'or', 'nonstick']]\n",
+ "[['with', 'salt', 'and', 'pepper', 'to', 'taste'], 'in', ['a', 'large', 'bowl.', 'Combine', 'the', 'potatoes']]\n",
+ "[['Combine', 'the', 'potatoes', 'with', 'the', 'eggs'], 'in', ['the', 'bowl;', 'add', 'to', 'the', 'skillet,']]\n",
+ "[['the', 'skillet,', 'spreading', 'the', 'potatoes', 'evenly'], 'in', ['the', 'pan,', 'and', 'cook', 'for', 'about']]\n",
+ "[['bread.', \"Lincoln's\", 'Darkest', 'Year:', 'The', 'War'], 'in', ['1862', 'By', 'William', 'Marvel', 'Houghton', 'Mifflin,']]\n",
+ "[['Va.,', 'the', 'Confederate', 'capital,', 'and', 'were'], 'in', ['a', 'much', 'better', 'position', 'to', 'cut']]\n",
+ "[['recruits.', 'The', \"war's\", 'end', 'was', 'nowhere'], 'in', ['sight.', 'Historian', 'William', 'Marvel,', 'winner', 'of']]\n",
+ "[['Civil', 'War', 'volume', 'to', 'this', 'swing'], 'in', ['momentum.', '\"Lincoln\\'s', 'Darkest', 'Year\"', 'is', 'the']]\n",
+ "[['\"Lincoln\\'s', 'Darkest', 'Year\"', 'is', 'the', 'second'], 'in', [\"Marvel's\", 'planned', 'four-volume', 'Civil', 'War', 'tome,']]\n",
+ "[['and', 'the', 'South.', 'The', 'result,', 'especially'], 'in', ['\"Lincoln\\'s', 'Darkest', 'Year,\"', 'is', 'a', 'cataloging']]\n",
+ "[['advanced', 'understanding', 'of', 'everything', 'at', 'stake'], 'in', ['wartime.', 'That', 'aspect', 'is', 'missing', 'in']]\n",
+ "[['in', 'wartime.', 'That', 'aspect', 'is', 'missing'], 'in', ['\"Lincoln\\'s', 'Darkest', 'Year.\"', 'Even', 'Lincoln', 'comes']]\n",
+ "[['to', 'trust', 'and', 'whether', 'to', 'intervene'], 'in', ['military', 'matters.', 'Union', 'generals,', 'especially', 'Gen.']]\n",
+ "[['George', 'McClellan,', 'with', 'his', 'constant', 'indecision'], 'in', ['the', 'field,', 'frustrated', 'Lincoln,', 'but', \"there's\"]]\n",
+ "[['drama', 'that', 'must', 'have', 'played', 'out'], 'in', ['the', 'White', 'House.', 'Marvel', 'delivers', 'much']]\n",
+ "[['of', 'Antietam', 'and', 'Fredericksburg,', 'both', 'resulting'], 'in', ['massive', 'casualties,', 'are', 'described', 'in', 'detail.']]\n",
+ "[['resulting', 'in', 'massive', 'casualties,', 'are', 'described'], 'in', ['detail.', 'The', 'reader', 'ought', 'to', 'be']]\n",
+ "[['\"most', 'useful', 'cookbook', 'of', 'all', 'time\"'], 'in', ['2005', 'for', 'his', 'work', '\"Roast', 'Chicken']]\n",
+ "[['to', 'crippling', \"writer's\", 'block', 'or', 'indulged'], 'in', ['some', 'scandalous', 'behavior,', 'like', 'endorsing', 'a']]\n",
+ "[['an', 'even', 'juicier', 'sequel,', 'just', 'published'], 'in', ['the', 'United', 'States,', '\"Second', 'Helpings', 'of']]\n",
+ "[['furiously', 'during', 'a', 'recent', 'cooking', 'session'], 'in', ['Manhattan.', '\"But', \"they're\", 'just', 'old,', 'all']]\n",
+ "[['chef', 'for', 'Bibendum,', 'a', 'top', 'restaurant'], 'in', [\"Britain's\", 'culinary', 'awakening', 'of', 'the', '1990s,']]\n",
+ "[['Continental,', 'food.', '(When', 'the', 'restaurant', 'opened'], 'in', ['1987,', 'his', 'inclusion', 'of', 'the', 'prosaic']]\n",
+ "[['Leigh,', 'chef', 'at', 'Le', 'Cafe', 'Anglais'], 'in', ['London.)', 'April', 'Bloomfield,', 'the', 'chef', 'at']]\n",
+ "[['the', 'chef', 'at', 'the', 'Spotted', 'Pig'], 'in', ['the', 'West', 'Village,', 'cooked', 'under', 'him']]\n",
+ "[['on', 'earth', 'would', 'anyone', 'put', 'cumin'], 'in', ['mint', 'sauce', 'for', 'lamb,', 'or', 'a']]\n",
+ "[['on', 'bibb', 'lettuce?\"', 'he', 'asked,', 'wincing'], 'in', ['genuine', 'pain.', '\"There\\'s', 'no', 'reason', 'for']]\n",
+ "[['come', 'out', 'of', 'his', \"mother's\", 'kitchen'], 'in', ['the', '1960s:', 'well-made', 'British', 'classics', 'and']]\n",
+ "[['the', 'Mediterranean.', 'He', 'began', 'his', 'career'], 'in', ['a', 'firmly', 'French', 'kitchen', 'in', 'the']]\n",
+ "[['career', 'in', 'a', 'firmly', 'French', 'kitchen'], 'in', ['the', 'firmly', 'British', 'town', 'of', 'Birtle,']]\n",
+ "[['Birtle,', 'opened', 'his', 'own', '(French)', 'restaurant'], 'in', ['Wales', 'in', '1975,', 'one', 'month', 'before']]\n",
+ "[['his', 'own', '(French)', 'restaurant', 'in', 'Wales'], 'in', ['1975,', 'one', 'month', 'before', 'his', '21st']]\n",
+ "[['month', 'before', 'his', '21st', 'birthday,', 'and'], 'in', ['1983', 'opened', 'the', 'French', 'restaurant', 'in']]\n",
+ "[['in', '1983', 'opened', 'the', 'French', 'restaurant'], 'in', ['London,', 'Hilaire,', 'that', 'began', 'to', 'make']]\n",
+ "[['never', 'felt', 'the', 'need', 'to', 'work'], 'in', ['France,\"', 'he', 'said.', '\"My', 'country', 'needed']]\n",
+ "[['country', 'needed', 'me.\"', 'He', 'was', 'born'], 'in', ['1954,', 'into', 'a', 'nation', 'renowned', 'as']]\n",
+ "[['a', 'pretty', 'dull', 'and', 'stodgy', 'dish'], 'in', ['most', 'hands,\"', 'Leigh', 'said.', '\"And', 'he']]\n",
+ "[['\"Something', 'seems', 'ever', 'so', 'slightly', 'wrong'], 'in', ['the', 'state', 'of', 'the', 'home', 'kitchen,']]\n",
+ "[['and', 'lemon', 'zest,', 'cream', 'and', 'sugar'], 'in', ['a', 'large', 'pan', '(the', 'cream', 'will']]\n",
+ "[['minutes.', 'Turn', 'off', 'heat', 'and', 'whisk'], 'in', ['lemon', 'juice', 'and', 'reserved', 'orange', 'syrup.']]\n",
+ "[['orange', 'jelly', 'on', 'top.)', 'Arrange', 'ramekins'], 'in', ['a', 'pan', 'and', 'refrigerate', 'at', 'least']]\n",
+ "[['hours', 'or', 'overnight.', '4.', 'Put', 'gelatin'], 'in', ['a', 'medium', 'bowl,', 'add', '1', 'tablespoon']]\n",
+ "[['1/2', 'cup', 'juice.', 'Put', 'orange', 'juice'], 'in', ['small', 'pan', 'and', 'add', 'juice', 'of']]\n",
+ "[['the', 'gelatin.', 'Whisk', 'until', 'smooth.', 'Whisk'], 'in', ['Grand', 'Marnier,', 'if', 'using,', 'and', 'set']]\n",
+ "[['Yield:', '6', 'servings.', 'On', 'an', 'island'], 'in', ['the', 'Napo', 'River', 'in', \"Ecuador's\", 'Amazonian']]\n",
+ "[['an', 'island', 'in', 'the', 'Napo', 'River'], 'in', [\"Ecuador's\", 'Amazonian', 'rain', 'forest,', 'in', 'a']]\n",
+ "[['River', 'in', \"Ecuador's\", 'Amazonian', 'rain', 'forest,'], 'in', ['a', 'tin-roofed', 'hut', 'on', 'stilts,', 'live']]\n",
+ "[['pulp', 'that', 'envelops', 'the', 'cacao', 'beans'], 'in', ['the', 'pods.', 'It', 'tastes', 'like', 'Sour']]\n",
+ "[['turned', 'into', 'mass-produced', 'chocolate.', 'Every', 'once'], 'in', ['a', 'while', 'the', 'Quechua', 'might', 'even']]\n",
+ "[['sold', 'throughout', 'the', 'United', 'States.', 'People'], 'in', ['the', 'chocolate', 'industry', 'said', 'they', 'knew']]\n",
+ "[['\"It\\'s', 'the', 'same', 'taste', 'I', 'find'], 'in', ['a', 'Californian', 'cabernet.\"', 'The', 'chocolate', 'is']]\n",
+ "[['rich', 'and', 'straightforward.', 'The', '2.47-ounce', 'bars,'], 'in', ['75', 'and', '85', 'percent', 'cacao,', 'sell']]\n",
+ "[['anyone', 'who', 'would', 'trust', 'us.\"', 'Then'], 'in', ['1997', 'they', 'met', 'Judy', 'Logback,', 'a']]\n",
+ "[['volunteering', 'for', 'a', 'foundation', 'promoting', 'biodiversity'], 'in', ['Ecuador.', '\"I', \"didn't\", 'show', 'up', 'with']]\n",
+ "[['they', 'got', '48', 'cents', 'a', 'pound'], 'in', ['Guayaquil.', 'Four', 'years', 'later,', 'they', 'established']]\n",
+ "[['years', 'later,', 'they', 'established', 'Kallari,', 'which'], 'in', ['Quechua', 'means', 'both', '\"to', 'begin\"', 'and']]\n",
+ "[['production', 'and', 'natural', 'resources.', '\"The', 'people'], 'in', ['the', 'communities', 'really', 'love', 'her', 'for']]\n",
+ "[['big', 'league', 'chocolate-makers.', 'They', 'e-mailed', 'makers'], 'in', ['North', 'America,', 'attracting', 'the', 'interest', 'of']]\n",
+ "[['a', 'founder', 'of', 'Scharffen', 'Berger', 'chocolate'], 'in', ['Berkeley,', 'Calif.', 'But', 'Steinberg', 'said', 'that']]\n",
+ "[['conference', 'of', 'the', 'Slow', 'Food', 'group'], 'in', ['Turin,', 'Italy.', 'Later', 'that', 'year', 'they']]\n",
+ "[['Chocolate-making', 'has', 'always', 'been', 'less', 'common'], 'in', ['cacao-producing', 'countries', 'than', 'it', 'has', 'been']]\n",
+ "[['cacao-producing', 'countries', 'than', 'it', 'has', 'been'], 'in', ['Europe,', 'where', 'the', 'technology', 'to', 'create']]\n",
+ "[['a', 'formula', 'from', 'Steinberg,', 'who', 'died'], 'in', ['September,', 'and', 'heavy', 'bushels', 'of', 'cacao,']]\n",
+ "[['bus', 'to', 'a', 'shabby', 'community-owned', 'factory'], 'in', ['the', 'Andean', 'hill', 'town', 'of', 'Salinas']]\n",
+ "[['it,', 'they', 'could', 'understand', 'their', 'role'], 'in', ['the', 'finished', 'product.', 'They', 'improved', 'their']]\n",
+ "[['a', 'larger,', 'more', 'efficient', 'chocolate', 'factory'], 'in', ['Quito,', 'the', 'capital', 'of', 'Ecuador,', 'to']]\n",
+ "[['Keme', 'and', 'Pozo.', '(The', 'chocolate', 'made'], 'in', ['Salinas,', 'less', 'refined', 'and', 'slightly', 'acidic,']]\n",
+ "[['refined', 'and', 'slightly', 'acidic,', 'is', 'sold'], 'in', ['some', 'health', 'food', 'stores', 'as', \"Kallari's\"]]\n",
+ "[['concerned.', '\"The', 'Kallari', 'people', 'have', 'pride'], 'in', ['their', 'farms,\"', 'he', 'said,', '\"and', 'are']]\n",
+ "[['for', 'their', 'own', 'chocolate', 'factory', 'are'], 'in', ['the', 'works,', 'McDonnell', 'hopes', 'that', 'within']]\n",
+ "[['their', 'children', 'explaining', 'that', 'people', 'come'], 'in', ['all', 'shapes', 'and', 'sizes,', 'colors', 'and']]\n",
+ "[['\"Learning', 'to', 'appreciate', 'diversity', 'helps', 'us'], 'in', ['all', 'phases', 'of', 'life.', 'If', 'we']]\n",
+ "[['barriers', 'that', 'never', 'had', 'to', 'exist'], 'in', ['the', 'first', 'place.', 'Zobel', 'Nolan,', 'who']]\n",
+ "[['150', 'books,', 'was', 'a', 'senior', 'editor'], 'in', ['the', 'religious', 'books', 'department', 'of', \"Reader's\"]]\n",
+ "[['department', 'of', \"Reader's\", 'Digest', \"Children's\", 'Publishing,'], 'in', ['Pleasantville,', 'N.Y.', 'She', 'says', 'she', 'left']]\n",
+ "[['She', 'says', 'she', 'left', 'that', 'job'], 'in', ['April', '2007', 'to', 'concentrate', 'on', 'other']]\n",
+ "[['hair', 'and', 'freckles,', 'or', 'curly', 'hair'], 'in', ['corn', 'rows.\"', 'She', 'says', 'she', 'also']]\n",
+ "[['word.', 'Sometimes', 'they', 'can', 'be', 'used'], 'in', ['a', 'way', 'that', 'is', '\"really', 'hilarious,']]\n",
+ "[['said', 'it', 'was', '\"the', 'big', 'elephant'], 'in', ['the', 'room.\"', 'One', 'possible', 'outcome', 'in']]\n",
+ "[['in', 'the', 'room.\"', 'One', 'possible', 'outcome'], 'in', ['the', 'appeal', 'is', 'that', 'the', 'justices']]\n",
+ "[['be', 'bombarded', 'with', 'indecent', 'language,', 'either'], 'in', ['an', 'isolated', 'basis', 'or', 'a', 'repeated']]\n",
+ "[['\"isn\\'t', 'regulating', 'the', 'price', 'of', 'oil'], 'in', ['a', 'pipeline.\"', '\"At', 'the', 'end', 'of']]\n",
+ "[['movie', '\"Saving', 'Private', 'Ryan,\"', 'despite', 'expletives'], 'in', ['the', 'film.', '\"There', 'seems', 'to', 'be']]\n",
+ "[['it', 'says', 'it', 'isn\\'t.\"', 'A', 'decision'], 'in', ['the', 'case', 'is', 'expected', 'by', 'July.']]\n"
+ ]
+ }
+ ],
+ "source": [
+ "# a)\n",
+ "def concordance(wordlist, random_word, n_of_w_left, n_of_w_right):\n",
+ " concordance_list = []\n",
+ " for idx, x in enumerate(wordlist):\n",
+ " if x in random_word:\n",
+ " if idx < n_of_w_left: \n",
+ " left = wordlist[:idx] \n",
+ " else:\n",
+ " left = wordlist[idx-n_of_w_left:idx] \n",
+ " word = x\n",
+ " right = wordlist[idx+1:idx+n_of_w_right+1]\n",
+ " concordance_list.append([left,word,right]) \n",
+ " \n",
+ " return(concordance_list)\n",
+ "\n",
+ "concordance_display = concordance(wordlist, [\"in\"], 6, 6)\n",
+ "for x in concordance_display:\n",
+ " print(x)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "***"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Extra Credit – Secret Message\n",
+ "+ The answers to the extra credit exercises will reveal a secret message. \n",
+ "+ We will be working with the following text file for these exercises: \n",
+ "[Link to Text](https://web.stanford.edu/class/cs124/lec/secret_ec.txt) \n",
+ "(No starter code in the Extra Credit) "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Extra Credit Exercise 1\n",
+ "• Find the 2 most common words in secret_ec.txt containing the letter e. \n",
+ "• Your answer will correspond to the first two words of the secret message. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Extra Credit Exercise 2\n",
+ "• Find the 2 most common bigrams in secret_ec.txt where the second word in the bigram ends with a consonant. \n",
+ "• Your answer will correspond to the next four words of the secret message. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "##### Extra Credit Exercise 3\n",
+ "• Find all 5-letter-long words that only appear once in secret_ec.txt. \n",
+ "• Concatenate your result. This will be the final word of the secret message. \n",
+ "\n",
+ "What is the secret message? "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.9.13"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/Assignment_6.ipynb b/Assignment_6.ipynb
new file mode 100644
index 00000000..5dce84ff
--- /dev/null
+++ b/Assignment_6.ipynb
@@ -0,0 +1,210 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "
\n",
+ "\n",
+ "# Practical Machine Learning for Natural Language Processing - 2023 SS \n",
+ "\n",
+ "### Assigment 2 - Generators and Classes \n",
+ "\n",
+ "In this assigment we are going to play with generators and instances/classes - structures that retain state. "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "***"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### 1. Alea Iacta Est \n",
+ "\n",
+ "(a) Using [generator functions](https://github.com/rsouza/Python_Course/blob/master/Notebooks/Python_Basic/03_Functions.ipynb), create an object that emulates an eight-sided dice (1-8) that is biased, such that the probability of this generator function returning a certain value is proportional to the value itself (i.e. the face \"6\" is 3 times more likely to come out than face \"2\"); \n",
+ "\n",
+ "
\n",
+ "\n",
+ "(b) Using [Matplotlib](https://matplotlib.org/) plt.plot or plt.hist commands, show graphically the result of 10000 casts of the die; \n",
+ "\n",
+ "(c) Modify this generator function so that it terminates automatically when all possible values (1,2,3,4,5,6,7,8) have been cast at least once. In this case, it will return the total absolute time that has elapsed since the first iteration. (hint: a function can have both **return** and **yield** commands) "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "[7]"
+ ]
+ },
+ "execution_count": 1,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# a)\n",
+ "import random\n",
+ "\n",
+ "def eight_sided_dice():\n",
+ " sides_dice = [1,2,3,4,5,6,7,8]\n",
+ " roll_dice = random.choices(sides_dice, weights = [1,2,3,4,5,6,7,8], k = 1)\n",
+ " result = roll_dice\n",
+ " return result\n",
+ "\n",
+ "eight_sided_dice()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "[[8], [4], [8], [4], [5], [8], [8], [7], [8], [7], [7], [6], [8], [5], [8], [7], [4], [7], [4], [6], [6], [8], [8], [8], [7], [5], [7], [8], [6], [5], [8], [3], [2], [5], [5], [8], [6], [7], [7], [5], [8], [8], [6], [7], [4], [6], [1], [7], [7], [8], [2], [8], [7], [8], [2], [6], [3], [5], [5], [4], [8], [7], [6], [7], [4], [5], [6], [1], [4], [4], [7], [6], [8], [6], [6], [1], [7], [5], [8], [5], [8], [6], [7], [6], [7], [2], [3], [5], [5], [4], [4], [8], [8], [1], [6], [4], [8], [2], [3], [6]]\n",
+ "[8, 4, 8, 4, 5, 8, 8, 7, 8, 7, 7, 6, 8, 5, 8, 7, 4, 7, 4, 6, 6, 8, 8, 8, 7, 5, 7, 8, 6, 5, 8, 3, 2, 5, 5, 8, 6, 7, 7, 5, 8, 8, 6, 7, 4, 6, 1, 7, 7, 8, 2, 8, 7, 8, 2, 6, 3, 5, 5, 4, 8, 7, 6, 7, 4, 5, 6, 1, 4, 4, 7, 6, 8, 6, 6, 1, 7, 5, 8, 5, 8, 6, 7, 6, 7, 2, 3, 5, 5, 4, 4, 8, 8, 1, 6, 4, 8, 2, 3, 6]\n"
+ ]
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAigAAAGdCAYAAAA44ojeAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8qNh9FAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAbyUlEQVR4nO3df5BV9X3/8deGHxuky1Z+7bLD8iMtGVMgtoMOQkzQgliqmFQnauwP/NFOOhIqRaognSnNKKgzQTvDlBYnA6hV8keDsaNpxCZCHeoEqTZKMwYrKla2NJbsAtJF8Xz/yNc7XTEmKOz9AI/HzJnJPfdzr+9z48w+PffcexuqqqoCAFCQj9V7AACA9xIoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFKdvvQf4MN555528/vrraWpqSkNDQ73HAQB+AVVVZd++fWlra8vHPvbB50hOyEB5/fXX097eXu8xAIAPYdeuXRk5cuQHrjkhA6WpqSnJTw9w0KBBdZ4GAPhFdHV1pb29vfZ3/IOckIHy7ts6gwYNEigAcIL5RS7PcJEsAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFKdvvQcAgBPNmEWP1HuE4+7l2y+q6z/fGRQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAozlEFyvLly3P22Wenqakpw4cPzxe+8IW88MILPdZUVZWlS5emra0tAwYMyHnnnZft27f3WNPd3Z158+Zl6NChGThwYC655JK89tprH/1oAICTwlEFyqZNmzJ37tw89dRT2bhxY95+++3MnDkzBw4cqK258847s2LFiqxcuTJbt25Na2trLrjgguzbt6+2Zv78+dmwYUPWr1+fJ598Mvv378/FF1+cw4cPH7sjAwBOWA1VVVUf9sH//d//neHDh2fTpk353Oc+l6qq0tbWlvnz5+fmm29O8tOzJS0tLbnjjjvy5S9/OZ2dnRk2bFjuu+++XHHFFUmS119/Pe3t7Xn00Udz4YUX/tx/bldXV5qbm9PZ2ZlBgwZ92PEB4EMZs+iReo9w3L18+0XH/DmP5u/3R7oGpbOzM0kyePDgJMnOnTvT0dGRmTNn1tY0NjZm2rRp2bJlS5Jk27Zteeutt3qsaWtry4QJE2prAIBTW98P+8CqqrJgwYKce+65mTBhQpKko6MjSdLS0tJjbUtLS1555ZXamv79++f0008/Ys27j3+v7u7udHd31253dXV92LEBgBPAhz6D8pWvfCU/+MEP8uCDDx5xX0NDQ4/bVVUdse+9PmjN8uXL09zcXNva29s/7NgAwAngQwXKvHnz8vDDD+d73/teRo4cWdvf2tqaJEecCdmzZ0/trEpra2sOHTqUvXv3/sw177V48eJ0dnbWtl27dn2YsQGAE8RRBUpVVfnKV76Sb37zm/nud7+bsWPH9rh/7NixaW1tzcaNG2v7Dh06lE2bNmXq1KlJkkmTJqVfv3491uzevTvPP/98bc17NTY2ZtCgQT02AODkdVTXoMydOzcPPPBAvvWtb6Wpqal2pqS5uTkDBgxIQ0ND5s+fn2XLlmXcuHEZN25cli1bltNOOy1XXXVVbe11112XG2+8MUOGDMngwYOzcOHCTJw4MTNmzDj2RwgAnHCOKlBWrVqVJDnvvPN67F+zZk2uvvrqJMlNN92UgwcP5vrrr8/evXszefLkPPbYY2lqaqqtv+uuu9K3b99cfvnlOXjwYKZPn561a9emT58+H+1oAICTwkf6HpR68T0oANST70H5cHrte1AAAI4HgQIAFEegAADFESgAQHE+9FfdA8DPcipcRMrx5QwKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHH61nsAgFPRmEWP1HsEKJozKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxjjpQNm/enNmzZ6etrS0NDQ156KGHetx/9dVXp6Ghocd2zjnn9FjT3d2defPmZejQoRk4cGAuueSSvPbaax/pQACAk8dRB8qBAwdy5plnZuXKlT9zzW/91m9l9+7dte3RRx/tcf/8+fOzYcOGrF+/Pk8++WT279+fiy++OIcPHz76IwAATjpH/Vs8s2bNyqxZsz5wTWNjY1pbW9/3vs7Oznz961/PfffdlxkzZiRJ7r///rS3t+fxxx/PhRdeeLQjAQAnmeNyDcoTTzyR4cOH55Of/GT+6I/+KHv27Kndt23btrz11luZOXNmbV9bW1smTJiQLVu2vO/zdXd3p6urq8cGAJy8jnmgzJo1K3/3d3+X7373u/na176WrVu35jd/8zfT3d2dJOno6Ej//v1z+umn93hcS0tLOjo63vc5ly9fnubm5trW3t5+rMcGAApy1G/x/DxXXHFF7X9PmDAhZ511VkaPHp1HHnkkl1566c98XFVVaWhoeN/7Fi9enAULFtRud3V1iRQAOIkd948ZjxgxIqNHj86OHTuSJK2trTl06FD27t3bY92ePXvS0tLyvs/R2NiYQYMG9dgAgJPXcQ+UN954I7t27cqIESOSJJMmTUq/fv2ycePG2prdu3fn+eefz9SpU4/3OADACeCo3+LZv39/XnzxxdrtnTt35tlnn83gwYMzePDgLF26NJdddllGjBiRl19+ObfcckuGDh2a3/md30mSNDc357rrrsuNN96YIUOGZPDgwVm4cGEmTpxY+1QPAHBqO+pAefrpp3P++efXbr97bcicOXOyatWqPPfcc7n33nvzk5/8JCNGjMj555+fb3zjG2lqaqo95q677krfvn1z+eWX5+DBg5k+fXrWrl2bPn36HINDAgBOdA1VVVX1HuJodXV1pbm5OZ2dna5HAU5IYxY9Uu8R4AO9fPtFx/w5j+bvt9/iAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDi9K33AADvNWbRI/UeAagzZ1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOL4NWM4Afm1X+Bk5wwKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUJyjDpTNmzdn9uzZaWtrS0NDQx566KEe91dVlaVLl6atrS0DBgzIeeedl+3bt/dY093dnXnz5mXo0KEZOHBgLrnkkrz22msf6UAAgJPHUQfKgQMHcuaZZ2blypXve/+dd96ZFStWZOXKldm6dWtaW1tzwQUXZN++fbU18+fPz4YNG7J+/fo8+eST2b9/fy6++OIcPnz4wx8JAHDS6Hu0D5g1a1ZmzZr1vvdVVZW77747S5YsyaWXXpokWbduXVpaWvLAAw/ky1/+cjo7O/P1r3899913X2bMmJEkuf/++9Pe3p7HH388F1544Uc4HADgZHBMr0HZuXNnOjo6MnPmzNq+xsbGTJs2LVu2bEmSbNu2LW+99VaPNW1tbZkwYUJtzXt1d3enq6urxwYAnLyOaaB0dHQkSVpaWnrsb2lpqd3X0dGR/v375/TTT/+Za95r+fLlaW5urm3t7e3HcmwAoDDH5VM8DQ0NPW5XVXXEvvf6oDWLFy9OZ2dnbdu1a9cxmxUAKM8xDZTW1tYkOeJMyJ49e2pnVVpbW3Po0KHs3bv3Z655r8bGxgwaNKjHBgCcvI5poIwdOzatra3ZuHFjbd+hQ4eyadOmTJ06NUkyadKk9OvXr8ea3bt35/nnn6+tAQBObUf9KZ79+/fnxRdfrN3euXNnnn322QwePDijRo3K/Pnzs2zZsowbNy7jxo3LsmXLctppp+Wqq65KkjQ3N+e6667LjTfemCFDhmTw4MFZuHBhJk6cWPtUDwBwajvqQHn66adz/vnn124vWLAgSTJnzpysXbs2N910Uw4ePJjrr78+e/fuzeTJk/PYY4+lqamp9pi77rorffv2zeWXX56DBw9m+vTpWbt2bfr06XMMDgkAONE1VFVV1XuIo9XV1ZXm5uZ0dna6HoVT0phFj9R7BOAk9/LtFx3z5zyav99+iwcAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDi9K33AHA8jFn0SL1HAOAjcAYFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAoTt96D0DvG7PokXqPAAAfyBkUAKA4AgUAKI5AAQCKI1AAgOIc80BZunRpGhoaemytra21+6uqytKlS9PW1pYBAwbkvPPOy/bt24/1GADACey4nEEZP358du/eXduee+652n133nlnVqxYkZUrV2br1q1pbW3NBRdckH379h2PUQCAE9BxCZS+ffumtbW1tg0bNizJT8+e3H333VmyZEkuvfTSTJgwIevWrcubb76ZBx544HiMAgCcgI5LoOzYsSNtbW0ZO3Zsrrzyyrz00ktJkp07d6ajoyMzZ86srW1sbMy0adOyZcuWn/l83d3d6erq6rEBACevYx4okydPzr333pvvfOc7ueeee9LR0ZGpU6fmjTfeSEdHR5KkpaWlx2NaWlpq972f5cuXp7m5uba1t7cf67EBgIIc80CZNWtWLrvsskycODEzZszII4/89FtL161bV1vT0NDQ4zFVVR2x7/9avHhxOjs7a9uuXbuO9dgAQEGO+8eMBw4cmIkTJ2bHjh21T/O892zJnj17jjir8n81NjZm0KBBPTYA4OR13AOlu7s7P/zhDzNixIiMHTs2ra2t2bhxY+3+Q4cOZdOmTZk6derxHgUAOEEc8x8LXLhwYWbPnp1Ro0Zlz549ufXWW9PV1ZU5c+akoaEh8+fPz7JlyzJu3LiMGzcuy5Yty2mnnZarrrrqWI8CAJygjnmgvPbaa/nSl76UH//4xxk2bFjOOeecPPXUUxk9enSS5KabbsrBgwdz/fXXZ+/evZk8eXIee+yxNDU1HetRAIATVENVVVW9hzhaXV1daW5uTmdnp+tRPoQxix6p9wgAFO7l2y865s95NH+//RYPAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcY75rxmfDPyYHgDUlzMoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAceoaKH/913+dsWPH5uMf/3gmTZqUf/7nf67nOABAIeoWKN/4xjcyf/78LFmyJM8880w++9nPZtasWXn11VfrNRIAUIi6BcqKFSty3XXX5Q//8A/zqU99KnfffXfa29uzatWqeo0EABSibz3+oYcOHcq2bduyaNGiHvtnzpyZLVu2HLG+u7s73d3dtdudnZ1Jkq6uruMy3zvdbx6X5wWAE8Xx+Bv77nNWVfVz19YlUH784x/n8OHDaWlp6bG/paUlHR0dR6xfvnx5/vIv//KI/e3t7cdtRgA4lTXfffyee9++fWlubv7ANXUJlHc1NDT0uF1V1RH7kmTx4sVZsGBB7fY777yT//mf/8mQIUPed/1H0dXVlfb29uzatSuDBg06ps99IjjVjz/xGpzqx594DRz/qX38yfF7Daqqyr59+9LW1vZz19YlUIYOHZo+ffoccbZkz549R5xVSZLGxsY0Njb22PfLv/zLx3PEDBo06JT9FzNx/InX4FQ//sRr4PhP7eNPjs9r8PPOnLyrLhfJ9u/fP5MmTcrGjRt77N+4cWOmTp1aj5EAgILU7S2eBQsW5Pd///dz1llnZcqUKVm9enVeffXV/PEf/3G9RgIAClG3QLniiivyxhtv5Ktf/Wp2796dCRMm5NFHH83o0aPrNVKSn76d9Bd/8RdHvKV0qjjVjz/xGpzqx594DRz/qX38SRmvQUP1i3zWBwCgF/ktHgCgOAIFACiOQAEAiiNQAIDiCJT/b/PmzZk9e3ba2trS0NCQhx56qN4j9arly5fn7LPPTlNTU4YPH54vfOELeeGFF+o9Vq9ZtWpVPv3pT9e+lGjKlCn59re/Xe+x6mb58uVpaGjI/Pnz6z1Kr1m6dGkaGhp6bK2trfUeq9f953/+Z37v934vQ4YMyWmnnZZf//Vfz7Zt2+o9Vq8YM2bMEf8ONDQ0ZO7cufUerVe8/fbb+fM///OMHTs2AwYMyCc+8Yl89atfzTvvvFOXeer6VfclOXDgQM4888xcc801ueyyy+o9Tq/btGlT5s6dm7PPPjtvv/12lixZkpkzZ+bf//3fM3DgwHqPd9yNHDkyt99+e371V381SbJu3bp8/vOfzzPPPJPx48fXebretXXr1qxevTqf/vSn6z1Krxs/fnwef/zx2u0+ffrUcZret3fv3nzmM5/J+eefn29/+9sZPnx4/uM//uO4f3N3KbZu3ZrDhw/Xbj///PO54IIL8sUvfrGOU/WeO+64I3/zN3+TdevWZfz48Xn66adzzTXXpLm5OTfccEOvzyNQ/r9Zs2Zl1qxZ9R6jbv7xH/+xx+01a9Zk+PDh2bZtWz73uc/VaareM3v27B63b7vttqxatSpPPfXUKRUo+/fvz+/+7u/mnnvuya233lrvcXpd3759T8mzJu+644470t7enjVr1tT2jRkzpn4D9bJhw4b1uH377bfnV37lVzJt2rQ6TdS7/uVf/iWf//znc9FFFyX56f/3Dz74YJ5++um6zOMtHt5XZ2dnkmTw4MF1nqT3HT58OOvXr8+BAwcyZcqUeo/Tq+bOnZuLLrooM2bMqPcodbFjx460tbVl7NixufLKK/PSSy/Ve6Re9fDDD+ess87KF7/4xQwfPjy/8Ru/kXvuuafeY9XFoUOHcv/99+faa6895j9KW6pzzz03//RP/5Qf/ehHSZJ/+7d/y5NPPpnf/u3frss8zqBwhKqqsmDBgpx77rmZMGFCvcfpNc8991ymTJmS//3f/80v/dIvZcOGDfm1X/u1eo/Va9avX59//dd/zdatW+s9Sl1Mnjw59957bz75yU/mv/7rv3Lrrbdm6tSp2b59e4YMGVLv8XrFSy+9lFWrVmXBggW55ZZb8v3vfz9/8id/ksbGxvzBH/xBvcfrVQ899FB+8pOf5Oqrr673KL3m5ptvTmdnZ84444z06dMnhw8fzm233ZYvfelL9Rmo4ghJqg0bNtR7jLq5/vrrq9GjR1e7du2q9yi9qru7u9qxY0e1devWatGiRdXQoUOr7du313usXvHqq69Ww4cPr5599tnavmnTplU33HBD/Yaqs/3791ctLS3V1772tXqP0mv69etXTZkypce+efPmVeecc06dJqqfmTNnVhdffHG9x+hVDz74YDVy5MjqwQcfrH7wgx9U9957bzV48OBq7dq1dZnHGRR6mDdvXh5++OFs3rw5I0eOrPc4vap///61i2TPOuusbN26NX/1V3+Vv/3bv63zZMfftm3bsmfPnkyaNKm27/Dhw9m8eXNWrlyZ7u7uU+6C0YEDB2bixInZsWNHvUfpNSNGjDjirOGnPvWp/P3f/32dJqqPV155JY8//ni++c1v1nuUXvVnf/ZnWbRoUa688sokycSJE/PKK69k+fLlmTNnTq/PI1BI8tO3debNm5cNGzbkiSeeyNixY+s9Ut1VVZXu7u56j9Erpk+fnueee67HvmuuuSZnnHFGbr755lMuTpKku7s7P/zhD/PZz3623qP0ms985jNHfL3Aj370o7r/iGtve/dDAu9eLHqqePPNN/Oxj/W8NLVPnz4+Zlxv+/fvz4svvli7vXPnzjz77LMZPHhwRo0aVcfJesfcuXPzwAMP5Fvf+laamprS0dGRJGlubs6AAQPqPN3xd8stt2TWrFlpb2/Pvn37sn79+jzxxBNHfLrpZNXU1HTE9UYDBw7MkCFDTpnrkBYuXJjZs2dn1KhR2bNnT2699dZ0dXXV5b8c6+VP//RPM3Xq1CxbtiyXX355vv/972f16tVZvXp1vUfrNe+8807WrFmTOXPmpG/fU+tP5OzZs3Pbbbdl1KhRGT9+fJ555pmsWLEi1157bX0GqssbSwX63ve+VyU5YpszZ069R+sV73fsSao1a9bUe7Rece2111ajR4+u+vfvXw0bNqyaPn169dhjj9V7rLo61a5BueKKK6oRI0ZU/fr1q9ra2qpLL730lLkG6f/6h3/4h2rChAlVY2NjdcYZZ1SrV6+u90i96jvf+U6VpHrhhRfqPUqv6+rqqm644YZq1KhR1cc//vHqE5/4RLVkyZKqu7u7LvM0VFVV1SeNAADen+9BAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKM7/AyaH/Eiy26fgAAAAAElFTkSuQmCC\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# b)\n",
+ "import matplotlib.pyplot as plt\n",
+ "\n",
+ "tenthousand_rolls = [eight_sided_dice() for roll_dice in range(1, 1001)]\n",
+ "print(tenthousand_rolls[0:100])\n",
+ "\n",
+ "tenthousand_convert = [i for sublist in tenthousand_rolls for i in sublist]\n",
+ "print(tenthousand_convert[0:100])\n",
+ "\n",
+ "plt.hist(tenthousand_convert, bins = 8)\n",
+ "plt.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 30,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "3.0994415283203125e-05"
+ ]
+ },
+ "execution_count": 30,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# c)\n",
+ "import time\n",
+ "\n",
+ "def modify_eight_sided_dice():\n",
+ " result = []\n",
+ " values = set()\n",
+ " time_start = time.time()\n",
+ " while len(values) < 8:\n",
+ " value = random.randint(1,8)\n",
+ " values.add(value)\n",
+ " time_end = time.time()\n",
+ " absolute_elapsed = time_end - time_start\n",
+ " return absolute_elapsed\n",
+ " \n",
+ "modify_eight_sided_dice()\n",
+ " "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### 2. A ticket to the first Class \n",
+ "\n",
+ "+ Create a Class called \"Elevator\". Each instance of this class receives as parameters the number of floors in the building and starts the elevator on the lowest floor. \n",
+ "+ This Class should have methods and properties to allow the elevator to:\n",
+ "
\n",
+ " + Receive a call - user(s) press a button to go to specific floor(s); \n",
+ " + Receive a floor as a destination - when users enter the elevator, each one may press a button to choose destination floor; \n",
+ " + Store and inform which floor the elevator is at each moment(consider that trips for consecutive floors takes 5 seconds, and stopping takes 10 seconds); \n",
+ " + Store and inform which users are in the elevator; \n",
+ " + Store and inform the sequence of floors yet to be visited; \n",
+ " + Store the number of times the elevator stopped in each floor (passing through the floor without \"stopping\" on the floor does not count); \n",
+ " + Refuses commands to go to inexistent floors. \n",
+ "
\n",
+ "+ Simulate the behavior of the elevator serving ten users, each one calling from a random floor, and chosing a random destination floor. \n",
+ "+ Graphically illustrate the current elevator position for the requested simulation. \n",
+ "+ (BONUS) Create a smart building simulator, controlling calls made to n > 1 elevators and routing elevator properly. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# I tried to look into some elevator simulations\n",
+ "# online but the task was too hard for me :( "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.9.13"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/Assignments/EN/Assignment_6.ipynb b/Assignments/EN/Assignment_6.ipynb
index effa8fa8..ffd2d2d7 100644
--- a/Assignments/EN/Assignment_6.ipynb
+++ b/Assignments/EN/Assignment_6.ipynb
@@ -39,29 +39,104 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 1,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "[7]"
+ ]
+ },
+ "execution_count": 1,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
- "# a)"
+ "# a)\n",
+ "import random\n",
+ "\n",
+ "def eight_sided_dice():\n",
+ " sides_dice = [1,2,3,4,5,6,7,8]\n",
+ " roll_dice = random.choices(sides_dice, weights = [1,2,3,4,5,6,7,8], k = 1)\n",
+ " result = roll_dice\n",
+ " return result\n",
+ "\n",
+ "eight_sided_dice()"
]
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 13,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "[[8], [4], [8], [4], [5], [8], [8], [7], [8], [7], [7], [6], [8], [5], [8], [7], [4], [7], [4], [6], [6], [8], [8], [8], [7], [5], [7], [8], [6], [5], [8], [3], [2], [5], [5], [8], [6], [7], [7], [5], [8], [8], [6], [7], [4], [6], [1], [7], [7], [8], [2], [8], [7], [8], [2], [6], [3], [5], [5], [4], [8], [7], [6], [7], [4], [5], [6], [1], [4], [4], [7], [6], [8], [6], [6], [1], [7], [5], [8], [5], [8], [6], [7], [6], [7], [2], [3], [5], [5], [4], [4], [8], [8], [1], [6], [4], [8], [2], [3], [6]]\n",
+ "[8, 4, 8, 4, 5, 8, 8, 7, 8, 7, 7, 6, 8, 5, 8, 7, 4, 7, 4, 6, 6, 8, 8, 8, 7, 5, 7, 8, 6, 5, 8, 3, 2, 5, 5, 8, 6, 7, 7, 5, 8, 8, 6, 7, 4, 6, 1, 7, 7, 8, 2, 8, 7, 8, 2, 6, 3, 5, 5, 4, 8, 7, 6, 7, 4, 5, 6, 1, 4, 4, 7, 6, 8, 6, 6, 1, 7, 5, 8, 5, 8, 6, 7, 6, 7, 2, 3, 5, 5, 4, 4, 8, 8, 1, 6, 4, 8, 2, 3, 6]\n"
+ ]
+ },
+ {
+ "data": {
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAAigAAAGdCAYAAAA44ojeAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8qNh9FAAAACXBIWXMAAA9hAAAPYQGoP6dpAAAbyUlEQVR4nO3df5BV9X3/8deGHxuky1Z+7bLD8iMtGVMgtoMOQkzQgliqmFQnauwP/NFOOhIqRaognSnNKKgzQTvDlBYnA6hV8keDsaNpxCZCHeoEqTZKMwYrKla2NJbsAtJF8Xz/yNc7XTEmKOz9AI/HzJnJPfdzr+9z48w+PffcexuqqqoCAFCQj9V7AACA9xIoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFKdvvQf4MN555528/vrraWpqSkNDQ73HAQB+AVVVZd++fWlra8vHPvbB50hOyEB5/fXX097eXu8xAIAPYdeuXRk5cuQHrjkhA6WpqSnJTw9w0KBBdZ4GAPhFdHV1pb29vfZ3/IOckIHy7ts6gwYNEigAcIL5RS7PcJEsAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFKdvvQcAgBPNmEWP1HuE4+7l2y+q6z/fGRQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAozlEFyvLly3P22Wenqakpw4cPzxe+8IW88MILPdZUVZWlS5emra0tAwYMyHnnnZft27f3WNPd3Z158+Zl6NChGThwYC655JK89tprH/1oAICTwlEFyqZNmzJ37tw89dRT2bhxY95+++3MnDkzBw4cqK258847s2LFiqxcuTJbt25Na2trLrjgguzbt6+2Zv78+dmwYUPWr1+fJ598Mvv378/FF1+cw4cPH7sjAwBOWA1VVVUf9sH//d//neHDh2fTpk353Oc+l6qq0tbWlvnz5+fmm29O8tOzJS0tLbnjjjvy5S9/OZ2dnRk2bFjuu+++XHHFFUmS119/Pe3t7Xn00Udz4YUX/tx/bldXV5qbm9PZ2ZlBgwZ92PEB4EMZs+iReo9w3L18+0XH/DmP5u/3R7oGpbOzM0kyePDgJMnOnTvT0dGRmTNn1tY0NjZm2rRp2bJlS5Jk27Zteeutt3qsaWtry4QJE2prAIBTW98P+8CqqrJgwYKce+65mTBhQpKko6MjSdLS0tJjbUtLS1555ZXamv79++f0008/Ys27j3+v7u7udHd31253dXV92LEBgBPAhz6D8pWvfCU/+MEP8uCDDx5xX0NDQ4/bVVUdse+9PmjN8uXL09zcXNva29s/7NgAwAngQwXKvHnz8vDDD+d73/teRo4cWdvf2tqaJEecCdmzZ0/trEpra2sOHTqUvXv3/sw177V48eJ0dnbWtl27dn2YsQGAE8RRBUpVVfnKV76Sb37zm/nud7+bsWPH9rh/7NixaW1tzcaNG2v7Dh06lE2bNmXq1KlJkkmTJqVfv3491uzevTvPP/98bc17NTY2ZtCgQT02AODkdVTXoMydOzcPPPBAvvWtb6Wpqal2pqS5uTkDBgxIQ0ND5s+fn2XLlmXcuHEZN25cli1bltNOOy1XXXVVbe11112XG2+8MUOGDMngwYOzcOHCTJw4MTNmzDj2RwgAnHCOKlBWrVqVJDnvvPN67F+zZk2uvvrqJMlNN92UgwcP5vrrr8/evXszefLkPPbYY2lqaqqtv+uuu9K3b99cfvnlOXjwYKZPn561a9emT58+H+1oAICTwkf6HpR68T0oANST70H5cHrte1AAAI4HgQIAFEegAADFESgAQHE+9FfdA8DPcipcRMrx5QwKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHH61nsAgFPRmEWP1HsEKJozKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxjjpQNm/enNmzZ6etrS0NDQ156KGHetx/9dVXp6Ghocd2zjnn9FjT3d2defPmZejQoRk4cGAuueSSvPbaax/pQACAk8dRB8qBAwdy5plnZuXKlT9zzW/91m9l9+7dte3RRx/tcf/8+fOzYcOGrF+/Pk8++WT279+fiy++OIcPHz76IwAATjpH/Vs8s2bNyqxZsz5wTWNjY1pbW9/3vs7Oznz961/PfffdlxkzZiRJ7r///rS3t+fxxx/PhRdeeLQjAQAnmeNyDcoTTzyR4cOH55Of/GT+6I/+KHv27Kndt23btrz11luZOXNmbV9bW1smTJiQLVu2vO/zdXd3p6urq8cGAJy8jnmgzJo1K3/3d3+X7373u/na176WrVu35jd/8zfT3d2dJOno6Ej//v1z+umn93hcS0tLOjo63vc5ly9fnubm5trW3t5+rMcGAApy1G/x/DxXXHFF7X9PmDAhZ511VkaPHp1HHnkkl1566c98XFVVaWhoeN/7Fi9enAULFtRud3V1iRQAOIkd948ZjxgxIqNHj86OHTuSJK2trTl06FD27t3bY92ePXvS0tLyvs/R2NiYQYMG9dgAgJPXcQ+UN954I7t27cqIESOSJJMmTUq/fv2ycePG2prdu3fn+eefz9SpU4/3OADACeCo3+LZv39/XnzxxdrtnTt35tlnn83gwYMzePDgLF26NJdddllGjBiRl19+ObfcckuGDh2a3/md30mSNDc357rrrsuNN96YIUOGZPDgwVm4cGEmTpxY+1QPAHBqO+pAefrpp3P++efXbr97bcicOXOyatWqPPfcc7n33nvzk5/8JCNGjMj555+fb3zjG2lqaqo95q677krfvn1z+eWX5+DBg5k+fXrWrl2bPn36HINDAgBOdA1VVVX1HuJodXV1pbm5OZ2dna5HAU5IYxY9Uu8R4AO9fPtFx/w5j+bvt9/iAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDi9K33AADvNWbRI/UeAagzZ1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOL4NWM4Afm1X+Bk5wwKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUJyjDpTNmzdn9uzZaWtrS0NDQx566KEe91dVlaVLl6atrS0DBgzIeeedl+3bt/dY093dnXnz5mXo0KEZOHBgLrnkkrz22msf6UAAgJPHUQfKgQMHcuaZZ2blypXve/+dd96ZFStWZOXKldm6dWtaW1tzwQUXZN++fbU18+fPz4YNG7J+/fo8+eST2b9/fy6++OIcPnz4wx8JAHDS6Hu0D5g1a1ZmzZr1vvdVVZW77747S5YsyaWXXpokWbduXVpaWvLAAw/ky1/+cjo7O/P1r3899913X2bMmJEkuf/++9Pe3p7HH388F1544Uc4HADgZHBMr0HZuXNnOjo6MnPmzNq+xsbGTJs2LVu2bEmSbNu2LW+99VaPNW1tbZkwYUJtzXt1d3enq6urxwYAnLyOaaB0dHQkSVpaWnrsb2lpqd3X0dGR/v375/TTT/+Za95r+fLlaW5urm3t7e3HcmwAoDDH5VM8DQ0NPW5XVXXEvvf6oDWLFy9OZ2dnbdu1a9cxmxUAKM8xDZTW1tYkOeJMyJ49e2pnVVpbW3Po0KHs3bv3Z655r8bGxgwaNKjHBgCcvI5poIwdOzatra3ZuHFjbd+hQ4eyadOmTJ06NUkyadKk9OvXr8ea3bt35/nnn6+tAQBObUf9KZ79+/fnxRdfrN3euXNnnn322QwePDijRo3K/Pnzs2zZsowbNy7jxo3LsmXLctppp+Wqq65KkjQ3N+e6667LjTfemCFDhmTw4MFZuHBhJk6cWPtUDwBwajvqQHn66adz/vnn124vWLAgSTJnzpysXbs2N910Uw4ePJjrr78+e/fuzeTJk/PYY4+lqamp9pi77rorffv2zeWXX56DBw9m+vTpWbt2bfr06XMMDgkAONE1VFVV1XuIo9XV1ZXm5uZ0dna6HoVT0phFj9R7BOAk9/LtFx3z5zyav99+iwcAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDi9K33AHA8jFn0SL1HAOAjcAYFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKI5AAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAoTt96D0DvG7PokXqPAAAfyBkUAKA4AgUAKI5AAQCKI1AAgOIc80BZunRpGhoaemytra21+6uqytKlS9PW1pYBAwbkvPPOy/bt24/1GADACey4nEEZP358du/eXduee+652n133nlnVqxYkZUrV2br1q1pbW3NBRdckH379h2PUQCAE9BxCZS+ffumtbW1tg0bNizJT8+e3H333VmyZEkuvfTSTJgwIevWrcubb76ZBx544HiMAgCcgI5LoOzYsSNtbW0ZO3Zsrrzyyrz00ktJkp07d6ajoyMzZ86srW1sbMy0adOyZcuWn/l83d3d6erq6rEBACevYx4okydPzr333pvvfOc7ueeee9LR0ZGpU6fmjTfeSEdHR5KkpaWlx2NaWlpq972f5cuXp7m5uba1t7cf67EBgIIc80CZNWtWLrvsskycODEzZszII4/89FtL161bV1vT0NDQ4zFVVR2x7/9avHhxOjs7a9uuXbuO9dgAQEGO+8eMBw4cmIkTJ2bHjh21T/O892zJnj17jjir8n81NjZm0KBBPTYA4OR13AOlu7s7P/zhDzNixIiMHTs2ra2t2bhxY+3+Q4cOZdOmTZk6derxHgUAOEEc8x8LXLhwYWbPnp1Ro0Zlz549ufXWW9PV1ZU5c+akoaEh8+fPz7JlyzJu3LiMGzcuy5Yty2mnnZarrrrqWI8CAJygjnmgvPbaa/nSl76UH//4xxk2bFjOOeecPPXUUxk9enSS5KabbsrBgwdz/fXXZ+/evZk8eXIee+yxNDU1HetRAIATVENVVVW9hzhaXV1daW5uTmdnp+tRPoQxix6p9wgAFO7l2y865s95NH+//RYPAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcY75rxmfDPyYHgDUlzMoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAcQQKAFAcgQIAFEegAADFESgAQHEECgBQHIECABRHoAAAxREoAEBxBAoAUByBAgAUR6AAAMURKABAceoaKH/913+dsWPH5uMf/3gmTZqUf/7nf67nOABAIeoWKN/4xjcyf/78LFmyJM8880w++9nPZtasWXn11VfrNRIAUIi6BcqKFSty3XXX5Q//8A/zqU99KnfffXfa29uzatWqeo0EABSibz3+oYcOHcq2bduyaNGiHvtnzpyZLVu2HLG+u7s73d3dtdudnZ1Jkq6uruMy3zvdbx6X5wWAE8Xx+Bv77nNWVfVz19YlUH784x/n8OHDaWlp6bG/paUlHR0dR6xfvnx5/vIv//KI/e3t7cdtRgA4lTXfffyee9++fWlubv7ANXUJlHc1NDT0uF1V1RH7kmTx4sVZsGBB7fY777yT//mf/8mQIUPed/1H0dXVlfb29uzatSuDBg06ps99IjjVjz/xGpzqx594DRz/qX38yfF7Daqqyr59+9LW1vZz19YlUIYOHZo+ffoccbZkz549R5xVSZLGxsY0Njb22PfLv/zLx3PEDBo06JT9FzNx/InX4FQ//sRr4PhP7eNPjs9r8PPOnLyrLhfJ9u/fP5MmTcrGjRt77N+4cWOmTp1aj5EAgILU7S2eBQsW5Pd///dz1llnZcqUKVm9enVeffXV/PEf/3G9RgIAClG3QLniiivyxhtv5Ktf/Wp2796dCRMm5NFHH83o0aPrNVKSn76d9Bd/8RdHvKV0qjjVjz/xGpzqx594DRz/qX38SRmvQUP1i3zWBwCgF/ktHgCgOAIFACiOQAEAiiNQAIDiCJT/b/PmzZk9e3ba2trS0NCQhx56qN4j9arly5fn7LPPTlNTU4YPH54vfOELeeGFF+o9Vq9ZtWpVPv3pT9e+lGjKlCn59re/Xe+x6mb58uVpaGjI/Pnz6z1Kr1m6dGkaGhp6bK2trfUeq9f953/+Z37v934vQ4YMyWmnnZZf//Vfz7Zt2+o9Vq8YM2bMEf8ONDQ0ZO7cufUerVe8/fbb+fM///OMHTs2AwYMyCc+8Yl89atfzTvvvFOXeer6VfclOXDgQM4888xcc801ueyyy+o9Tq/btGlT5s6dm7PPPjtvv/12lixZkpkzZ+bf//3fM3DgwHqPd9yNHDkyt99+e371V381SbJu3bp8/vOfzzPPPJPx48fXebretXXr1qxevTqf/vSn6z1Krxs/fnwef/zx2u0+ffrUcZret3fv3nzmM5/J+eefn29/+9sZPnx4/uM//uO4f3N3KbZu3ZrDhw/Xbj///PO54IIL8sUvfrGOU/WeO+64I3/zN3+TdevWZfz48Xn66adzzTXXpLm5OTfccEOvzyNQ/r9Zs2Zl1qxZ9R6jbv7xH/+xx+01a9Zk+PDh2bZtWz73uc/VaareM3v27B63b7vttqxatSpPPfXUKRUo+/fvz+/+7u/mnnvuya233lrvcXpd3759T8mzJu+644470t7enjVr1tT2jRkzpn4D9bJhw4b1uH377bfnV37lVzJt2rQ6TdS7/uVf/iWf//znc9FFFyX56f/3Dz74YJ5++um6zOMtHt5XZ2dnkmTw4MF1nqT3HT58OOvXr8+BAwcyZcqUeo/Tq+bOnZuLLrooM2bMqPcodbFjx460tbVl7NixufLKK/PSSy/Ve6Re9fDDD+ess87KF7/4xQwfPjy/8Ru/kXvuuafeY9XFoUOHcv/99+faa6895j9KW6pzzz03//RP/5Qf/ehHSZJ/+7d/y5NPPpnf/u3frss8zqBwhKqqsmDBgpx77rmZMGFCvcfpNc8991ymTJmS//3f/80v/dIvZcOGDfm1X/u1eo/Va9avX59//dd/zdatW+s9Sl1Mnjw59957bz75yU/mv/7rv3Lrrbdm6tSp2b59e4YMGVLv8XrFSy+9lFWrVmXBggW55ZZb8v3vfz9/8id/ksbGxvzBH/xBvcfrVQ899FB+8pOf5Oqrr673KL3m5ptvTmdnZ84444z06dMnhw8fzm233ZYvfelL9Rmo4ghJqg0bNtR7jLq5/vrrq9GjR1e7du2q9yi9qru7u9qxY0e1devWatGiRdXQoUOr7du313usXvHqq69Ww4cPr5599tnavmnTplU33HBD/Yaqs/3791ctLS3V1772tXqP0mv69etXTZkypce+efPmVeecc06dJqqfmTNnVhdffHG9x+hVDz74YDVy5MjqwQcfrH7wgx9U9957bzV48OBq7dq1dZnHGRR6mDdvXh5++OFs3rw5I0eOrPc4vap///61i2TPOuusbN26NX/1V3+Vv/3bv63zZMfftm3bsmfPnkyaNKm27/Dhw9m8eXNWrlyZ7u7uU+6C0YEDB2bixInZsWNHvUfpNSNGjDjirOGnPvWp/P3f/32dJqqPV155JY8//ni++c1v1nuUXvVnf/ZnWbRoUa688sokycSJE/PKK69k+fLlmTNnTq/PI1BI8tO3debNm5cNGzbkiSeeyNixY+s9Ut1VVZXu7u56j9Erpk+fnueee67HvmuuuSZnnHFGbr755lMuTpKku7s7P/zhD/PZz3623qP0ms985jNHfL3Aj370o7r/iGtve/dDAu9eLHqqePPNN/Oxj/W8NLVPnz4+Zlxv+/fvz4svvli7vXPnzjz77LMZPHhwRo0aVcfJesfcuXPzwAMP5Fvf+laamprS0dGRJGlubs6AAQPqPN3xd8stt2TWrFlpb2/Pvn37sn79+jzxxBNHfLrpZNXU1HTE9UYDBw7MkCFDTpnrkBYuXJjZs2dn1KhR2bNnT2699dZ0dXXV5b8c6+VP//RPM3Xq1CxbtiyXX355vv/972f16tVZvXp1vUfrNe+8807WrFmTOXPmpG/fU+tP5OzZs3Pbbbdl1KhRGT9+fJ555pmsWLEi1157bX0GqssbSwX63ve+VyU5YpszZ069R+sV73fsSao1a9bUe7Rece2111ajR4+u+vfvXw0bNqyaPn169dhjj9V7rLo61a5BueKKK6oRI0ZU/fr1q9ra2qpLL730lLkG6f/6h3/4h2rChAlVY2NjdcYZZ1SrV6+u90i96jvf+U6VpHrhhRfqPUqv6+rqqm644YZq1KhR1cc//vHqE5/4RLVkyZKqu7u7LvM0VFVV1SeNAADen+9BAQCKI1AAgOIIFACgOAIFACiOQAEAiiNQAIDiCBQAoDgCBQAojkABAIojUACA4ggUAKA4AgUAKM7/AyaH/Eiy26fgAAAAAElFTkSuQmCC\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
"source": [
- "# b)"
+ "# b)\n",
+ "import matplotlib.pyplot as plt\n",
+ "\n",
+ "tenthousand_rolls = [eight_sided_dice() for roll_dice in range(1, 1001)]\n",
+ "print(tenthousand_rolls[0:100])\n",
+ "\n",
+ "tenthousand_convert = [i for sublist in tenthousand_rolls for i in sublist]\n",
+ "print(tenthousand_convert[0:100])\n",
+ "\n",
+ "plt.hist(tenthousand_convert, bins = 8)\n",
+ "plt.show()"
]
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 30,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "3.0994415283203125e-05"
+ ]
+ },
+ "execution_count": 30,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
- "# c)"
+ "# c)\n",
+ "import time\n",
+ "\n",
+ "def modify_eight_sided_dice():\n",
+ " result = []\n",
+ " values = set()\n",
+ " time_start = time.time()\n",
+ " while len(values) < 8:\n",
+ " value = random.randint(1,8)\n",
+ " values.add(value)\n",
+ " time_end = time.time()\n",
+ " absolute_elapsed = time_end - time_start\n",
+ " return absolute_elapsed\n",
+ " \n",
+ "modify_eight_sided_dice()\n",
+ " "
]
},
{
@@ -124,7 +199,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
- "version": "3.10.6"
+ "version": "3.9.13"
}
},
"nbformat": 4,