diff --git a/README.md b/README.md
index 4cadded..fb7e533 100644
--- a/README.md
+++ b/README.md
@@ -1,151 +1,32 @@
-# Python interface to Stanford Core NLP tools v1.3.3
+# A Python wrapper for the Java Stanford Core NLP tools
-This is a Python wrapper for Stanford University's NLP group's Java-based [CoreNLP tools](http://nlp.stanford.edu/software/corenlp.shtml). It can either be imported as a module or run as a JSON-RPC server. Because it uses many large trained models (requiring 3GB RAM on 64-bit machines and usually a few minutes loading time), most applications will probably want to run it as a server.
+This is a fork of [stanford-corenlp-python](https://github.com/dasmith/stanford-corenlp-python), originally written by Dustin Smith and it incorporates the fixes made by Hioroyoshi Komatsu [corenlp-python] (https://bitbucket.org/torotoki/corenlp-python).
+## New changes:
- * Python interface to Stanford CoreNLP tools: tagging, phrase-structure parsing, dependency parsing, named entity resolution, and coreference resolution.
- * Runs an JSON-RPC server that wraps the Java server and outputs JSON.
- * Outputs parse trees which can be used by [nltk](http://nltk.googlecode.com/svn/trunk/doc/howto/tree.html).
+The original wrapper only worked for extreemly short texts and it did not accept files. This new version cleans the raw text files that are placed in the "raw_text" folder, places the cleaned files into the "clean_text" folder, runs the Stanford tools on those cleaned files and creates a large xml file which is placed in the xml folder. The "parse_xml_output()" calls the Stanford tools and parses the xml file to create a python object that is identical to the object that was created in the old version, except that the text length is now unlimited. All changes were mad to one file: "corenlp.py", which can by found in the "corenlp" folder. For more information, please consult the "README" file (by Hioroyoshi Komatsu) in the "corenlp-python" folder! I am constantly working on this project as these tools help me in my work and I welcome any feedback [jac2130@columbia.edu].
+## New Requirements
+ * [xmltodict](https://github.com/martinblech/xmltodict)
-It requires [pexpect](http://www.noah.org/wiki/pexpect) and (optionally) [unidecode](http://pypi.python.org/pypi/Unidecode) to handle non-ASCII text. This script includes and uses code from [jsonrpc](http://www.simple-is-better.org/rpc/) and [python-progressbar](http://code.google.com/p/python-progressbar/).
+## To use the new feature:
-It runs the Stanford CoreNLP jar in a separate process, communicates with the java process using its command-line interface, and makes assumptions about the output of the parser in order to parse it into a Python dict object and transfer it using JSON. The parser will break if the output changes significantly, but it has been tested on **Core NLP tools version 1.3.3** released 2012-07-09.
+ import sys
-## Download and Usage
+ sys.path.append("[full-path]/corenlp-wrapper/corenlp")
-To use this program you must [download](http://nlp.stanford.edu/software/corenlp.shtml#Download) and unpack the tgz file containing Stanford's CoreNLP package. By default, `corenlp.py` looks for the Stanford Core NLP folder as a subdirectory of where the script is being run.
+ from collections import OrderedDict
-In other words:
+ from corenlp import StanfordCoreNLP
- sudo pip install pexpect unidecode # unidecode is optional
- git clone git://github.com/dasmith/stanford-corenlp-python.git
- cd stanford-corenlp-python
- wget http://nlp.stanford.edu/software/stanford-corenlp-2012-07-09.tgz
- tar xvfz stanford-corenlp-2012-07-09.tgz
+ corenlp_dir = "[full-path]/corenlp-wrapper/stanford-corenlp-full-2013-04-04"
-Then, to launch a server:
+ corenlp = StanfordCoreNLP(corenlp_dir)
- python corenlp.py
+ parse_dict=eval(corenlp.parse())
-Optionally, you can specify a host or port:
+If you instead type:
- python corenlp.py -H 0.0.0.0 -p 3456
-
-That will run a public JSON-RPC server on port 3456.
-
-Assuming you are running on port 8080, the code in `client.py` shows an example parse:
-
- import jsonrpc
- from simplejson import loads
- server = jsonrpc.ServerProxy(jsonrpc.JsonRpc20(),
- jsonrpc.TransportTcpIp(addr=("127.0.0.1", 8080)))
-
- result = loads(server.parse("Hello world. It is so beautiful"))
- print "Result", result
-
-That returns a dictionary containing the keys `sentences` and (when applicable) `corefs`. The key `sentences` contains a list of dictionaries for each sentence, which contain `parsetree`, `text`, `tuples` containing the dependencies, and `words`, containing information about parts of speech, NER, etc:
-
- {u'sentences': [{u'parsetree': u'(ROOT (S (VP (NP (INTJ (UH Hello)) (NP (NN world)))) (. !)))',
- u'text': u'Hello world!',
- u'tuples': [[u'dep', u'world', u'Hello'],
- [u'root', u'ROOT', u'world']],
- u'words': [[u'Hello',
- {u'CharacterOffsetBegin': u'0',
- u'CharacterOffsetEnd': u'5',
- u'Lemma': u'hello',
- u'NamedEntityTag': u'O',
- u'PartOfSpeech': u'UH'}],
- [u'world',
- {u'CharacterOffsetBegin': u'6',
- u'CharacterOffsetEnd': u'11',
- u'Lemma': u'world',
- u'NamedEntityTag': u'O',
- u'PartOfSpeech': u'NN'}],
- [u'!',
- {u'CharacterOffsetBegin': u'11',
- u'CharacterOffsetEnd': u'12',
- u'Lemma': u'!',
- u'NamedEntityTag': u'O',
- u'PartOfSpeech': u'.'}]]},
- {u'parsetree': u'(ROOT (S (NP (PRP It)) (VP (VBZ is) (ADJP (RB so) (JJ beautiful))) (. .)))',
- u'text': u'It is so beautiful.',
- u'tuples': [[u'nsubj', u'beautiful', u'It'],
- [u'cop', u'beautiful', u'is'],
- [u'advmod', u'beautiful', u'so'],
- [u'root', u'ROOT', u'beautiful']],
- u'words': [[u'It',
- {u'CharacterOffsetBegin': u'14',
- u'CharacterOffsetEnd': u'16',
- u'Lemma': u'it',
- u'NamedEntityTag': u'O',
- u'PartOfSpeech': u'PRP'}],
- [u'is',
- {u'CharacterOffsetBegin': u'17',
- u'CharacterOffsetEnd': u'19',
- u'Lemma': u'be',
- u'NamedEntityTag': u'O',
- u'PartOfSpeech': u'VBZ'}],
- [u'so',
- {u'CharacterOffsetBegin': u'20',
- u'CharacterOffsetEnd': u'22',
- u'Lemma': u'so',
- u'NamedEntityTag': u'O',
- u'PartOfSpeech': u'RB'}],
- [u'beautiful',
- {u'CharacterOffsetBegin': u'23',
- u'CharacterOffsetEnd': u'32',
- u'Lemma': u'beautiful',
- u'NamedEntityTag': u'O',
- u'PartOfSpeech': u'JJ'}],
- [u'.',
- {u'CharacterOffsetBegin': u'32',
- u'CharacterOffsetEnd': u'33',
- u'Lemma': u'.',
- u'NamedEntityTag': u'O',
- u'PartOfSpeech': u'.'}]]}],
- u'coref': [[[[u'It', 1, 0, 0, 1], [u'Hello world', 0, 1, 0, 2]]]]}
-
-To use it in a regular script or to edit/debug it (because errors via RPC are opaque), load the module instead:
-
- from corenlp import *
- corenlp = StanfordCoreNLP() # wait a few minutes...
- corenlp.parse("Parse it")
-
-
-
-
-## Questions
-
-**Stanford CoreNLP tools require a large amount of free memory**. Java 5+ uses about 50% more RAM on 64-bit machines than 32-bit machines. 32-bit machine users can lower the memory requirements by changing `-Xmx3g` to `-Xmx2g` or even less.
-If pexpect timesout while loading models, check to make sure you have enough memory and can run the server alone without your kernel killing the java process:
-
- java -cp stanford-corenlp-2012-07-09.jar:stanford-corenlp-2012-07-06-models.jar:xom.jar:joda-time.jar -Xmx3g edu.stanford.nlp.pipeline.StanfordCoreNLP -props default.properties
-
-You can reach me, Dustin Smith, by sending a message on GitHub or through email (contact information is available [on my webpage](http://web.media.mit.edu/~dustin)).
-
-
-# Contributors
-
-This is free and open source software and has benefited from the contribution and feedback of others. Like Stanford's CoreNLP tools, it is covered under the [GNU General Public License v2 +](http://www.gnu.org/licenses/gpl-2.0.html), which in short means that modifications to this program must maintain the same free and open source distribution policy.
-
-This project has benefited from the contributions of:
-
- * @jcc Justin Cheng
- * Abhaya Agarwal
-
-## Related Projects
-
-These two projects are python wrappers for the [Stanford Parser](http://nlp.stanford.edu/software/lex-parser.shtml), which includes the Stanford Parser, although the Stanford Parser is another project.
- - [stanford-parser-python](http://projects.csail.mit.edu/spatial/Stanford_Parser) uses [JPype](http://jpype.sourceforge.net/) (interface to JVM)
- - [stanford-parser-jython](http://blog.gnucom.cc/2010/using-the-stanford-parser-with-jython/) uses Python
+ parse_dict=eval(corenlp.parse(text))
+where "text" is any non-empty string, the behavior is identical to the behavior before the new changes. Thus, if you want to use the new feature, you can just leave the text blank and place your raw files into the "raw_files" folder. The rest is as before.
diff --git a/LICENSE b/corenlp-wrapper/LICENSE
similarity index 100%
rename from LICENSE
rename to corenlp-wrapper/LICENSE
diff --git a/corenlp-wrapper/MANIFEST b/corenlp-wrapper/MANIFEST
new file mode 100644
index 0000000..3e64867
--- /dev/null
+++ b/corenlp-wrapper/MANIFEST
@@ -0,0 +1,7 @@
+# file GENERATED by distutils, do NOT edit
+setup.py
+corenlp/__init__.py
+corenlp/client.py
+corenlp/corenlp.py
+corenlp/default.properties
+corenlp/progressbar.py
diff --git a/corenlp-wrapper/README.md b/corenlp-wrapper/README.md
new file mode 100644
index 0000000..590a02c
--- /dev/null
+++ b/corenlp-wrapper/README.md
@@ -0,0 +1,289 @@
+# A Python wrapper of Stanford Core NLP tools
+
+
+This is a fork of [stanford-corenlp-python](https://github.com/dasmith/stanford-corenlp-python).
+
+## Edited
+ * Update to Stanford CoreNLP v1.3.5
+ * Fix many bugs & improve performance
+ * Using jsonrpclib for stability and performance
+ * Can edit the constants as argument such as Stanford Core NLP directory.
+ * Adjust parameters not to timeout in high load
+ * Packaging (beta)
+
+## Requirements
+ * [jsonrpclib](https://github.com/joshmarshall/jsonrpclib)
+ * [pexpect](http://www.noah.org/wiki/pexpect)
+ * [unidecode](http://pypi.python.org/pypi/Unidecode) (optionally)
+
+## Download and Usage
+
+To use this program you must [download](http://nlp.stanford.edu/software/corenlp.shtml#Download) and unpack the zip file containing Stanford's CoreNLP package. By default, `corenlp.py` looks for the Stanford Core NLP folder as a subdirectory of where the script is being run.
+
+
+In other words:
+
+ sudo pip install jsonrpclib pexpect unidecode # unidecode is optional
+ git clone https://bitbucket.org/torotoki/corenlp-python.git
+ cd corenlp-python
+ wget http://nlp.stanford.edu/software/stanford-corenlp-full-2013-04-04.zip
+ unzip stanford-corenlp-full-2013-04-04.zip
+
+Then, to launch a server:
+
+ python corenlp/corenlp.py
+
+Optionally, you can specify a host or port:
+
+ python corenlp/corenlp.py -H 0.0.0.0 -p 3456
+
+That will run a public JSON-RPC server on port 3456.
+And you can specify Stanford CoreNLP directory:
+
+ python corenlp/corenlp.py -S stanford-corenlp-full-2013-04-04/
+
+
+Assuming you are running on port 8080 and CoreNLP directory is `stanford-corenlp-full-2013-04-04/` in current directory, the code in `client.py` shows an example parse:
+
+ import jsonrpclib
+ from simplejson import loads
+ server = jsonrpclib.Server("http://localhost:8080")
+
+ result = loads(server.parse("Hello world. It is so beautiful"))
+ print "Result", result
+
+That returns a dictionary containing the keys `sentences` and (when applicable) `corefs`. The key `sentences` contains a list of dictionaries for each sentence, which contain `parsetree`, `text`, `tuples` containing the dependencies, and `words`, containing information about parts of speech, NER, etc:
+
+ {u'sentences': [{u'parsetree': u'(ROOT (S (VP (NP (INTJ (UH Hello)) (NP (NN world)))) (. !)))',
+ u'text': u'Hello world!',
+ u'tuples': [[u'dep', u'world', u'Hello'],
+ [u'root', u'ROOT', u'world']],
+ u'words': [[u'Hello',
+ {u'CharacterOffsetBegin': u'0',
+ u'CharacterOffsetEnd': u'5',
+ u'Lemma': u'hello',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'UH'}],
+ [u'world',
+ {u'CharacterOffsetBegin': u'6',
+ u'CharacterOffsetEnd': u'11',
+ u'Lemma': u'world',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'NN'}],
+ [u'!',
+ {u'CharacterOffsetBegin': u'11',
+ u'CharacterOffsetEnd': u'12',
+ u'Lemma': u'!',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'.'}]]},
+ {u'parsetree': u'(ROOT (S (NP (PRP It)) (VP (VBZ is) (ADJP (RB so) (JJ beautiful))) (. .)))',
+ u'text': u'It is so beautiful.',
+ u'tuples': [[u'nsubj', u'beautiful', u'It'],
+ [u'cop', u'beautiful', u'is'],
+ [u'advmod', u'beautiful', u'so'],
+ [u'root', u'ROOT', u'beautiful']],
+ u'words': [[u'It',
+ {u'CharacterOffsetBegin': u'14',
+ u'CharacterOffsetEnd': u'16',
+ u'Lemma': u'it',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'PRP'}],
+ [u'is',
+ {u'CharacterOffsetBegin': u'17',
+ u'CharacterOffsetEnd': u'19',
+ u'Lemma': u'be',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'VBZ'}],
+ [u'so',
+ {u'CharacterOffsetBegin': u'20',
+ u'CharacterOffsetEnd': u'22',
+ u'Lemma': u'so',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'RB'}],
+ [u'beautiful',
+ {u'CharacterOffsetBegin': u'23',
+ u'CharacterOffsetEnd': u'32',
+ u'Lemma': u'beautiful',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'JJ'}],
+ [u'.',
+ {u'CharacterOffsetBegin': u'32',
+ u'CharacterOffsetEnd': u'33',
+ u'Lemma': u'.',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'.'}]]}],
+ u'coref': [[[[u'It', 1, 0, 0, 1], [u'Hello world', 0, 1, 0, 2]]]]}
+
+To use it in a regular script or to edit/debug it (because errors via RPC are opaque), load the module instead:
+
+ from corenlp import StanfordCoreNLP
+ corenlp_dir = "stanford-corenlp-full-2013-04-04/"
+ corenlp = StanfordCoreNLP(corenlp_dir) # wait a few minutes...
+ corenlp.parse("Parse it")
+
+
+
+
+Following original README in stanford-corenlp-python.
+
+-------------------------------------
+
+ Python interface to Stanford Core NLP tools v1.3.3
+
+This is a Python wrapper for Stanford University's NLP group's Java-based [CoreNLP tools](http://nlp.stanford.edu/software/corenlp.shtml). It can either be imported as a module or run as a JSON-RPC server. Because it uses many large trained models (requiring 3GB RAM on 64-bit machines and usually a few minutes loading time), most applications will probably want to run it as a server.
+
+
+ * Python interface to Stanford CoreNLP tools: tagging, phrase-structure parsing, dependency parsing, named entity resolution, and coreference resolution.
+ * Runs an JSON-RPC server that wraps the Java server and outputs JSON.
+ * Outputs parse trees which can be used by [nltk](http://nltk.googlecode.com/svn/trunk/doc/howto/tree.html).
+
+
+It requires [pexpect](http://www.noah.org/wiki/pexpect) and (optionally) [unidecode](http://pypi.python.org/pypi/Unidecode) to handle non-ASCII text. This script includes and uses code from [jsonrpc](http://www.simple-is-better.org/rpc/) and [python-progressbar](http://code.google.com/p/python-progressbar/).
+
+It runs the Stanford CoreNLP jar in a separate process, communicates with the java process using its command-line interface, and makes assumptions about the output of the parser in order to parse it into a Python dict object and transfer it using JSON. The parser will break if the output changes significantly, but it has been tested on **Core NLP tools version 1.3.3** released 2012-07-09.
+
+## Download and Usage
+
+To use this program you must [download](http://nlp.stanford.edu/software/corenlp.shtml#Download) and unpack the tgz file containing Stanford's CoreNLP package. By default, `corenlp.py` looks for the Stanford Core NLP folder as a subdirectory of where the script is being run.
+
+In other words:
+
+ sudo pip install pexpect unidecode # unidecode is optional
+ git clone git://github.com/dasmith/stanford-corenlp-python.git
+ cd stanford-corenlp-python
+ wget http://nlp.stanford.edu/software/stanford-corenlp-2012-07-09.tgz
+ tar xvfz stanford-corenlp-2012-07-09.tgz
+
+Then, to launch a server:
+
+ python corenlp.py
+
+Optionally, you can specify a host or port:
+
+ python corenlp.py -H 0.0.0.0 -p 3456
+
+That will run a public JSON-RPC server on port 3456.
+
+Assuming you are running on port 8080, the code in `client.py` shows an example parse:
+
+ import jsonrpc
+ from simplejson import loads
+ server = jsonrpc.ServerProxy(jsonrpc.JsonRpc20(),
+ jsonrpc.TransportTcpIp(addr=("127.0.0.1", 8080)))
+
+ result = loads(server.parse("Hello world. It is so beautiful"))
+ print "Result", result
+
+That returns a dictionary containing the keys `sentences` and (when applicable) `corefs`. The key `sentences` contains a list of dictionaries for each sentence, which contain `parsetree`, `text`, `tuples` containing the dependencies, and `words`, containing information about parts of speech, NER, etc:
+
+ {u'sentences': [{u'parsetree': u'(ROOT (S (VP (NP (INTJ (UH Hello)) (NP (NN world)))) (. !)))',
+ u'text': u'Hello world!',
+ u'tuples': [[u'dep', u'world', u'Hello'],
+ [u'root', u'ROOT', u'world']],
+ u'words': [[u'Hello',
+ {u'CharacterOffsetBegin': u'0',
+ u'CharacterOffsetEnd': u'5',
+ u'Lemma': u'hello',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'UH'}],
+ [u'world',
+ {u'CharacterOffsetBegin': u'6',
+ u'CharacterOffsetEnd': u'11',
+ u'Lemma': u'world',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'NN'}],
+ [u'!',
+ {u'CharacterOffsetBegin': u'11',
+ u'CharacterOffsetEnd': u'12',
+ u'Lemma': u'!',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'.'}]]},
+ {u'parsetree': u'(ROOT (S (NP (PRP It)) (VP (VBZ is) (ADJP (RB so) (JJ beautiful))) (. .)))',
+ u'text': u'It is so beautiful.',
+ u'tuples': [[u'nsubj', u'beautiful', u'It'],
+ [u'cop', u'beautiful', u'is'],
+ [u'advmod', u'beautiful', u'so'],
+ [u'root', u'ROOT', u'beautiful']],
+ u'words': [[u'It',
+ {u'CharacterOffsetBegin': u'14',
+ u'CharacterOffsetEnd': u'16',
+ u'Lemma': u'it',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'PRP'}],
+ [u'is',
+ {u'CharacterOffsetBegin': u'17',
+ u'CharacterOffsetEnd': u'19',
+ u'Lemma': u'be',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'VBZ'}],
+ [u'so',
+ {u'CharacterOffsetBegin': u'20',
+ u'CharacterOffsetEnd': u'22',
+ u'Lemma': u'so',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'RB'}],
+ [u'beautiful',
+ {u'CharacterOffsetBegin': u'23',
+ u'CharacterOffsetEnd': u'32',
+ u'Lemma': u'beautiful',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'JJ'}],
+ [u'.',
+ {u'CharacterOffsetBegin': u'32',
+ u'CharacterOffsetEnd': u'33',
+ u'Lemma': u'.',
+ u'NamedEntityTag': u'O',
+ u'PartOfSpeech': u'.'}]]}],
+ u'coref': [[[[u'It', 1, 0, 0, 1], [u'Hello world', 0, 1, 0, 2]]]]}
+
+To use it in a regular script or to edit/debug it (because errors via RPC are opaque), load the module instead:
+
+ from corenlp import *
+ corenlp = StanfordCoreNLP() # wait a few minutes...
+ corenlp.parse("Parse it")
+
+
+
+
+## Questions
+
+**Stanford CoreNLP tools require a large amount of free memory**. Java 5+ uses about 50% more RAM on 64-bit machines than 32-bit machines. 32-bit machine users can lower the memory requirements by changing `-Xmx3g` to `-Xmx2g` or even less.
+If pexpect timesout while loading models, check to make sure you have enough memory and can run the server alone without your kernel killing the java process:
+
+ java -cp stanford-corenlp-2012-07-09.jar:stanford-corenlp-2012-07-06-models.jar:xom.jar:joda-time.jar -Xmx3g edu.stanford.nlp.pipeline.StanfordCoreNLP -props default.properties
+
+You can reach me, Dustin Smith, by sending a message on GitHub or through email (contact information is available [on my webpage](http://web.media.mit.edu/~dustin)).
+
+
+# Contributors
+
+This is free and open source software and has benefited from the contribution and feedback of others. Like Stanford's CoreNLP tools, it is covered under the [GNU General Public License v2 +](http://www.gnu.org/licenses/gpl-2.0.html), which in short means that modifications to this program must maintain the same free and open source distribution policy.
+
+This project has benefited from the contributions of:
+
+ * @jcc Justin Cheng
+ * Abhaya Agarwal
+
+## Related Projects
+
+These two projects are python wrappers for the [Stanford Parser](http://nlp.stanford.edu/software/lex-parser.shtml), which includes the Stanford Parser, although the Stanford Parser is another project.
+ - [stanford-parser-python](http://projects.csail.mit.edu/spatial/Stanford_Parser) uses [JPype](http://jpype.sourceforge.net/) (interface to JVM)
+ - [stanford-parser-jython](http://blog.gnucom.cc/2010/using-the-stanford-parser-with-jython/) uses Python
diff --git a/corenlp-wrapper/corenlp/__init__.py b/corenlp-wrapper/corenlp/__init__.py
new file mode 100644
index 0000000..2ed1ffc
--- /dev/null
+++ b/corenlp-wrapper/corenlp/__init__.py
@@ -0,0 +1,12 @@
+# corenlp
+# Copyright 2013- Hiroyoshi Komatsu
+# See LICENSE for details.
+
+"""
+Stanford CoreNLP Python wrapper
+"""
+__version__ = '1.0.3'
+__author__ = 'Hiroyoshi Komatsu'
+__license__ = 'GNU v2+'
+
+from corenlp import StanfordCoreNLP, ParserError, TimeoutError, ProcessError
diff --git a/client.py b/corenlp-wrapper/corenlp/client.py
old mode 100644
new mode 100755
similarity index 60%
rename from client.py
rename to corenlp-wrapper/corenlp/client.py
index 11097ce..c5c4a98
--- a/client.py
+++ b/corenlp-wrapper/corenlp/client.py
@@ -1,12 +1,13 @@
import json
-from jsonrpc import ServerProxy, JsonRpc20, TransportTcpIp
+# from jsonrpc import ServerProxy, JsonRpc20, TransportTcpIp
+import jsonrpclib
from pprint import pprint
+
class StanfordNLP:
- def __init__(self):
- self.server = ServerProxy(JsonRpc20(),
- TransportTcpIp(addr=("127.0.0.1", 8080)))
-
+ def __init__(self, port_number=8080):
+ self.server = jsonrpclib.Server("http://localhost:%d" % port_number)
+
def parse(self, text):
return json.loads(self.server.parse(text))
diff --git a/corenlp-wrapper/corenlp/corenlp.py b/corenlp-wrapper/corenlp/corenlp.py
new file mode 100755
index 0000000..c3413ab
--- /dev/null
+++ b/corenlp-wrapper/corenlp/corenlp.py
@@ -0,0 +1,410 @@
+#!/usr/bin/env python
+#
+# corenlp - Python interface to Stanford Core NLP tools
+# Copyright (c) 2012 Dustin Smith
+# https://github.com/dasmith/stanford-corenlp-python
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+
+import json, optparse, os, re, sys, time, traceback
+import pexpect
+from progressbar import ProgressBar, Fraction
+from unidecode import unidecode
+from jsonrpclib.SimpleJSONRPCServer import SimpleJSONRPCServer
+import nltk, nltk.data
+
+
+class bc:
+ HEADER = '\033[95m'
+ OKBLUE = '\033[94m'
+ OKGREEN = '\033[92m'
+ WARNING = '\033[93m'
+ FAIL = '\033[91m'
+ ENDC = '\033[0m'
+
+
+VERBOSE = True
+STATE_START, STATE_TEXT, STATE_WORDS, STATE_TREE, STATE_DEPENDENCY, STATE_COREFERENCE = 0, 1, 2, 3, 4, 5
+WORD_PATTERN = re.compile('\[([^\]]+)\]')
+CR_PATTERN = re.compile(r"\((\d*),(\d)*,\[(\d*),(\d*)\)\) -> \((\d*),(\d)*,\[(\d*),(\d*)\)\), that is: \"(.*)\" -> \"(.*)\"")
+
+class ProcessError(Exception):
+ def __init__(self, value):
+ self.value = value
+ def __str__(self):
+ return repr(self.value)
+
+class ParserError(Exception):
+ def __init__(self, value):
+ self.value = value
+ def __str__(self):
+ return repr(self.value)
+
+class TimeoutError(Exception):
+ def __init__(self, value):
+ self.value = value
+ def __str__(self):
+ return repr(self.value)
+
+def clean_raw_text(files=[]):
+ #cleans all files contained in the directory "files/raw_text/" and places
+ #them into the "files/clean_text" directory.
+ import re
+ import nltk, nltk.data
+
+ sent_detector=nltk.data.load('tokenizers/punkt/english.pickle')
+
+ raw_files=['files/raw_text/' + f for f in os.listdir('files/raw_text/')] if not files else files
+ clean_files=['files/clean_text/' + raw.split('/')[-1][:-4] + '_clean.txt' for raw in raw_files]
+
+ for raw, clean in zip(raw_files, clean_files):
+ raw_text=open(raw, 'r').read()
+ text=re.sub(r'-+(\n)\s*', '', raw_text)
+ text=re.sub(r'(\n)+', '', text)
+ text= ' '.join([' '.join(nltk.word_tokenize(sent)) for sent in sent_detector.tokenize(text.strip())])
+ open(clean, 'w').write(text)
+
+
+def remove_id(word):
+ """Removes the numeric suffix from the parsed recognized words: e.g. 'word-2' > 'word' """
+ return word.count("-") == 0 and word or word[0:word.rindex("-")]
+
+
+def parse_bracketed(s):
+ '''Parse word features [abc=... def = ...]
+ Also manages to parse out features that have XML within them
+ '''
+ word = None
+ attrs = {}
+ temp = {}
+ # Substitute XML tags, to replace them later
+ for i, tag in enumerate(re.findall(r"(<[^<>]+>.*<\/[^<>]+>)", s)):
+ temp["^^^%d^^^" % i] = tag
+ s = s.replace(tag, "^^^%d^^^" % i)
+ # Load key-value pairs, substituting as necessary
+ for attr, val in re.findall(r"([^=\s]*)=([^=\s]*)", s):
+ if val in temp:
+ val = temp[val]
+ if attr == 'Text':
+ word = val
+ else:
+ attrs[attr] = val
+ return (word, attrs)
+
+def parse_xml_output():
+ import os
+ import nltk, nltk.data
+ import xmltodict
+ from collections import OrderedDict
+ """Because interaction with the command-line interface of the CoreNLP
+ tools is limited to very short text bits, it is necessary to parse xml
+ output"""
+ #First, we change to the directory where we place the xml files from the
+ #parser:
+ here = os.path.dirname(os.path.abspath( __file__ ))
+ os.chdir(here)
+ os.chdir('../../files/xml')
+
+ #we get a list of the cleaned files that we want to parse:
+
+ files=['../clean_text/' + f for f in os.listdir('../clean_text')]
+
+ #creating the file list of files to parse; the stanford tools require a file of file-names, with each file name on its own line:
+
+ with open('../files.txt', 'w') as write_files:
+ write_files.write('\n'.join(files))
+
+ sent_detector=nltk.data.load('tokenizers/punkt/english.pickle')
+ lines=[]
+ #extracting the sentences from the text:
+
+ [lines.extend(sent_detector.tokenize(open(text, 'r').read().strip())) for text in files]
+
+ command='java -Xmx3g -cp ../../corenlp-wrapper/stanford-corenlp-full-2013-04-04/stanford-corenlp-1.3.5.jar:../../corenlp-wrapper/stanford-corenlp-full-2013-04-04/stanford-corenlp-1.3.5-models.jar:../../corenlp-wrapper/stanford-corenlp-full-2013-04-04/xom.jar:../../corenlp-wrapper/stanford-corenlp-full-2013-04-04/joda-time.jar:../../corenlp-wrapper/stanford-corenlp-full-2013-04-04/jollyday.jar edu.stanford.nlp.pipeline.StanfordCoreNLP -props ../../corenlp-wrapper/corenlp/default.properties -filelist ../files.txt'
+
+ #creates the xml file of parser output:
+
+ os.system(command)
+
+ #reading in the raw xml file:
+ xml=open(os.listdir('.')[0], 'r').read()
+
+ #turning the raw xml into a raw python dictionary:
+ raw_dict=xmltodict.parse(xml)
+
+ #making a raw sentence list of dictionaries:
+ raw_sent_list=raw_dict[u'root'][u'document'][u'sentences'][u'sentence']
+ #making a raw coref dictionary:
+ raw_coref_list=raw_dict[u'root'][u'document'][u'coreference'][u'coreference']
+
+ #cleaning up the list ...the problem is that this doesn't come in pairs, as the command line version:
+
+ coref_list=[[[eval(raw_coref_list[j][u'mention'][i]['sentence'])-1, eval(raw_coref_list[j][u'mention'][i]['head'])-1, eval(raw_coref_list[j][u'mention'][i]['start'])-1, eval(raw_coref_list[j][u'mention'][i]['end'])-1] for i in range(len(raw_coref_list[j][u'mention']))] for j in range(len(raw_coref_list))]
+
+ [[coref.insert(0,' '.join(lines[coref[0]].split()[coref[-2]:coref[-1]])) for coref in coref_list[j]] for j in range(len(coref_list))]
+ os.chdir('../..')
+
+ coref_list=[[[coref_list[j][i], coref_list[j][0]] for i in range(len(coref_list[j]))] for j in range(len(coref_list))]
+
+ sentences=[{'dependencies': [[dep['dep'][i]['@type'], dep['dep'][i]['governor']['#text'], dep['dep'][i]['dependent']['#text']] for dep in raw_sent_list[j][u'dependencies'] for i in range(len(dep['dep'])) if dep['@type']=='basic-dependencies'], 'text': lines[j], 'parsetree': str(raw_sent_list[j]['parse']), 'words': [[str(token['word']), OrderedDict([('NamedEntityTag', str(token['NER'])), ('CharacterOffsetEnd', str(token['CharacterOffsetEnd'])), ('CharacterOffsetBegin', str(token['CharacterOffsetBegin'])), ('PartOfSpeech', str(token['POS'])), ('Lemma', str(token['lemma']))])] for token in raw_sent_list[j]['tokens'][u'token']]} for j in range(len(lines))]
+
+ results={'coref':coref_list, 'sentences':sentences}
+
+ return results
+
+def parse_parser_results(text):
+ """ This is the nasty bit of code to interact with the command-line
+ interface of the CoreNLP tools. Takes a string of the parser results
+ and then returns a Python list of dictionaries, one for each parsed
+ sentence.
+ """
+ results = {"sentences": []}
+ state = STATE_START
+ for line in unidecode(text.decode('utf-8')).split("\n"):
+ line = line.strip()
+
+ if line.startswith("Sentence #"):
+ sentence = {'words':[], 'parsetree':[], 'dependencies':[]}
+ results["sentences"].append(sentence)
+ state = STATE_TEXT
+
+ elif state == STATE_TEXT:
+ sentence['text'] = line
+ state = STATE_WORDS
+
+ elif state == STATE_WORDS:
+ if not line.startswith("[Text="):
+ raise ParserError('Parse error. Could not find "[Text=" in: %s' % line)
+ for s in WORD_PATTERN.findall(line):
+ sentence['words'].append(parse_bracketed(s))
+ state = STATE_TREE
+
+ elif state == STATE_TREE:
+ if len(line) == 0:
+ state = STATE_DEPENDENCY
+ sentence['parsetree'] = " ".join(sentence['parsetree'])
+ else:
+ sentence['parsetree'].append(line)
+
+ elif state == STATE_DEPENDENCY:
+ if len(line) == 0:
+ state = STATE_COREFERENCE
+ else:
+ split_entry = re.split("\(|, ", line[:-1])
+ if len(split_entry) == 3:
+ rel, left, right = map(lambda x: remove_id(x), split_entry)
+ sentence['dependencies'].append(tuple([rel,left,right]))
+
+ elif state == STATE_COREFERENCE:
+ if "Coreference set" in line:
+ if 'coref' not in results:
+ results['coref'] = []
+ coref_set = []
+ results['coref'].append(coref_set)
+ else:
+ for src_i, src_pos, src_l, src_r, sink_i, sink_pos, sink_l, sink_r, src_word, sink_word in CR_PATTERN.findall(line):
+ src_i, src_pos, src_l, src_r = int(src_i)-1, int(src_pos)-1, int(src_l)-1, int(src_r)-1
+ sink_i, sink_pos, sink_l, sink_r = int(sink_i)-1, int(sink_pos)-1, int(sink_l)-1, int(sink_r)-1
+ coref_set.append(((src_word, src_i, src_pos, src_l, src_r), (sink_word, sink_i, sink_pos, sink_l, sink_r)))
+
+ return results
+
+
+class StanfordCoreNLP(object):
+ """
+ Command-line interaction with Stanford's CoreNLP java utilities.
+ Can be run as a JSON-RPC server or imported as a module.
+ """
+ def __init__(self, corenlp_path="stanford-corenlp-full-2013-04-04/", memory="3g"):
+ """
+ Checks the location of the jar files.
+ Spawns the server as a process.
+ """
+
+ jars = ["stanford-corenlp-1.3.5.jar",
+ "stanford-corenlp-1.3.5-models.jar",
+ "xom.jar",
+ "joda-time.jar",
+ "jollyday.jar"]
+
+ java_path = "java"
+ classname = "edu.stanford.nlp.pipeline.StanfordCoreNLP"
+ # include the properties file, so you can change defaults
+ # but any changes in output format will break parse_parser_results()
+ property_name = "default.properties"
+ current_dir_pr = os.path.dirname(os.path.abspath( __file__ )) +"/"+ property_name
+ if os.path.exists(property_name):
+ props = "-props %s" % (property_name)
+ elif os.path.exists(current_dir_pr):
+ props = "-props %s" % (current_dir_pr)
+ else:
+ raise Exception("Error! Cannot locate: default.properties")
+
+ # add and check classpaths
+ jars = [corenlp_path +"/"+ jar for jar in jars]
+ for jar in jars:
+ if not os.path.exists(jar):
+ raise Exception("Error! Cannot locate: %s" % jar)
+
+ # add memory limit on JVM
+ if memory:
+ limit = "-Xmx%s" % memory
+ else:
+ limit = ""
+
+ # spawn the server
+ start_corenlp = "%s %s -cp %s %s %s" % (java_path, limit, ':'.join(jars), classname, props)
+ if VERBOSE: print "===========================================\n", start_corenlp
+ self.corenlp = pexpect.spawn(start_corenlp)
+
+ # show progress bar while loading the models
+ if VERBOSE:
+ widgets = ['Loading Models: ', Fraction()]
+ pbar = ProgressBar(widgets=widgets, maxval=5, force_update=True).start()
+ self.corenlp.expect("done.", timeout=20) # Load pos tagger model (~5sec)
+ if VERBOSE: pbar.update(1)
+ self.corenlp.expect("done.", timeout=200) # Load NER-all classifier (~33sec)
+ if VERBOSE: pbar.update(2)
+ self.corenlp.expect("done.", timeout=600) # Load NER-muc classifier (~60sec)
+ if VERBOSE: pbar.update(3)
+ self.corenlp.expect("done.", timeout=600) # Load CoNLL classifier (~50sec)
+ if VERBOSE: pbar.update(4)
+ self.corenlp.expect("done.", timeout=200) # Loading PCFG (~3sec)
+ if VERBOSE: pbar.update(5)
+ self.corenlp.expect("Entering interactive shell.")
+ if VERBOSE: pbar.finish()
+
+ # interactive shell
+ self.corenlp.expect("\nNLP> ", timeout=3)
+
+ def close(self, force=True):
+ self.corenlp.terminate(force)
+
+ def isalive(self):
+ return self.corenlp.isalive()
+
+ def __del__(self):
+ # If our child process is still around, kill it
+ if self.isalive():
+ self.close()
+
+ def _parse(self, text):
+ """
+ This is the core interaction with the parser.
+
+ It returns a Python data-structure, while the parse()
+ function returns a JSON object
+ """
+
+ # CoreNLP interactive shell cannot recognize newline
+ if '\n' in text or '\r' in text:
+ to_send = re.sub("[\r\n]", " ", text).strip()
+ else:
+ to_send = text
+
+ # clean up anything leftover
+ def clean_up():
+ while True:
+ try:
+ self.corenlp.read_nonblocking (8192, 0.1)
+ except pexpect.TIMEOUT:
+ break
+ clean_up()
+ bytes_written = self.corenlp.sendline(to_send)
+ print bc.HEADER, "bytes written", bytes_written, bc.ENDC
+
+ # How much time should we give the parser to parse it?
+ # the idea here is that you increase the timeout as a
+ # function of the text's length.
+ # max_expected_time = max(5.0, 3 + len(to_send) / 5.0)
+ max_expected_time = max(300.0, len(to_send) / 3.0)*9000000000
+
+ # repeated_input = self.corenlp.except("\n") # confirm it
+ t = self.corenlp.expect(["\nNLP> ", pexpect.TIMEOUT, pexpect.EOF],
+ timeout=max_expected_time)
+ incoming = self.corenlp.before
+ if t == 1:
+ # TIMEOUT, clean up anything when raise pexpect.TIMEOUT error
+ clean_up()
+ print >>sys.stderr, {'error': "timed out after %f seconds" % max_expected_time,
+ 'input': to_send,
+ 'output': incoming}
+ raise TimeoutError("Timed out after %d seconds" % max_expected_time)
+ elif t == 2:
+ # EOF, probably crash CoreNLP process
+ print >>sys.stderr, {'error': "CoreNLP terminates abnormally while parsing",
+ 'input': to_send,
+ 'output': incoming}
+ self.corenlp.close()
+ raise ProcessError("CoreNLP process terminates abnormally while parsing")
+
+ if VERBOSE: print "%s\n%s" % ('='*40, incoming)
+ try:
+ results = parse_parser_results(incoming)
+ except Exception, e:
+ if VERBOSE: print traceback.format_exc()
+ raise e
+
+ return results
+
+ def raw_parse(self, text):
+ """
+ This function takes a text string, sends it to the Stanford parser,
+ reads in the result, parses the results and returns a list
+ with one dictionary entry for each parsed sentence.
+ """
+ return self._parse(text)
+
+ def parse(self, text='', files=[]):
+ """
+ This function takes a text string, sends it to the Stanford parser,
+ reads in the result, parses the results and returns a list
+ with one dictionary entry for each parsed sentence, in JSON format.
+ """
+ if text:
+ return json.dumps(self._parse(text))
+ else:
+ clean_raw_text(files=files)
+ return str(parse_xml_output())
+
+
+if __name__ == '__main__':
+ """
+ The code below starts an JSONRPC server
+ """
+ VERBOSE = True
+ parser = optparse.OptionParser(usage="%prog [OPTIONS]")
+ parser.add_option('-p', '--port', default='8080',
+ help='Port to serve on (default 8080)')
+ parser.add_option('-H', '--host', default='127.0.0.1',
+ help='Host to serve on (default localhost; 0.0.0.0 to make public)')
+ parser.add_option('-S', '--corenlp', default="stanford-corenlp-full-2013-04-04",
+ help='Stanford CoreNLP tool directory (default stanford-corenlp-full-2013-04-04/)')
+ options, args = parser.parse_args()
+ # server = jsonrpc.Server(jsonrpc.JsonRpc20(),
+ # jsonrpc.TransportTcpIp(addr=(options.host, int(options.port))))
+ try:
+ server = SimpleJSONRPCServer((options.host, int(options.port)))
+
+ nlp = StanfordCoreNLP(options.corenlp)
+ server.register_function(nlp.parse)
+
+ print 'Serving on http://%s:%s' % (options.host, options.port)
+ # server.serve()
+ server.serve_forever()
+ except KeyboardInterrupt:
+ print >>sys.stderr, "Bye."
+ exit()
diff --git a/default.properties b/corenlp-wrapper/corenlp/default.properties
similarity index 98%
rename from default.properties
rename to corenlp-wrapper/corenlp/default.properties
index e069ea9..ee99077 100644
--- a/default.properties
+++ b/corenlp-wrapper/corenlp/default.properties
@@ -57,7 +57,7 @@ annotators = tokenize, ssplit, pos, lemma, ner, parse, dcoref
#clean.xmltags = .*
# A set of tags which will force the end of a sentence. HTML example:
# you would not want to end on , but you would want to end on
.
-# Once again, a regular expression.
+# Once again, a regular expression.
# (Blank means there are no sentence enders.)
#clean.sentenceendingtags =
# Whether or not to allow malformed xml
diff --git a/progressbar.py b/corenlp-wrapper/corenlp/progressbar.py
similarity index 100%
rename from progressbar.py
rename to corenlp-wrapper/corenlp/progressbar.py
diff --git a/corenlp-wrapper/setup.py b/corenlp-wrapper/setup.py
new file mode 100644
index 0000000..c5eeb8b
--- /dev/null
+++ b/corenlp-wrapper/setup.py
@@ -0,0 +1,43 @@
+import os
+from distutils.core import setup
+
+PACKAGE = "corenlp"
+NAME = "corenlp-python"
+DESCRIPTION = "A Stanford Core NLP wrapper"
+AUTHOR = "Hiroyoshi Komatsu"
+AUTHOR_EMAIL = "hiroyoshi.komat@gmail.com"
+URL = "https://bitbucket.org/torotoki/corenlp-python"
+VERSION = "1.0.3"
+
+# Utility function to read the README file.
+# Used for the long_description. It's nice, because now 1) we have a top level
+# README file and 2) it's easier to type in the README file than to put a raw
+# string in below ...
+def read(fname):
+ return open(os.path.join(os.path.dirname(__file__), fname)).read()
+
+setup(
+ name=NAME,
+ version=VERSION,
+ description=DESCRIPTION,
+ long_description=read("README.md"),
+ author=AUTHOR,
+ author_email=AUTHOR_EMAIL,
+ url=URL,
+ packages=['corenlp'],
+ package_dir = {'corenlp': 'corenlp'},
+ package_data = {
+ "corenlp": ["default.properties"]
+ },
+ # data_files = [
+ # ('corenlp', ["default.properties"]),
+ # ],
+ # package_data=find_package_data(
+ # PACKAGE,
+ # only_in_packages=False
+ # )
+ classifiers=[
+ "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
+ "Programming Language :: Python",
+ ],
+)
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04.zip b/corenlp-wrapper/stanford-corenlp-full-2013-04-04.zip
new file mode 100644
index 0000000..26fae5a
Binary files /dev/null and b/corenlp-wrapper/stanford-corenlp-full-2013-04-04.zip differ
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/CoreNLP-to-HTML.xsl b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/CoreNLP-to-HTML.xsl
new file mode 100755
index 0000000..ccb9f8b
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/CoreNLP-to-HTML.xsl
@@ -0,0 +1,141 @@
+
+
+
+
+
+
+
+
+
+ Stanford CoreNLP XML Output
+
+ Document
+
+ Sentences |
+
+
+
+
+
+ |
+
+
+ Coreference resolution graph |
+
+
+ |
+
+
+
+
+
+
+
+
+ Sentence #
+
+
+ Tokens
+
+
+
+
+ Parse tree
+
+
+
+
+ Uncollapsed dependencies
+
+
+
+
+ Collapsed dependencies
+
+
+
+
+ Collapsed dependencies with CC processed
+
+
+
+
+
+
+
+ Id |
+ Word |
+ Lemma |
+ Char begin |
+ Char end |
+ POS |
+ NER |
+ Normalized NER |
+
+
+
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+ (
+ ^-
+ ,
+ ^-
+ )
+ (extra)
+
+
+
+
+
+
+ -
+
+
+ - sentence ,
+ headword
+ (gov)
+
+
+
+
+
+
+
+
+
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/LIBRARY-LICENSES b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/LIBRARY-LICENSES
new file mode 100644
index 0000000..e1fa147
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/LIBRARY-LICENSES
@@ -0,0 +1,20 @@
+xom-1.2.6.jar
+
+Url: http://www.xom.nu/
+
+License: http://www.xom.nu/license.xhtml
+
+LGPL
+Gnu lesser general public license
+
+-----------------------------------------
+
+joda-time-2.0.jar
+
+Url: http://joda-time.sourceforge.net/
+
+License: http://joda-time.sourceforge.net/license.html
+
+Apache License 2.0
+
+-----------------------------------------
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/LICENSE.txt b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/LICENSE.txt
new file mode 100644
index 0000000..60549be
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/LICENSE.txt
@@ -0,0 +1,340 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.) You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C) 19yy
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) 19yy name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ , 1 April 1989
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Library General
+Public License instead of this License.
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/Makefile b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/Makefile
new file mode 100644
index 0000000..2c23e8e
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/Makefile
@@ -0,0 +1,25 @@
+# This is a rudimentary Makefile for rebuilding Stanford CoreNLP.
+# We actually use ant (q.v.) or a Java IDE.
+
+JAVAC = javac
+JAVAFLAGS = -O -d classes -encoding utf-8
+
+# Builds the classes' jar file
+corenlp: source
+ mkdir -p classes
+ $(JAVAC) $(JAVAFLAGS) src/edu/stanford/nlp/*/*.java \
+ src/edu/stanford/nlp/*/*/*.java \
+ src/edu/stanford/nlp/*/*/*/*.java \
+ src/edu/stanford/nlp/*/*/*/*/*.java \
+ src/edu/stanford/nlp/*/*/*/*/*/*.java
+ cd classes ; jar -cfm ../stanford-corenlp-`date +%Y-%m-%d`.jar ../src/META-INF/MANIFEST.MF edu ; cd ..
+
+# Before making, unjar the source jar file in the 'src' directory
+source:
+ if [ ! -e src ] ; then \
+ mkdir src ; cd src ; jar -xf ../stanford-corenlp-*-sources.jar; \
+ fi;
+
+clean:
+ rm -rf classes
+ rm -rf src
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/README.txt b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/README.txt
new file mode 100644
index 0000000..fe34173
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/README.txt
@@ -0,0 +1,80 @@
+Stanford CoreNLP v1.3.5 - 2013-04-04
+Stanford's Suite of NLP Tools
+-----------------------------
+
+Copyright (c) 2009-2012 The Board of Trustees of
+The Leland Stanford Junior University. All Rights Reserved.
+
+DOCUMENTATION
+
+Please look at the URL below for documention for Stanford CoreNLP:
+
+ http://nlp.stanford.edu/software/corenlp.shtml
+
+LICENSE
+
+//
+// StanfordCoreNLP -- a suite of NLP tools
+// Copyright (c) 2012 The Board of Trustees of
+// The Leland Stanford Junior University. All Rights Reserved.
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+//
+// For more information, bug reports, fixes, contact:
+// Christopher Manning
+// Dept of Computer Science, Gates 1A
+// Stanford CA 94305-9010
+// USA
+//
+
+---------------------------------
+CHANGES
+---------------------------------
+
+2013-04-04 1.3.5 Speed improvements, coref improvements,
+ Chinese version, -nthreads option
+
+2012-11-12 1.3.4 Improved ner model and dependency code,
+ now possible to change annotator pool for
+ later StanfordCoreNLP objects
+
+2012-07-09 1.3.3 Minor bug fixes
+
+2012-05-22 1.3.2 Improvements to sutime
+
+2012-03-09 1.3.1 Now supports caseless models (available as DLC)
+
+2011-12-16 1.3.0 Threadsafe!
+ Bugs in time annotation fixed
+
+2011-09-14 1.2.0 Time expression recognizer added to ner annotator
+ Output bugfixes
+ Parser can now substitute for tagger
+
+2011-06-19 1.1.0 Improved coref release
+
+2011-05-15 1.0.4 More efficient dcoref data structure
+ Supports already-tokenized input text
+
+2011-04-17 1.0.3 Compatible with other releases
+ Support loading arbitrary annotators
+ Tagger bug fixes, such as "EOS" token
+
+2010-11-11 1.0.2 Remove wn.jar
+
+2010-11-11 1.0.1 Add xml removal
+
+2010-10-07 1.0 Initial release
+
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/StanfordCoreNlpDemo.java b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/StanfordCoreNlpDemo.java
new file mode 100644
index 0000000..1756e0b
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/StanfordCoreNlpDemo.java
@@ -0,0 +1,50 @@
+
+import java.io.*;
+import java.util.*;
+
+import edu.stanford.nlp.io.*;
+import edu.stanford.nlp.ling.*;
+import edu.stanford.nlp.pipeline.*;
+import edu.stanford.nlp.trees.*;
+import edu.stanford.nlp.util.*;
+
+public class StanfordCoreNlpDemo {
+
+ public static void main(String[] args) throws IOException {
+ PrintWriter out;
+ if (args.length > 1) {
+ out = new PrintWriter(args[1]);
+ } else {
+ out = new PrintWriter(System.out);
+ }
+ PrintWriter xmlOut = null;
+ if (args.length > 2) {
+ xmlOut = new PrintWriter(args[2]);
+ }
+
+ StanfordCoreNLP pipeline = new StanfordCoreNLP();
+ Annotation annotation;
+ if (args.length > 0) {
+ annotation = new Annotation(IOUtils.slurpFileNoExceptions(args[0]));
+ } else {
+ annotation = new Annotation("Kosgi Santosh sent an email to Stanford University. He didn't get a reply.");
+ }
+
+ pipeline.annotate(annotation);
+ pipeline.prettyPrint(annotation, out);
+ if (xmlOut != null) {
+ pipeline.xmlPrint(annotation, xmlOut);
+ }
+ // An Annotation is a Map and you can get and use the various analyses individually.
+ // For instance, this gets the parse tree of the first sentence in the text.
+ List sentences = annotation.get(CoreAnnotations.SentencesAnnotation.class);
+ if (sentences != null && sentences.size() > 0) {
+ CoreMap sentence = sentences.get(0);
+ Tree tree = sentence.get(TreeCoreAnnotations.TreeAnnotation.class);
+ out.println();
+ out.println("The first sentence parsed is:");
+ tree.pennPrint(out);
+ }
+ }
+
+}
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/build.xml b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/build.xml
new file mode 100644
index 0000000..d5c4694
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/build.xml
@@ -0,0 +1,134 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/corenlp.sh b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/corenlp.sh
new file mode 100755
index 0000000..862de38
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/corenlp.sh
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+#
+# Runs Stanford CoreNLP.
+# Simple uses for xml and plain text output to files are:
+# ./corenlp.sh -file filename
+# ./corenlp.sh -file filename -outputFormat text
+
+scriptdir=`dirname $0`
+
+echo java -mx3g -cp \"$scriptdir/*\" edu.stanford.nlp.pipeline.StanfordCoreNLP $*
+java -mx3g -cp "$scriptdir/*" edu.stanford.nlp.pipeline.StanfordCoreNLP $*
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/input.txt b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/input.txt
new file mode 100644
index 0000000..7e2de09
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/input.txt
@@ -0,0 +1 @@
+Stanford University is located in California. It is a great university, founded in 1891.
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/input.txt.xml b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/input.txt.xml
new file mode 100644
index 0000000..63baf71
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/input.txt.xml
@@ -0,0 +1,348 @@
+
+
+
+
+
+
+
+
+ Stanford
+ Stanford
+ 0
+ 8
+ NNP
+ ORGANIZATION
+
+
+ University
+ University
+ 9
+ 19
+ NNP
+ ORGANIZATION
+
+
+ is
+ be
+ 20
+ 22
+ VBZ
+ O
+
+
+ located
+ located
+ 23
+ 30
+ JJ
+ O
+
+
+ in
+ in
+ 31
+ 33
+ IN
+ O
+
+
+ California
+ California
+ 34
+ 44
+ NNP
+ LOCATION
+
+
+ .
+ .
+ 44
+ 45
+ .
+ O
+
+
+ (ROOT (S (NP (NNP Stanford) (NNP University)) (VP (VBZ is) (ADJP (JJ located) (PP (IN in) (NP (NNP California))))) (. .)))
+
+
+ ROOT
+ located
+
+
+ University
+ Stanford
+
+
+ located
+ University
+
+
+ located
+ is
+
+
+ located
+ in
+
+
+ in
+ California
+
+
+
+
+ ROOT
+ located
+
+
+ University
+ Stanford
+
+
+ located
+ University
+
+
+ located
+ is
+
+
+ located
+ California
+
+
+
+
+ ROOT
+ located
+
+
+ University
+ Stanford
+
+
+ located
+ University
+
+
+ located
+ is
+
+
+ located
+ California
+
+
+
+
+
+
+ It
+ it
+ 46
+ 48
+ PRP
+ O
+
+
+ is
+ be
+ 49
+ 51
+ VBZ
+ O
+
+
+ a
+ a
+ 52
+ 53
+ DT
+ O
+
+
+ great
+ great
+ 54
+ 59
+ JJ
+ O
+
+
+ university
+ university
+ 60
+ 70
+ NN
+ O
+
+
+ ,
+ ,
+ 70
+ 71
+ ,
+ O
+
+
+ founded
+ found
+ 72
+ 79
+ VBN
+ O
+
+
+ in
+ in
+ 80
+ 82
+ IN
+ O
+
+
+ 1891
+ 1891
+ 83
+ 87
+ CD
+ DATE
+ 1891
+ 1891
+
+
+ .
+ .
+ 87
+ 88
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VBZ is) (NP (NP (DT a) (JJ great) (NN university)) (, ,) (VP (VBN founded) (PP (IN in) (NP (CD 1891)))))) (. .)))
+
+
+ ROOT
+ university
+
+
+ university
+ It
+
+
+ university
+ is
+
+
+ university
+ a
+
+
+ university
+ great
+
+
+ university
+ founded
+
+
+ founded
+ in
+
+
+ in
+ 1891
+
+
+
+
+ ROOT
+ university
+
+
+ university
+ It
+
+
+ university
+ is
+
+
+ university
+ a
+
+
+ university
+ great
+
+
+ university
+ founded
+
+
+ founded
+ 1891
+
+
+
+
+ ROOT
+ university
+
+
+ university
+ It
+
+
+ university
+ is
+
+
+ university
+ a
+
+
+ university
+ great
+
+
+ university
+ founded
+
+
+ founded
+ 1891
+
+
+
+
+
+
+
+ 1
+ 1
+ 3
+ 2
+
+
+ 2
+ 1
+ 2
+ 1
+
+
+ 2
+ 3
+ 10
+ 5
+
+
+ 2
+ 3
+ 6
+ 5
+
+
+
+
+
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/joda-time-2.1-sources.jar b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/joda-time-2.1-sources.jar
new file mode 100644
index 0000000..44e4ed8
Binary files /dev/null and b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/joda-time-2.1-sources.jar differ
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/joda-time.jar b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/joda-time.jar
new file mode 100644
index 0000000..b2aca95
Binary files /dev/null and b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/joda-time.jar differ
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/jollyday-0.4.7-sources.jar b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/jollyday-0.4.7-sources.jar
new file mode 100644
index 0000000..55e0204
Binary files /dev/null and b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/jollyday-0.4.7-sources.jar differ
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/jollyday.jar b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/jollyday.jar
new file mode 100644
index 0000000..a6bf8b3
Binary files /dev/null and b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/jollyday.jar differ
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/new_sample.txt.xml b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/new_sample.txt.xml
new file mode 100644
index 0000000..2e11218
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/new_sample.txt.xml
@@ -0,0 +1,114285 @@
+
+
+
+
+
+
+
+
+ Mr.
+ Mr.
+ 0
+ 3
+ NNP
+ O
+
+
+ MITCHELL
+ MITCHELL
+ 4
+ 12
+ NNP
+ PERSON
+
+
+ .
+ .
+ 12
+ 13
+ .
+ O
+
+
+ (ROOT (NP (NNP Mr.) (NNP MITCHELL) (. .)))
+
+
+ ROOT
+ MITCHELL
+
+
+ MITCHELL
+ Mr.
+
+
+
+
+ ROOT
+ MITCHELL
+
+
+ MITCHELL
+ Mr.
+
+
+
+
+ ROOT
+ MITCHELL
+
+
+ MITCHELL
+ Mr.
+
+
+
+
+
+
+ Mr.
+ Mr.
+ 14
+ 17
+ NNP
+ O
+
+
+ President
+ President
+ 18
+ 27
+ NNP
+ O
+
+
+ ,
+ ,
+ 27
+ 28
+ ,
+ O
+
+
+ fol
+ fol
+ 29
+ 32
+ NN
+ O
+
+
+ -
+ -
+ 32
+ 33
+ :
+ O
+
+
+ lowing
+ low
+ 35
+ 41
+ VBG
+ O
+
+
+ the
+ the
+ 42
+ 45
+ DT
+ O
+
+
+ conclusion
+ conclusion
+ 46
+ 56
+ NN
+ O
+
+
+ of
+ of
+ 57
+ 59
+ IN
+ O
+
+
+ morning
+ morning
+ 60
+ 67
+ NN
+ TIME
+ TMO
+ TMO
+
+
+ busi
+ busus
+ 68
+ 72
+ NNS
+ O
+
+
+ -
+ -
+ 72
+ 73
+ :
+ O
+
+
+ ness
+ ness
+ 75
+ 79
+ NN
+ O
+
+
+ at
+ at
+ 80
+ 82
+ IN
+ O
+
+
+ 3:30
+ 3:30
+ 83
+ 87
+ CD
+ TIME
+ T15:30
+ T15:30
+
+
+ p.m.
+ p.m.
+ 88
+ 92
+ RB
+ TIME
+ T15:30
+ T15:30
+
+
+ ,
+ ,
+ 92
+ 93
+ ,
+ O
+
+
+ I
+ I
+ 94
+ 95
+ PRP
+ O
+
+
+ will
+ will
+ 96
+ 100
+ MD
+ O
+
+
+ seek
+ seek
+ 101
+ 105
+ VB
+ O
+
+
+ unani
+ unani
+ 106
+ 111
+ JJ
+ O
+
+
+ -
+ -
+ 111
+ 112
+ :
+ O
+
+
+ mous
+ mous
+ 114
+ 118
+ JJ
+ O
+
+
+ consent
+ consent
+ 119
+ 126
+ NN
+ O
+
+
+ to
+ to
+ 127
+ 129
+ TO
+ O
+
+
+ proceed
+ proceed
+ 130
+ 137
+ VB
+ O
+
+
+ to
+ to
+ 138
+ 140
+ TO
+ O
+
+
+ the
+ the
+ 141
+ 144
+ DT
+ O
+
+
+ consid
+ consid
+ 145
+ 151
+ NN
+ O
+
+
+ -
+ -
+ 151
+ 152
+ :
+ O
+
+
+ eration
+ eration
+ 154
+ 161
+ NN
+ O
+
+
+ of
+ of
+ 162
+ 164
+ IN
+ O
+
+
+ calendar
+ calendar
+ 165
+ 173
+ NN
+ O
+
+
+ item
+ item
+ 174
+ 178
+ NN
+ O
+
+
+ No.
+ no.
+ 179
+ 182
+ NN
+ O
+
+
+ 427
+ 427
+ 183
+ 186
+ CD
+ NUMBER
+ 427.0
+
+
+ ,
+ ,
+ 186
+ 187
+ ,
+ O
+
+
+ that
+ that
+ 188
+ 192
+ WDT
+ O
+
+
+ Is
+ be
+ 194
+ 196
+ VBZ
+ O
+
+
+ S.
+ S.
+ 197
+ 199
+ NNP
+ O
+
+
+ 1630
+ 1630
+ 200
+ 204
+ CD
+ DATE
+ 1630
+ 1630
+
+
+ ,
+ ,
+ 204
+ 205
+ ,
+ O
+
+
+ the
+ the
+ 206
+ 209
+ DT
+ O
+
+
+ clean
+ clean
+ 210
+ 215
+ JJ
+ O
+
+
+ air
+ air
+ 216
+ 219
+ NN
+ O
+
+
+ legislation
+ legislation
+ 220
+ 231
+ NN
+ O
+
+
+ .
+ .
+ 231
+ 232
+ .
+ O
+
+
+ (ROOT (NP (NP (NP (NNP Mr.) (NNP President)) (, ,) (NP (NN fol))) (: -) (S (S (VP (VBG lowing) (NP (NP (NP (DT the) (NN conclusion)) (PP (IN of) (NP (NN morning) (NNS busi)))) (: -) (NP (NP (NN ness)) (PP (IN at) (NP (CD 3:30) (RB p.m.))))))) (, ,) (NP (PRP I)) (VP (MD will) (VP (VB seek) (ADJP (ADJP (JJ unani)) (: -) (NP (NP (JJ mous) (NN consent)) (SBAR (S (VP (TO to) (VP (VB proceed) (PP (TO to) (NP (DT the) (NN consid) (: -) (NN eration))))))) (PP (IN of) (NP (NP (NN calendar) (NN item) (NN No.)) (NP-TMP (NP (CD 427)) (, ,) (SBAR (WHNP (WDT that)) (S (VP (VBZ Is) (NP (NP (NNP S.) (CD 1630)) (, ,) (NP (DT the) (JJ clean) (NN air) (NN legislation)))))))))))))) (. .)))
+
+
+ ROOT
+ President
+
+
+ President
+ Mr.
+
+
+ President
+ fol
+
+
+ seek
+ lowing
+
+
+ conclusion
+ the
+
+
+ lowing
+ conclusion
+
+
+ conclusion
+ of
+
+
+ busi
+ morning
+
+
+ of
+ busi
+
+
+ conclusion
+ ness
+
+
+ ness
+ at
+
+
+ at
+ 3:30
+
+
+ 3:30
+ p.m.
+
+
+ seek
+ I
+
+
+ seek
+ will
+
+
+ President
+ seek
+
+
+ seek
+ unani
+
+
+ consent
+ mous
+
+
+ unani
+ consent
+
+
+ proceed
+ to
+
+
+ consent
+ proceed
+
+
+ proceed
+ to
+
+
+ eration
+ the
+
+
+ eration
+ consid
+
+
+ to
+ eration
+
+
+ consent
+ of
+
+
+ No.
+ calendar
+
+
+ No.
+ item
+
+
+ of
+ No.
+
+
+ No.
+ 427
+
+
+ S.
+ that
+
+
+ S.
+ Is
+
+
+ 427
+ S.
+
+
+ S.
+ 1630
+
+
+ legislation
+ the
+
+
+ legislation
+ clean
+
+
+ legislation
+ air
+
+
+ S.
+ legislation
+
+
+
+
+ ROOT
+ President
+
+
+ President
+ Mr.
+
+
+ President
+ fol
+
+
+ seek
+ lowing
+
+
+ conclusion
+ the
+
+
+ lowing
+ conclusion
+
+
+ busi
+ morning
+
+
+ conclusion
+ busi
+
+
+ conclusion
+ ness
+
+
+ ness
+ 3:30
+
+
+ 3:30
+ p.m.
+
+
+ seek
+ I
+
+
+ seek
+ will
+
+
+ President
+ seek
+
+
+ seek
+ unani
+
+
+ consent
+ mous
+
+
+ unani
+ consent
+
+
+ proceed
+ to
+
+
+ consent
+ proceed
+
+
+ eration
+ the
+
+
+ eration
+ consid
+
+
+ proceed
+ eration
+
+
+ No.
+ calendar
+
+
+ No.
+ item
+
+
+ consent
+ No.
+
+
+ No.
+ 427
+
+
+ S.
+ that
+
+
+ S.
+ Is
+
+
+ 427
+ S.
+
+
+ S.
+ 1630
+
+
+ legislation
+ the
+
+
+ legislation
+ clean
+
+
+ legislation
+ air
+
+
+ S.
+ legislation
+
+
+
+
+ ROOT
+ President
+
+
+ President
+ Mr.
+
+
+ President
+ fol
+
+
+ seek
+ lowing
+
+
+ conclusion
+ the
+
+
+ lowing
+ conclusion
+
+
+ busi
+ morning
+
+
+ conclusion
+ busi
+
+
+ conclusion
+ ness
+
+
+ ness
+ 3:30
+
+
+ 3:30
+ p.m.
+
+
+ seek
+ I
+
+
+ seek
+ will
+
+
+ President
+ seek
+
+
+ seek
+ unani
+
+
+ consent
+ mous
+
+
+ unani
+ consent
+
+
+ proceed
+ to
+
+
+ consent
+ proceed
+
+
+ eration
+ the
+
+
+ eration
+ consid
+
+
+ proceed
+ eration
+
+
+ No.
+ calendar
+
+
+ No.
+ item
+
+
+ consent
+ No.
+
+
+ No.
+ 427
+
+
+ S.
+ that
+
+
+ S.
+ Is
+
+
+ 427
+ S.
+
+
+ S.
+ 1630
+
+
+ legislation
+ the
+
+
+ legislation
+ clean
+
+
+ legislation
+ air
+
+
+ S.
+ legislation
+
+
+
+
+
+
+ THE
+ the
+ 241
+ 244
+ DT
+ O
+
+
+ SENATE
+ SENATE
+ 245
+ 251
+ NNP
+ MISC
+
+
+ AGENDA
+ AGENDA
+ 252
+ 258
+ NNP
+ MISC
+
+
+ Mr.
+ Mr.
+ 262
+ 265
+ NNP
+ O
+
+
+ MITCHELL
+ MITCHELL
+ 266
+ 274
+ NNP
+ PERSON
+
+
+ .
+ .
+ 274
+ 275
+ .
+ O
+
+
+ (ROOT (NP (NP (DT THE) (NNP SENATE) (NNP AGENDA)) (NP (NNP Mr.) (NNP MITCHELL)) (. .)))
+
+
+ ROOT
+ AGENDA
+
+
+ AGENDA
+ THE
+
+
+ AGENDA
+ SENATE
+
+
+ MITCHELL
+ Mr.
+
+
+ AGENDA
+ MITCHELL
+
+
+
+
+ ROOT
+ AGENDA
+
+
+ AGENDA
+ THE
+
+
+ AGENDA
+ SENATE
+
+
+ MITCHELL
+ Mr.
+
+
+ AGENDA
+ MITCHELL
+
+
+
+
+ ROOT
+ AGENDA
+
+
+ AGENDA
+ THE
+
+
+ AGENDA
+ SENATE
+
+
+ MITCHELL
+ Mr.
+
+
+ AGENDA
+ MITCHELL
+
+
+
+
+
+
+ Mr.
+ Mr.
+ 276
+ 279
+ NNP
+ O
+
+
+ President
+ President
+ 280
+ 289
+ NNP
+ O
+
+
+ ,
+ ,
+ 289
+ 290
+ ,
+ O
+
+
+ we
+ we
+ 291
+ 293
+ PRP
+ O
+
+
+ begin
+ begin
+ 295
+ 300
+ VBP
+ O
+
+
+ this
+ this
+ 301
+ 305
+ DT
+ O
+
+
+ session
+ session
+ 306
+ 313
+ NN
+ O
+
+
+ with
+ with
+ 314
+ 318
+ IN
+ O
+
+
+ the
+ the
+ 319
+ 322
+ DT
+ O
+
+
+ Clean
+ Clean
+ 323
+ 328
+ NNP
+ MISC
+
+
+ Air
+ Air
+ 329
+ 332
+ NNP
+ MISC
+
+
+ Act
+ Act
+ 334
+ 337
+ NNP
+ MISC
+
+
+ .
+ .
+ 337
+ 338
+ .
+ O
+
+
+ (ROOT (S (NP (NNP Mr.) (NNP President)) (, ,) (NP (PRP we)) (VP (VBP begin) (NP (NP (DT this) (NN session)) (PP (IN with) (NP (DT the) (NNP Clean) (NNP Air) (NNP Act))))) (. .)))
+
+
+ ROOT
+ begin
+
+
+ President
+ Mr.
+
+
+ begin
+ President
+
+
+ begin
+ we
+
+
+ session
+ this
+
+
+ begin
+ session
+
+
+ session
+ with
+
+
+ Act
+ the
+
+
+ Act
+ Clean
+
+
+ Act
+ Air
+
+
+ with
+ Act
+
+
+
+
+ ROOT
+ begin
+
+
+ President
+ Mr.
+
+
+ begin
+ President
+
+
+ begin
+ we
+
+
+ session
+ this
+
+
+ begin
+ session
+
+
+ Act
+ the
+
+
+ Act
+ Clean
+
+
+ Act
+ Air
+
+
+ session
+ Act
+
+
+
+
+ ROOT
+ begin
+
+
+ President
+ Mr.
+
+
+ begin
+ President
+
+
+ begin
+ we
+
+
+ session
+ this
+
+
+ begin
+ session
+
+
+ Act
+ the
+
+
+ Act
+ Clean
+
+
+ Act
+ Air
+
+
+ session
+ Act
+
+
+
+
+
+
+ This
+ this
+ 339
+ 343
+ DT
+ O
+
+
+ is
+ be
+ 344
+ 346
+ VBZ
+ O
+
+
+ critical
+ critical
+ 347
+ 355
+ JJ
+ O
+
+
+ legislation
+ legislation
+ 356
+ 367
+ NN
+ O
+
+
+ .
+ .
+ 367
+ 368
+ .
+ O
+
+
+ (ROOT (S (NP (DT This)) (VP (VBZ is) (NP (JJ critical) (NN legislation))) (. .)))
+
+
+ ROOT
+ legislation
+
+
+ legislation
+ This
+
+
+ legislation
+ is
+
+
+ legislation
+ critical
+
+
+
+
+ ROOT
+ legislation
+
+
+ legislation
+ This
+
+
+ legislation
+ is
+
+
+ legislation
+ critical
+
+
+
+
+ ROOT
+ legislation
+
+
+ legislation
+ This
+
+
+ legislation
+ is
+
+
+ legislation
+ critical
+
+
+
+
+
+
+ It
+ it
+ 369
+ 371
+ PRP
+ O
+
+
+ has
+ have
+ 372
+ 375
+ VBZ
+ O
+
+
+ been
+ be
+ 377
+ 381
+ VBN
+ O
+
+
+ over
+ over
+ 382
+ 386
+ IN
+ O
+
+
+ 12
+ 12
+ 387
+ 389
+ CD
+ DURATION
+ 12.0
+ P12Y
+
+
+ years
+ year
+ 390
+ 395
+ NNS
+ NUMBER
+ 0.0
+ P12Y
+
+
+ since
+ since
+ 396
+ 401
+ IN
+ O
+
+
+ the
+ the
+ 402
+ 405
+ DT
+ O
+
+
+ Clean
+ Clean
+ 406
+ 411
+ NNP
+ MISC
+
+
+ Air
+ Air
+ 412
+ 415
+ NNP
+ MISC
+
+
+ Act
+ Act
+ 417
+ 420
+ NNP
+ MISC
+
+
+ was
+ be
+ 421
+ 424
+ VBD
+ O
+
+
+ last
+ last
+ 425
+ 429
+ JJ
+ O
+
+
+ debated
+ debate
+ 430
+ 437
+ VBN
+ O
+
+
+ in
+ in
+ 438
+ 440
+ IN
+ O
+
+
+ the
+ the
+ 441
+ 444
+ DT
+ O
+
+
+ Senate
+ Senate
+ 445
+ 451
+ NNP
+ ORGANIZATION
+
+
+ .
+ .
+ 451
+ 452
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VBZ has) (VP (VBN been) (PP (IN over) (NP (CD 12) (NNS years))) (SBAR (IN since) (S (NP (DT the) (NNP Clean) (NNP Air) (NNP Act)) (VP (VBD was) (ADVP (JJ last)) (VP (VBN debated) (PP (IN in) (NP (DT the) (NNP Senate))))))))) (. .)))
+
+
+ ROOT
+ been
+
+
+ been
+ It
+
+
+ been
+ has
+
+
+ been
+ over
+
+
+ years
+ 12
+
+
+ over
+ years
+
+
+ debated
+ since
+
+
+ Act
+ the
+
+
+ Act
+ Clean
+
+
+ Act
+ Air
+
+
+ debated
+ Act
+
+
+ debated
+ was
+
+
+ debated
+ last
+
+
+ been
+ debated
+
+
+ debated
+ in
+
+
+ Senate
+ the
+
+
+ in
+ Senate
+
+
+
+
+ ROOT
+ been
+
+
+ been
+ It
+
+
+ been
+ has
+
+
+ years
+ 12
+
+
+ been
+ years
+
+
+ debated
+ since
+
+
+ Act
+ the
+
+
+ Act
+ Clean
+
+
+ Act
+ Air
+
+
+ debated
+ Act
+
+
+ debated
+ was
+
+
+ debated
+ last
+
+
+ been
+ debated
+
+
+ Senate
+ the
+
+
+ debated
+ Senate
+
+
+
+
+ ROOT
+ been
+
+
+ been
+ It
+
+
+ been
+ has
+
+
+ years
+ 12
+
+
+ been
+ years
+
+
+ debated
+ since
+
+
+ Act
+ the
+
+
+ Act
+ Clean
+
+
+ Act
+ Air
+
+
+ debated
+ Act
+
+
+ debated
+ was
+
+
+ debated
+ last
+
+
+ been
+ debated
+
+
+ Senate
+ the
+
+
+ debated
+ Senate
+
+
+
+
+
+
+ Since
+ since
+ 454
+ 459
+ IN
+ O
+
+
+ then
+ then
+ 460
+ 464
+ RB
+ O
+
+
+ ,
+ ,
+ 464
+ 465
+ ,
+ O
+
+
+ our
+ we
+ 466
+ 469
+ PRP$
+ O
+
+
+ population
+ population
+ 470
+ 480
+ NN
+ O
+
+
+ has
+ have
+ 481
+ 484
+ VBZ
+ O
+
+
+ grown
+ grow
+ 485
+ 490
+ VBN
+ O
+
+
+ ,
+ ,
+ 490
+ 491
+ ,
+ O
+
+
+ automobile
+ automobile
+ 493
+ 503
+ NN
+ O
+
+
+ use
+ use
+ 504
+ 507
+ NN
+ O
+
+
+ Increased
+ increase
+ 508
+ 517
+ VBN
+ O
+
+
+ ,
+ ,
+ 517
+ 518
+ ,
+ O
+
+
+ and
+ and
+ 519
+ 522
+ CC
+ O
+
+
+ the
+ the
+ 523
+ 526
+ DT
+ O
+
+
+ economy
+ economy
+ 528
+ 535
+ NN
+ O
+
+
+ expanded
+ expand
+ 536
+ 544
+ VBN
+ O
+
+
+ ,
+ ,
+ 544
+ 545
+ ,
+ O
+
+
+ with
+ with
+ 546
+ 550
+ IN
+ O
+
+
+ the
+ the
+ 551
+ 554
+ DT
+ O
+
+
+ accompa
+ accompa
+ 555
+ 562
+ NN
+ O
+
+
+ -
+ -
+ 562
+ 563
+ :
+ O
+
+
+ nying
+ nying
+ 565
+ 570
+ JJ
+ O
+
+
+ increases
+ increase
+ 571
+ 580
+ NNS
+ O
+
+
+ in
+ in
+ 581
+ 583
+ IN
+ O
+
+
+ production
+ production
+ 584
+ 594
+ NN
+ O
+
+
+ facili
+ facilus
+ 595
+ 601
+ NNS
+ O
+
+
+ -
+ -
+ 601
+ 602
+ :
+ O
+
+
+ ties
+ tie
+ 604
+ 608
+ NNS
+ O
+
+
+ ,
+ ,
+ 608
+ 609
+ ,
+ O
+
+
+ energy
+ energy
+ 610
+ 616
+ NN
+ O
+
+
+ use
+ use
+ 617
+ 620
+ NN
+ O
+
+
+ ,
+ ,
+ 620
+ 621
+ ,
+ O
+
+
+ congestion
+ congestion
+ 622
+ 632
+ NN
+ O
+
+
+ ,
+ ,
+ 632
+ 633
+ ,
+ O
+
+
+ and
+ and
+ 634
+ 637
+ CC
+ O
+
+
+ inevi
+ inevus
+ 638
+ 643
+ NN
+ O
+
+
+ -
+ -
+ 643
+ 644
+ :
+ O
+
+
+ tably
+ tably
+ 646
+ 651
+ RB
+ O
+
+
+ ,
+ ,
+ 651
+ 652
+ ,
+ O
+
+
+ pollution
+ pollution
+ 653
+ 662
+ NN
+ O
+
+
+ .
+ .
+ 662
+ 663
+ .
+ O
+
+
+ (ROOT (S (PP (IN Since) (NP (RB then))) (, ,) (NP (PRP$ our) (NN population)) (VP (VBZ has) (VP (VBN grown) (, ,) (NP (NP (NP (NN automobile) (NN use)) (VP (VBN Increased))) (, ,) (CC and) (NP (NP (DT the) (NN economy)) (VP (VBN expanded) (, ,) (PP (IN with) (NP (NP (DT the) (NN accompa)) (: -) (NP (NP (NP (JJ nying) (NNS increases)) (PP (IN in) (NP (NN production) (NNS facili)))) (: -) (NP (NP (NNS ties)) (, ,) (NP (NN energy) (NN use)) (, ,) (NP (NN congestion)) (, ,) (CC and) (NP (NN inevi)))) (: -)) (ADVP (RB tably))) (, ,) (S (NP (NN pollution)))))))) (. .)))
+
+
+ ROOT
+ grown
+
+
+ grown
+ Since
+
+
+ Since
+ then
+
+
+ population
+ our
+
+
+ grown
+ population
+
+
+ grown
+ has
+
+
+ use
+ automobile
+
+
+ grown
+ use
+
+
+ use
+ Increased
+
+
+ use
+ and
+
+
+ economy
+ the
+
+
+ use
+ economy
+
+
+ economy
+ expanded
+
+
+ expanded
+ with
+
+
+ accompa
+ the
+
+
+ with
+ accompa
+
+
+ increases
+ nying
+
+
+ accompa
+ increases
+
+
+ increases
+ in
+
+
+ facili
+ production
+
+
+ in
+ facili
+
+
+ increases
+ ties
+
+
+ use
+ energy
+
+
+ ties
+ use
+
+
+ ties
+ congestion
+
+
+ ties
+ and
+
+
+ ties
+ inevi
+
+
+ with
+ tably
+
+
+ expanded
+ pollution
+
+
+
+
+ ROOT
+ grown
+
+
+ grown
+ Since
+
+
+ Since
+ then
+
+
+ population
+ our
+
+
+ grown
+ population
+
+
+ grown
+ has
+
+
+ use
+ automobile
+
+
+ grown
+ use
+
+
+ use
+ Increased
+
+
+ economy
+ the
+
+
+ use
+ economy
+
+
+ economy
+ expanded
+
+
+ accompa
+ the
+
+
+ expanded
+ accompa
+
+
+ increases
+ nying
+
+
+ accompa
+ increases
+
+
+ facili
+ production
+
+
+ increases
+ facili
+
+
+ increases
+ ties
+
+
+ use
+ energy
+
+
+ ties
+ use
+
+
+ ties
+ congestion
+
+
+ ties
+ inevi
+
+
+ expanded
+ tably
+
+
+ expanded
+ pollution
+
+
+
+
+ ROOT
+ grown
+
+
+ grown
+ Since
+
+
+ Since
+ then
+
+
+ population
+ our
+
+
+ grown
+ population
+
+
+ grown
+ has
+
+
+ use
+ automobile
+
+
+ grown
+ use
+
+
+ use
+ Increased
+
+
+ economy
+ the
+
+
+ grown
+ economy
+
+
+ use
+ economy
+
+
+ economy
+ expanded
+
+
+ accompa
+ the
+
+
+ expanded
+ accompa
+
+
+ increases
+ nying
+
+
+ accompa
+ increases
+
+
+ facili
+ production
+
+
+ increases
+ facili
+
+
+ increases
+ ties
+
+
+ use
+ energy
+
+
+ increases
+ use
+
+
+ ties
+ use
+
+
+ increases
+ congestion
+
+
+ ties
+ congestion
+
+
+ increases
+ inevi
+
+
+ ties
+ inevi
+
+
+ expanded
+ tably
+
+
+ expanded
+ pollution
+
+
+
+
+
+
+ These
+ these
+ 667
+ 672
+ DT
+ O
+
+
+ factors
+ factor
+ 673
+ 680
+ NNS
+ O
+
+
+ have
+ have
+ 681
+ 685
+ VBP
+ O
+
+
+ overwhelmed
+ overwhelm
+ 686
+ 697
+ VBN
+ O
+
+
+ our
+ we
+ 698
+ 701
+ PRP$
+ O
+
+
+ efforts
+ effort
+ 703
+ 710
+ NNS
+ O
+
+
+ to
+ to
+ 711
+ 713
+ TO
+ O
+
+
+ improve
+ improve
+ 714
+ 721
+ VB
+ O
+
+
+ air
+ air
+ 722
+ 725
+ NN
+ O
+
+
+ quality
+ quality
+ 726
+ 733
+ NN
+ O
+
+
+ In
+ in
+ 734
+ 736
+ IN
+ O
+
+
+ the
+ the
+ 737
+ 740
+ DT
+ O
+
+
+ places
+ place
+ 742
+ 748
+ NNS
+ O
+
+
+ where
+ where
+ 749
+ 754
+ WRB
+ O
+
+
+ the
+ the
+ 755
+ 758
+ DT
+ O
+
+
+ majority
+ majority
+ 759
+ 767
+ NN
+ O
+
+
+ of
+ of
+ 768
+ 770
+ IN
+ O
+
+
+ Ameri
+ Ameri
+ 771
+ 776
+ NNP
+ LOCATION
+
+
+ -
+ -
+ 776
+ 777
+ :
+ O
+
+
+ cans
+ can
+ 779
+ 783
+ NNS
+ O
+
+
+ live
+ live
+ 784
+ 788
+ VBP
+ O
+
+
+ and
+ and
+ 789
+ 792
+ CC
+ O
+
+
+ work
+ work
+ 793
+ 797
+ VBP
+ O
+
+
+ .
+ .
+ 797
+ 798
+ .
+ O
+
+
+ (ROOT (S (NP (DT These) (NNS factors)) (VP (VBP have) (VP (VBN overwhelmed) (NP (PRP$ our) (NNS efforts)) (S (VP (TO to) (VP (VB improve) (NP (NN air) (NN quality)))) (PP (IN In) (NP (NP (DT the) (NNS places)) (SBAR (WHADVP (WRB where)) (S (NP (NP (DT the) (NN majority)) (PP (IN of) (NP (NP (NNP Ameri)) (: -) (NP (NNS cans))))) (VP (VBP live) (CC and) (VBP work))))))))) (. .)))
+
+
+ ROOT
+ overwhelmed
+
+
+ factors
+ These
+
+
+ overwhelmed
+ factors
+
+
+ overwhelmed
+ have
+
+
+ efforts
+ our
+
+
+ overwhelmed
+ efforts
+
+
+ improve
+ to
+
+
+ overwhelmed
+ improve
+
+
+ quality
+ air
+
+
+ improve
+ quality
+
+
+ improve
+ In
+
+
+ places
+ the
+
+
+ In
+ places
+
+
+ live
+ where
+
+
+ majority
+ the
+
+
+ live
+ majority
+
+
+ majority
+ of
+
+
+ of
+ Ameri
+
+
+ Ameri
+ cans
+
+
+ places
+ live
+
+
+ live
+ and
+
+
+ live
+ work
+
+
+
+
+ ROOT
+ overwhelmed
+
+
+ factors
+ These
+
+
+ overwhelmed
+ factors
+
+
+ overwhelmed
+ have
+
+
+ efforts
+ our
+
+
+ overwhelmed
+ efforts
+
+
+ improve
+ to
+
+
+ overwhelmed
+ improve
+
+
+ quality
+ air
+
+
+ improve
+ quality
+
+
+ places
+ the
+
+
+ improve
+ places
+
+
+ live
+ where
+
+
+ majority
+ the
+
+
+ live
+ majority
+
+
+ majority
+ Ameri
+
+
+ Ameri
+ cans
+
+
+ places
+ live
+
+
+ live
+ work
+
+
+
+
+ ROOT
+ overwhelmed
+
+
+ factors
+ These
+
+
+ overwhelmed
+ factors
+
+
+ overwhelmed
+ have
+
+
+ efforts
+ our
+
+
+ overwhelmed
+ efforts
+
+
+ improve
+ to
+
+
+ overwhelmed
+ improve
+
+
+ quality
+ air
+
+
+ improve
+ quality
+
+
+ places
+ the
+
+
+ improve
+ places
+
+
+ live
+ where
+
+
+ majority
+ the
+
+
+ live
+ majority
+
+
+ work
+ majority
+
+
+ majority
+ Ameri
+
+
+ Ameri
+ cans
+
+
+ places
+ live
+
+
+ places
+ work
+
+
+ live
+ work
+
+
+
+
+
+
+ Today
+ today
+ 802
+ 807
+ NN
+ DATE
+ THIS P1D
+
+
+
+ ,
+ ,
+ 807
+ 808
+ ,
+ O
+
+
+ more
+ more
+ 809
+ 813
+ JJR
+ O
+
+
+ than
+ than
+ 814
+ 818
+ IN
+ O
+
+
+ half
+ half
+ 819
+ 823
+ PDT
+ O
+
+
+ the
+ the
+ 824
+ 827
+ DT
+ O
+
+
+ American
+ american
+ 828
+ 836
+ JJ
+ LOCATION
+
+
+ people
+ people
+ 838
+ 844
+ NNS
+ O
+
+
+ are
+ be
+ 845
+ 848
+ VBP
+ O
+
+
+ forced
+ force
+ 849
+ 855
+ VBN
+ O
+
+
+ to
+ to
+ 856
+ 858
+ TO
+ O
+
+
+ breathe
+ breathe
+ 859
+ 866
+ VB
+ O
+
+
+ air
+ air
+ 867
+ 870
+ NN
+ O
+
+
+ that
+ that
+ 871
+ 875
+ WDT
+ O
+
+
+ does
+ do
+ 877
+ 881
+ VBZ
+ O
+
+
+ not
+ not
+ 882
+ 885
+ RB
+ O
+
+
+ meet
+ meet
+ 886
+ 890
+ VB
+ O
+
+
+ national
+ national
+ 891
+ 899
+ JJ
+ O
+
+
+ health
+ health
+ 900
+ 906
+ NN
+ O
+
+
+ stand
+ stand
+ 907
+ 912
+ NN
+ O
+
+
+ -
+ -
+ 912
+ 913
+ :
+ O
+
+
+ ards
+ ard
+ 915
+ 919
+ NNS
+ O
+
+
+ .
+ .
+ 919
+ 920
+ .
+ O
+
+
+ (ROOT (S (NP-TMP (NN Today)) (, ,) (NP (QP (JJR more) (IN than) (PDT half)) (NAC (DT the) (JJ American)) (NNS people)) (VP (VBP are) (VP (VBN forced) (S (VP (TO to) (VP (VB breathe) (NP (NP (NN air)) (SBAR (WHNP (WDT that)) (S (VP (VBZ does) (RB not) (VP (VB meet) (NP (NP (JJ national) (NN health) (NN stand)) (: -) (NP (NNS ards))))))))))))) (. .)))
+
+
+ ROOT
+ forced
+
+
+ forced
+ Today
+
+
+ half
+ more
+
+
+ half
+ than
+
+
+ people
+ half
+
+
+ American
+ the
+
+
+ people
+ American
+
+
+ forced
+ people
+
+
+ forced
+ are
+
+
+ breathe
+ to
+
+
+ forced
+ breathe
+
+
+ breathe
+ air
+
+
+ meet
+ that
+
+
+ meet
+ does
+
+
+ meet
+ not
+
+
+ air
+ meet
+
+
+ stand
+ national
+
+
+ stand
+ health
+
+
+ meet
+ stand
+
+
+ stand
+ ards
+
+
+
+
+ ROOT
+ forced
+
+
+ forced
+ Today
+
+
+ half
+ more
+
+
+ half
+ than
+
+
+ people
+ half
+
+
+ American
+ the
+
+
+ people
+ American
+
+
+ forced
+ people
+
+
+ forced
+ are
+
+
+ breathe
+ to
+
+
+ forced
+ breathe
+
+
+ breathe
+ air
+
+
+ meet
+ that
+
+
+ meet
+ does
+
+
+ meet
+ not
+
+
+ air
+ meet
+
+
+ stand
+ national
+
+
+ stand
+ health
+
+
+ meet
+ stand
+
+
+ stand
+ ards
+
+
+
+
+ ROOT
+ forced
+
+
+ forced
+ Today
+
+
+ half
+ more
+
+
+ half
+ than
+
+
+ people
+ half
+
+
+ American
+ the
+
+
+ people
+ American
+
+
+ forced
+ people
+
+
+ forced
+ are
+
+
+ breathe
+ to
+
+
+ forced
+ breathe
+
+
+ breathe
+ air
+
+
+ meet
+ that
+
+
+ meet
+ does
+
+
+ meet
+ not
+
+
+ air
+ meet
+
+
+ stand
+ national
+
+
+ stand
+ health
+
+
+ meet
+ stand
+
+
+ stand
+ ards
+
+
+
+
+
+
+ This
+ this
+ 924
+ 928
+ DT
+ O
+
+
+ will
+ will
+ 929
+ 933
+ MD
+ O
+
+
+ be
+ be
+ 934
+ 936
+ VB
+ O
+
+
+ a
+ a
+ 937
+ 938
+ DT
+ O
+
+
+ substantive
+ substantive
+ 939
+ 950
+ JJ
+ O
+
+
+ debate
+ debate
+ 951
+ 957
+ NN
+ O
+
+
+ and
+ and
+ 959
+ 962
+ CC
+ O
+
+
+ ,
+ ,
+ 962
+ 963
+ ,
+ O
+
+
+ on
+ on
+ 964
+ 966
+ IN
+ O
+
+
+ some
+ some
+ 967
+ 971
+ DT
+ O
+
+
+ issues
+ issue
+ 972
+ 978
+ NNS
+ O
+
+
+ ,
+ ,
+ 978
+ 979
+ ,
+ O
+
+
+ a
+ a
+ 980
+ 981
+ DT
+ O
+
+
+ controversial
+ controversial
+ 982
+ 995
+ JJ
+ O
+
+
+ one
+ one
+ 997
+ 1000
+ CD
+ NUMBER
+ 1.0
+
+
+ .
+ .
+ 1000
+ 1001
+ .
+ O
+
+
+ (ROOT (S (NP (DT This)) (VP (MD will) (VP (VB be) (NP (NP (DT a) (JJ substantive) (NN debate)) (CC and) (PRN (, ,) (PP (IN on) (NP (DT some) (NNS issues))) (, ,)) (NP (DT a) (JJ controversial) (CD one))))) (. .)))
+
+
+ ROOT
+ debate
+
+
+ debate
+ This
+
+
+ debate
+ will
+
+
+ debate
+ be
+
+
+ debate
+ a
+
+
+ debate
+ substantive
+
+
+ debate
+ and
+
+
+ debate
+ on
+
+
+ issues
+ some
+
+
+ on
+ issues
+
+
+ one
+ a
+
+
+ one
+ controversial
+
+
+ debate
+ one
+
+
+
+
+ ROOT
+ debate
+
+
+ debate
+ This
+
+
+ debate
+ will
+
+
+ debate
+ be
+
+
+ debate
+ a
+
+
+ debate
+ substantive
+
+
+ debate
+ on
+
+
+ issues
+ some
+
+
+ on
+ issues
+
+
+ one
+ a
+
+
+ one
+ controversial
+
+
+ debate
+ one
+
+
+
+
+ ROOT
+ debate
+
+
+ debate
+ This
+
+
+ debate
+ will
+
+
+ debate
+ be
+
+
+ debate
+ a
+
+
+ debate
+ substantive
+
+
+ debate
+ on
+
+
+ issues
+ some
+
+
+ on
+ issues
+
+
+ one
+ a
+
+
+ one
+ controversial
+
+
+ debate
+ one
+
+
+
+
+
+
+ Air
+ Air
+ 1002
+ 1005
+ NNP
+ O
+
+
+ quality
+ quality
+ 1006
+ 1013
+ NN
+ O
+
+
+ issues
+ issue
+ 1014
+ 1020
+ NNS
+ O
+
+
+ vary
+ vary
+ 1021
+ 1025
+ VBP
+ O
+
+
+ by
+ by
+ 1026
+ 1028
+ IN
+ O
+
+
+ region
+ region
+ 1029
+ 1035
+ NN
+ O
+
+
+ .
+ .
+ 1035
+ 1036
+ .
+ O
+
+
+ (ROOT (S (NP (NNP Air) (NN quality) (NNS issues)) (VP (VBP vary) (PP (IN by) (NP (NN region)))) (. .)))
+
+
+ ROOT
+ vary
+
+
+ issues
+ Air
+
+
+ issues
+ quality
+
+
+ vary
+ issues
+
+
+ vary
+ by
+
+
+ by
+ region
+
+
+
+
+ ROOT
+ vary
+
+
+ issues
+ Air
+
+
+ issues
+ quality
+
+
+ vary
+ issues
+
+
+ vary
+ region
+
+
+
+
+ ROOT
+ vary
+
+
+ issues
+ Air
+
+
+ issues
+ quality
+
+
+ vary
+ issues
+
+
+ vary
+ region
+
+
+
+
+
+
+ Some
+ some
+ 1038
+ 1042
+ DT
+ O
+
+
+ regions
+ region
+ 1045
+ 1052
+ NNS
+ O
+
+
+ are
+ be
+ 1053
+ 1056
+ VBP
+ O
+
+
+ at
+ at
+ 1057
+ 1059
+ IN
+ O
+
+
+ significantly
+ significantly
+ 1060
+ 1073
+ RB
+ O
+
+
+ greater
+ greater
+ 1075
+ 1082
+ JJR
+ O
+
+
+ risk
+ risk
+ 1083
+ 1087
+ NN
+ O
+
+
+ from
+ from
+ 1088
+ 1092
+ IN
+ O
+
+
+ the
+ the
+ 1093
+ 1096
+ DT
+ O
+
+
+ effects
+ effect
+ 1097
+ 1104
+ NNS
+ O
+
+
+ of
+ of
+ 1105
+ 1107
+ IN
+ O
+
+
+ acid
+ acid
+ 1108
+ 1112
+ JJ
+ O
+
+
+ rain
+ rain
+ 1114
+ 1118
+ NN
+ O
+
+
+ ;
+ ;
+ 1118
+ 1119
+ :
+ O
+
+
+ some
+ some
+ 1120
+ 1124
+ DT
+ O
+
+
+ rural
+ rural
+ 1125
+ 1130
+ JJ
+ O
+
+
+ areas
+ area
+ 1131
+ 1136
+ NNS
+ O
+
+
+ do
+ do
+ 1137
+ 1139
+ VBP
+ O
+
+
+ not
+ not
+ 1140
+ 1143
+ RB
+ O
+
+
+ suffer
+ suffer
+ 1144
+ 1150
+ VB
+ O
+
+
+ as
+ as
+ 1151
+ 1153
+ RB
+ O
+
+
+ much
+ much
+ 1155
+ 1159
+ RB
+ O
+
+
+ from
+ from
+ 1160
+ 1164
+ IN
+ O
+
+
+ ozone
+ ozone
+ 1165
+ 1170
+ NN
+ O
+
+
+ as
+ as
+ 1171
+ 1173
+ IN
+ O
+
+
+ cities
+ city
+ 1174
+ 1180
+ NNS
+ O
+
+
+ ;
+ ;
+ 1180
+ 1181
+ :
+ O
+
+
+ congested
+ congest
+ 1182
+ 1191
+ VBN
+ O
+
+
+ urban
+ urban
+ 1193
+ 1198
+ JJ
+ O
+
+
+ areas
+ area
+ 1199
+ 1204
+ NNS
+ O
+
+
+ are
+ be
+ 1205
+ 1208
+ VBP
+ O
+
+
+ seeing
+ see
+ 1209
+ 1215
+ VBG
+ O
+
+
+ a
+ a
+ 1216
+ 1217
+ DT
+ O
+
+
+ further
+ further
+ 1218
+ 1225
+ JJ
+ O
+
+
+ degra
+ degra
+ 1226
+ 1231
+ NN
+ O
+
+
+ -
+ -
+ 1231
+ 1232
+ :
+ O
+
+
+ dation
+ dation
+ 1234
+ 1240
+ NN
+ O
+
+
+ in
+ in
+ 1241
+ 1243
+ IN
+ O
+
+
+ air
+ air
+ 1244
+ 1247
+ NN
+ O
+
+
+ quality
+ quality
+ 1248
+ 1255
+ NN
+ O
+
+
+ .
+ .
+ 1255
+ 1256
+ .
+ O
+
+
+ (ROOT (S (S (NP (DT Some) (NNS regions)) (VP (VBP are) (PP (IN at) (NP (NP (ADJP (RB significantly) (JJR greater)) (NN risk)) (PP (IN from) (NP (NP (DT the) (NNS effects)) (PP (IN of) (NP (JJ acid) (NN rain))))))))) (: ;) (S (NP (DT some) (JJ rural) (NNS areas)) (VP (VBP do) (RB not) (VP (VB suffer) (ADVP (RB as) (RB much)) (PP (IN from) (NP (NP (NN ozone)) (PP (IN as) (NP (NNS cities)))))))) (: ;) (S (S (VP (VBN congested) (NP (JJ urban) (NNS areas)))) (VP (VBP are) (VP (VBG seeing) (NP (NP (DT a) (JJ further) (NN degra)) (: -) (NP (NP (NN dation)) (PP (IN in) (NP (NN air) (NN quality)))))))) (. .)))
+
+
+ ROOT
+ are
+
+
+ regions
+ Some
+
+
+ are
+ regions
+
+
+ are
+ at
+
+
+ greater
+ significantly
+
+
+ risk
+ greater
+
+
+ at
+ risk
+
+
+ risk
+ from
+
+
+ effects
+ the
+
+
+ from
+ effects
+
+
+ effects
+ of
+
+
+ rain
+ acid
+
+
+ of
+ rain
+
+
+ areas
+ some
+
+
+ areas
+ rural
+
+
+ suffer
+ areas
+
+
+ suffer
+ do
+
+
+ suffer
+ not
+
+
+ are
+ suffer
+
+
+ much
+ as
+
+
+ suffer
+ much
+
+
+ suffer
+ from
+
+
+ from
+ ozone
+
+
+ ozone
+ as
+
+
+ as
+ cities
+
+
+ seeing
+ congested
+
+
+ areas
+ urban
+
+
+ congested
+ areas
+
+
+ seeing
+ are
+
+
+ are
+ seeing
+
+
+ degra
+ a
+
+
+ degra
+ further
+
+
+ seeing
+ degra
+
+
+ degra
+ dation
+
+
+ dation
+ in
+
+
+ quality
+ air
+
+
+ in
+ quality
+
+
+
+
+ ROOT
+ are
+
+
+ regions
+ Some
+
+
+ are
+ regions
+
+
+ greater
+ significantly
+
+
+ risk
+ greater
+
+
+ are
+ risk
+
+
+ effects
+ the
+
+
+ risk
+ effects
+
+
+ rain
+ acid
+
+
+ effects
+ rain
+
+
+ areas
+ some
+
+
+ areas
+ rural
+
+
+ suffer
+ areas
+
+
+ suffer
+ do
+
+
+ suffer
+ not
+
+
+ are
+ suffer
+
+
+ much
+ as
+
+
+ suffer
+ much
+
+
+ suffer
+ ozone
+
+
+ ozone
+ cities
+
+
+ seeing
+ congested
+
+
+ areas
+ urban
+
+
+ congested
+ areas
+
+
+ seeing
+ are
+
+
+ are
+ seeing
+
+
+ degra
+ a
+
+
+ degra
+ further
+
+
+ seeing
+ degra
+
+
+ degra
+ dation
+
+
+ quality
+ air
+
+
+ dation
+ quality
+
+
+
+
+ ROOT
+ are
+
+
+ regions
+ Some
+
+
+ are
+ regions
+
+
+ greater
+ significantly
+
+
+ risk
+ greater
+
+
+ are
+ risk
+
+
+ effects
+ the
+
+
+ risk
+ effects
+
+
+ rain
+ acid
+
+
+ effects
+ rain
+
+
+ areas
+ some
+
+
+ areas
+ rural
+
+
+ suffer
+ areas
+
+
+ suffer
+ do
+
+
+ suffer
+ not
+
+
+ are
+ suffer
+
+
+ much
+ as
+
+
+ suffer
+ much
+
+
+ suffer
+ ozone
+
+
+ ozone
+ cities
+
+
+ seeing
+ congested
+
+
+ areas
+ urban
+
+
+ congested
+ areas
+
+
+ seeing
+ are
+
+
+ are
+ seeing
+
+
+ degra
+ a
+
+
+ degra
+ further
+
+
+ seeing
+ degra
+
+
+ degra
+ dation
+
+
+ quality
+ air
+
+
+ dation
+ quality
+
+
+
+
+
+
+ I
+ I
+ 1260
+ 1261
+ PRP
+ O
+
+
+ welcome
+ welcome
+ 1262
+ 1269
+ VBP
+ O
+
+
+ the
+ the
+ 1270
+ 1273
+ DT
+ O
+
+
+ President
+ President
+ 1274
+ 1283
+ NNP
+ O
+
+
+ 's
+ 's
+ 1283
+ 1285
+ POS
+ O
+
+
+ strong
+ strong
+ 1286
+ 1292
+ JJ
+ O
+
+
+ call
+ call
+ 1293
+ 1297
+ NN
+ O
+
+
+ for
+ for
+ 1299
+ 1302
+ IN
+ O
+
+
+ action
+ action
+ 1303
+ 1309
+ NN
+ O
+
+
+ on
+ on
+ 1310
+ 1312
+ IN
+ O
+
+
+ a
+ a
+ 1313
+ 1314
+ DT
+ O
+
+
+ Clean
+ Clean
+ 1315
+ 1320
+ NNP
+ MISC
+
+
+ Air
+ Air
+ 1321
+ 1324
+ NNP
+ MISC
+
+
+ Act
+ Act
+ 1325
+ 1328
+ NNP
+ MISC
+
+
+ .
+ .
+ 1328
+ 1329
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (VBP welcome) (NP (NP (NP (DT the) (NNP President) (POS 's)) (JJ strong) (NN call)) (PP (IN for) (NP (NP (NN action)) (PP (IN on) (NP (DT a) (NNP Clean) (NNP Air) (NNP Act))))))) (. .)))
+
+
+ ROOT
+ welcome
+
+
+ welcome
+ I
+
+
+ President
+ the
+
+
+ call
+ President
+
+
+ President
+ 's
+
+
+ call
+ strong
+
+
+ welcome
+ call
+
+
+ call
+ for
+
+
+ for
+ action
+
+
+ action
+ on
+
+
+ Act
+ a
+
+
+ Act
+ Clean
+
+
+ Act
+ Air
+
+
+ on
+ Act
+
+
+
+
+ ROOT
+ welcome
+
+
+ welcome
+ I
+
+
+ President
+ the
+
+
+ call
+ President
+
+
+ call
+ strong
+
+
+ welcome
+ call
+
+
+ call
+ action
+
+
+ Act
+ a
+
+
+ Act
+ Clean
+
+
+ Act
+ Air
+
+
+ action
+ Act
+
+
+
+
+ ROOT
+ welcome
+
+
+ welcome
+ I
+
+
+ President
+ the
+
+
+ call
+ President
+
+
+ call
+ strong
+
+
+ welcome
+ call
+
+
+ call
+ action
+
+
+ Act
+ a
+
+
+ Act
+ Clean
+
+
+ Act
+ Air
+
+
+ action
+ Act
+
+
+
+
+
+
+ I
+ I
+ 1330
+ 1331
+ PRP
+ O
+
+
+ com
+ com
+ 1332
+ 1335
+ NN
+ O
+
+
+ -
+ -
+ 1335
+ 1336
+ :
+ O
+
+
+ mend
+ mend
+ 1338
+ 1342
+ VB
+ O
+
+
+ him
+ he
+ 1343
+ 1346
+ PRP
+ O
+
+
+ for
+ for
+ 1347
+ 1350
+ IN
+ O
+
+
+ it
+ it
+ 1351
+ 1353
+ PRP
+ O
+
+
+ .
+ .
+ 1353
+ 1354
+ .
+ O
+
+
+ (ROOT (NP (NP (PRP I) (NN com)) (: -) (S (VP (VB mend) (NP (PRP him)) (PP (IN for) (NP (PRP it))))) (. .)))
+
+
+ ROOT
+ com
+
+
+ com
+ I
+
+
+ com
+ mend
+
+
+ mend
+ him
+
+
+ mend
+ for
+
+
+ for
+ it
+
+
+
+
+ ROOT
+ com
+
+
+ com
+ I
+
+
+ com
+ mend
+
+
+ mend
+ him
+
+
+ mend
+ it
+
+
+
+
+ ROOT
+ com
+
+
+ com
+ I
+
+
+ com
+ mend
+
+
+ mend
+ him
+
+
+ mend
+ it
+
+
+
+
+
+
+ It
+ it
+ 1355
+ 1357
+ PRP
+ O
+
+
+ is
+ be
+ 1358
+ 1360
+ VBZ
+ O
+
+
+ my
+ my
+ 1361
+ 1363
+ PRP$
+ O
+
+
+ intention
+ intention
+ 1364
+ 1373
+ NN
+ O
+
+
+ that
+ that
+ 1375
+ 1379
+ IN
+ O
+
+
+ the
+ the
+ 1380
+ 1383
+ DT
+ O
+
+
+ Senate
+ Senate
+ 1384
+ 1390
+ NNP
+ ORGANIZATION
+
+
+ give
+ give
+ 1391
+ 1395
+ VB
+ O
+
+
+ him
+ he
+ 1396
+ 1399
+ PRP
+ O
+
+
+ a
+ a
+ 1400
+ 1401
+ DT
+ O
+
+
+ strong
+ strong
+ 1402
+ 1408
+ JJ
+ O
+
+
+ Clean
+ Clean
+ 1410
+ 1415
+ NNP
+ MISC
+
+
+ Air
+ Air
+ 1416
+ 1419
+ NNP
+ MISC
+
+
+ Act
+ Act
+ 1420
+ 1423
+ NNP
+ MISC
+
+
+ .
+ .
+ 1423
+ 1424
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VBZ is) (NP (PRP$ my) (NN intention)) (SBAR (IN that) (S (NP (DT the) (NNP Senate)) (VP (VB give) (NP (PRP him)) (NP (DT a) (JJ strong) (NNP Clean) (NNP Air) (NNP Act)))))) (. .)))
+
+
+ ROOT
+ intention
+
+
+ intention
+ It
+
+
+ intention
+ is
+
+
+ intention
+ my
+
+
+ give
+ that
+
+
+ Senate
+ the
+
+
+ give
+ Senate
+
+
+ intention
+ give
+
+
+ give
+ him
+
+
+ Act
+ a
+
+
+ Act
+ strong
+
+
+ Act
+ Clean
+
+
+ Act
+ Air
+
+
+ give
+ Act
+
+
+
+
+ ROOT
+ intention
+
+
+ intention
+ It
+
+
+ intention
+ is
+
+
+ intention
+ my
+
+
+ give
+ that
+
+
+ Senate
+ the
+
+
+ give
+ Senate
+
+
+ intention
+ give
+
+
+ give
+ him
+
+
+ Act
+ a
+
+
+ Act
+ strong
+
+
+ Act
+ Clean
+
+
+ Act
+ Air
+
+
+ give
+ Act
+
+
+
+
+ ROOT
+ intention
+
+
+ intention
+ It
+
+
+ intention
+ is
+
+
+ intention
+ my
+
+
+ give
+ that
+
+
+ Senate
+ the
+
+
+ give
+ Senate
+
+
+ intention
+ give
+
+
+ give
+ him
+
+
+ Act
+ a
+
+
+ Act
+ strong
+
+
+ Act
+ Clean
+
+
+ Act
+ Air
+
+
+ give
+ Act
+
+
+
+
+
+
+ There
+ there
+ 1428
+ 1433
+ EX
+ O
+
+
+ are
+ be
+ 1434
+ 1437
+ VBP
+ O
+
+
+ many
+ many
+ 1438
+ 1442
+ JJ
+ O
+
+
+ aspects
+ aspect
+ 1443
+ 1450
+ NNS
+ O
+
+
+ to
+ to
+ 1451
+ 1453
+ TO
+ O
+
+
+ this
+ this
+ 1454
+ 1458
+ DT
+ O
+
+
+ issue
+ issue
+ 1459
+ 1464
+ NN
+ O
+
+
+ .
+ .
+ 1464
+ 1465
+ .
+ O
+
+
+ (ROOT (S (NP (EX There)) (VP (VBP are) (NP (NP (JJ many) (NNS aspects)) (PP (TO to) (NP (DT this) (NN issue))))) (. .)))
+
+
+ ROOT
+ are
+
+
+ are
+ There
+
+
+ aspects
+ many
+
+
+ are
+ aspects
+
+
+ aspects
+ to
+
+
+ issue
+ this
+
+
+ to
+ issue
+
+
+
+
+ ROOT
+ are
+
+
+ are
+ There
+
+
+ aspects
+ many
+
+
+ are
+ aspects
+
+
+ issue
+ this
+
+
+ aspects
+ issue
+
+
+
+
+ ROOT
+ are
+
+
+ are
+ There
+
+
+ aspects
+ many
+
+
+ are
+ aspects
+
+
+ issue
+ this
+
+
+ aspects
+ issue
+
+
+
+
+
+
+ One
+ one
+ 1467
+ 1470
+ CD
+ NUMBER
+ 1.0
+
+
+ overrides
+ override
+ 1471
+ 1480
+ VBZ
+ O
+
+
+ all
+ all
+ 1481
+ 1484
+ DT
+ O
+
+
+ others
+ other
+ 1485
+ 1491
+ NNS
+ O
+
+
+ .
+ .
+ 1491
+ 1492
+ .
+ O
+
+
+ (ROOT (S (NP (CD One)) (VP (VBZ overrides) (NP (DT all) (NNS others))) (. .)))
+
+
+ ROOT
+ overrides
+
+
+ overrides
+ One
+
+
+ others
+ all
+
+
+ overrides
+ others
+
+
+
+
+ ROOT
+ overrides
+
+
+ overrides
+ One
+
+
+ others
+ all
+
+
+ overrides
+ others
+
+
+
+
+ ROOT
+ overrides
+
+
+ overrides
+ One
+
+
+ others
+ all
+
+
+ overrides
+ others
+
+
+
+
+
+
+ We
+ we
+ 1493
+ 1495
+ PRP
+ O
+
+
+ must
+ must
+ 1496
+ 1500
+ MD
+ O
+
+
+ pro-
+ pro-
+ 1501
+ 1505
+ JJ
+ O
+
+
+ tect
+ tect
+ 1507
+ 1511
+ NN
+ O
+
+
+ the
+ the
+ 1512
+ 1515
+ DT
+ O
+
+
+ health
+ health
+ 1516
+ 1522
+ NN
+ O
+
+
+ of
+ of
+ 1523
+ 1525
+ IN
+ O
+
+
+ Americans
+ Americans
+ 1526
+ 1535
+ NNPS
+ MISC
+
+
+ .
+ .
+ 1535
+ 1536
+ .
+ O
+
+
+ (ROOT (S (NP (PRP We)) (VP (MD must) (VP (NP (NP (JJ pro-) (NN tect)) (NP (NP (DT the) (NN health)) (PP (IN of) (NP (NNPS Americans))))))) (. .)))
+
+
+ ROOT
+ tect
+
+
+ tect
+ We
+
+
+ tect
+ must
+
+
+ tect
+ pro-
+
+
+ health
+ the
+
+
+ tect
+ health
+
+
+ health
+ of
+
+
+ of
+ Americans
+
+
+
+
+ ROOT
+ tect
+
+
+ tect
+ We
+
+
+ tect
+ must
+
+
+ tect
+ pro-
+
+
+ health
+ the
+
+
+ tect
+ health
+
+
+ health
+ Americans
+
+
+
+
+ ROOT
+ tect
+
+
+ tect
+ We
+
+
+ tect
+ must
+
+
+ tect
+ pro-
+
+
+ health
+ the
+
+
+ tect
+ health
+
+
+ health
+ Americans
+
+
+
+
+
+
+ We
+ we
+ 1540
+ 1542
+ PRP
+ O
+
+
+ will
+ will
+ 1543
+ 1547
+ MD
+ O
+
+
+ ,
+ ,
+ 1547
+ 1548
+ ,
+ O
+
+
+ as
+ as
+ 1549
+ 1551
+ IN
+ O
+
+
+ we
+ we
+ 1552
+ 1554
+ PRP
+ O
+
+
+ should
+ should
+ 1555
+ 1561
+ MD
+ O
+
+
+ ,
+ ,
+ 1561
+ 1562
+ ,
+ O
+
+
+ debate
+ debate
+ 1563
+ 1569
+ VB
+ O
+
+
+ the
+ the
+ 1570
+ 1573
+ DT
+ O
+
+
+ costs
+ cost
+ 1575
+ 1580
+ NNS
+ O
+
+
+ of
+ of
+ 1581
+ 1583
+ IN
+ O
+
+
+ this
+ this
+ 1584
+ 1588
+ DT
+ O
+
+
+ bill
+ bill
+ 1589
+ 1593
+ NN
+ O
+
+
+ .
+ .
+ 1593
+ 1594
+ .
+ O
+
+
+ (ROOT (S (NP (PRP We)) (VP (MD will) (, ,) (SBAR (IN as) (S (NP (PRP we)) (VP (MD should)))) (, ,) (VP (VB debate) (NP (NP (DT the) (NNS costs)) (PP (IN of) (NP (DT this) (NN bill)))))) (. .)))
+
+
+ ROOT
+ debate
+
+
+ debate
+ We
+
+
+ debate
+ will
+
+
+ should
+ as
+
+
+ should
+ we
+
+
+ debate
+ should
+
+
+ costs
+ the
+
+
+ debate
+ costs
+
+
+ costs
+ of
+
+
+ bill
+ this
+
+
+ of
+ bill
+
+
+
+
+ ROOT
+ debate
+
+
+ debate
+ We
+
+
+ debate
+ will
+
+
+ should
+ as
+
+
+ should
+ we
+
+
+ debate
+ should
+
+
+ costs
+ the
+
+
+ debate
+ costs
+
+
+ bill
+ this
+
+
+ costs
+ bill
+
+
+
+
+ ROOT
+ debate
+
+
+ debate
+ We
+
+
+ debate
+ will
+
+
+ should
+ as
+
+
+ should
+ we
+
+
+ debate
+ should
+
+
+ costs
+ the
+
+
+ debate
+ costs
+
+
+ bill
+ this
+
+
+ costs
+ bill
+
+
+
+
+
+
+ In
+ in
+ 1595
+ 1597
+ IN
+ O
+
+
+ that
+ that
+ 1598
+ 1602
+ DT
+ O
+
+
+ regard
+ regard
+ 1603
+ 1609
+ NN
+ O
+
+
+ ,
+ ,
+ 1609
+ 1610
+ ,
+ O
+
+
+ I
+ I
+ 1611
+ 1612
+ PRP
+ O
+
+
+ em
+ em
+ 1613
+ 1615
+ SYM
+ O
+
+
+ -
+ -
+ 1615
+ 1616
+ :
+ O
+
+
+ phasize
+ phasize
+ 1618
+ 1625
+ VB
+ O
+
+
+ two
+ two
+ 1626
+ 1629
+ CD
+ NUMBER
+ 2.0
+
+
+ points
+ point
+ 1630
+ 1636
+ NNS
+ O
+
+
+ .
+ .
+ 1636
+ 1637
+ .
+ O
+
+
+ (ROOT (S (PP (IN In) (NP (NP (DT that)) (SBAR (S (VP (NP (NP (NP (NN regard)) (, ,) (NP (PRP I))) (X (SYM em)))))))) (: -) (VP (VB phasize) (NP (CD two) (NNS points))) (. .)))
+
+
+ ROOT
+ phasize
+
+
+ phasize
+ In
+
+
+ In
+ that
+
+
+ that
+ regard
+
+
+ regard
+ I
+
+
+ regard
+ em
+
+
+ points
+ two
+
+
+ phasize
+ points
+
+
+
+
+ ROOT
+ phasize
+
+
+ phasize
+ that
+
+
+ that
+ regard
+
+
+ regard
+ I
+
+
+ regard
+ em
+
+
+ points
+ two
+
+
+ phasize
+ points
+
+
+
+
+ ROOT
+ phasize
+
+
+ phasize
+ that
+
+
+ that
+ regard
+
+
+ regard
+ I
+
+
+ regard
+ em
+
+
+ points
+ two
+
+
+ phasize
+ points
+
+
+
+
+
+
+ First
+ first
+ 1641
+ 1646
+ RB
+ ORDINAL
+ 1.0
+
+
+ ,
+ ,
+ 1646
+ 1647
+ ,
+ O
+
+
+ if
+ if
+ 1648
+ 1650
+ IN
+ O
+
+
+ measured
+ measure
+ 1651
+ 1659
+ VBN
+ O
+
+
+ solely
+ solely
+ 1660
+ 1666
+ RB
+ O
+
+
+ in
+ in
+ 1667
+ 1669
+ IN
+ O
+
+
+ dollars
+ dollar
+ 1670
+ 1677
+ NNS
+ O
+
+
+ and
+ and
+ 1679
+ 1682
+ CC
+ O
+
+
+ cents
+ cent
+ 1683
+ 1688
+ NNS
+ O
+
+
+ ,
+ ,
+ 1688
+ 1689
+ ,
+ O
+
+
+ this
+ this
+ 1690
+ 1694
+ DT
+ O
+
+
+ bill
+ bill
+ 1695
+ 1699
+ NN
+ O
+
+
+ should
+ should
+ 1700
+ 1706
+ MD
+ O
+
+
+ pass
+ pass
+ 1707
+ 1711
+ VB
+ O
+
+
+ because
+ because
+ 1712
+ 1719
+ IN
+ O
+
+
+ the
+ the
+ 1721
+ 1724
+ DT
+ O
+
+
+ cost
+ cost
+ 1725
+ 1729
+ NN
+ O
+
+
+ of
+ of
+ 1730
+ 1732
+ IN
+ O
+
+
+ inaction
+ inaction
+ 1733
+ 1741
+ NN
+ O
+
+
+ is
+ be
+ 1742
+ 1744
+ VBZ
+ O
+
+
+ higher
+ higher
+ 1745
+ 1751
+ JJR
+ O
+
+
+ than
+ than
+ 1752
+ 1756
+ IN
+ O
+
+
+ the
+ the
+ 1757
+ 1760
+ DT
+ O
+
+
+ cost
+ cost
+ 1762
+ 1766
+ NN
+ O
+
+
+ of
+ of
+ 1767
+ 1769
+ IN
+ O
+
+
+ action
+ action
+ 1770
+ 1776
+ NN
+ O
+
+
+ .
+ .
+ 1776
+ 1777
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB First)) (, ,) (SBAR (IN if) (S (VP (VBN measured) (ADVP (RB solely)) (PP (IN in) (NP (NNS dollars) (CC and) (NNS cents)))))) (, ,) (NP (DT this) (NN bill)) (VP (MD should) (VP (VB pass) (SBAR (IN because) (S (NP (NP (DT the) (NN cost)) (PP (IN of) (NP (NN inaction)))) (VP (VBZ is) (ADJP (ADJP (JJR higher)) (PP (IN than) (NP (NP (DT the) (NN cost)) (PP (IN of) (NP (NN action))))))))))) (. .)))
+
+
+ ROOT
+ pass
+
+
+ pass
+ First
+
+
+ measured
+ if
+
+
+ pass
+ measured
+
+
+ measured
+ solely
+
+
+ measured
+ in
+
+
+ in
+ dollars
+
+
+ dollars
+ and
+
+
+ dollars
+ cents
+
+
+ bill
+ this
+
+
+ pass
+ bill
+
+
+ pass
+ should
+
+
+ higher
+ because
+
+
+ cost
+ the
+
+
+ higher
+ cost
+
+
+ cost
+ of
+
+
+ of
+ inaction
+
+
+ higher
+ is
+
+
+ pass
+ higher
+
+
+ higher
+ than
+
+
+ cost
+ the
+
+
+ than
+ cost
+
+
+ cost
+ of
+
+
+ of
+ action
+
+
+
+
+ ROOT
+ pass
+
+
+ pass
+ First
+
+
+ measured
+ if
+
+
+ pass
+ measured
+
+
+ measured
+ solely
+
+
+ measured
+ dollars
+
+
+ dollars
+ cents
+
+
+ bill
+ this
+
+
+ pass
+ bill
+
+
+ pass
+ should
+
+
+ higher
+ because
+
+
+ cost
+ the
+
+
+ higher
+ cost
+
+
+ cost
+ inaction
+
+
+ higher
+ is
+
+
+ pass
+ higher
+
+
+ cost
+ the
+
+
+ higher
+ cost
+
+
+ cost
+ action
+
+
+
+
+ ROOT
+ pass
+
+
+ pass
+ First
+
+
+ measured
+ if
+
+
+ pass
+ measured
+
+
+ measured
+ solely
+
+
+ measured
+ dollars
+
+
+ measured
+ cents
+
+
+ dollars
+ cents
+
+
+ bill
+ this
+
+
+ pass
+ bill
+
+
+ pass
+ should
+
+
+ higher
+ because
+
+
+ cost
+ the
+
+
+ higher
+ cost
+
+
+ cost
+ inaction
+
+
+ higher
+ is
+
+
+ pass
+ higher
+
+
+ cost
+ the
+
+
+ higher
+ cost
+
+
+ cost
+ action
+
+
+
+
+
+
+ It
+ it
+ 1781
+ 1783
+ PRP
+ O
+
+
+ costs
+ cost
+ 1784
+ 1789
+ VBZ
+ O
+
+
+ the
+ the
+ 1790
+ 1793
+ DT
+ O
+
+
+ United
+ United
+ 1794
+ 1800
+ NNP
+ LOCATION
+
+
+ States
+ States
+ 1801
+ 1807
+ NNPS
+ LOCATION
+
+
+ more
+ more
+ 1808
+ 1812
+ RBR
+ O
+
+
+ in
+ in
+ 1813
+ 1815
+ IN
+ O
+
+
+ health
+ health
+ 1817
+ 1823
+ NN
+ O
+
+
+ care
+ care
+ 1824
+ 1828
+ NN
+ O
+
+
+ and
+ and
+ 1829
+ 1832
+ CC
+ O
+
+
+ lost
+ lose
+ 1833
+ 1837
+ VBD
+ O
+
+
+ productivity
+ productivity
+ 1838
+ 1850
+ NN
+ O
+
+
+ than
+ than
+ 1851
+ 1855
+ IN
+ O
+
+
+ it
+ it
+ 1857
+ 1859
+ PRP
+ O
+
+
+ would
+ would
+ 1860
+ 1865
+ MD
+ O
+
+
+ to
+ to
+ 1866
+ 1868
+ TO
+ O
+
+
+ clean
+ clean
+ 1869
+ 1874
+ VB
+ O
+
+
+ up
+ up
+ 1875
+ 1877
+ RP
+ O
+
+
+ air
+ air
+ 1878
+ 1881
+ NN
+ O
+
+
+ pollution
+ pollution
+ 1882
+ 1891
+ NN
+ O
+
+
+ .
+ .
+ 1891
+ 1892
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VP (VBZ costs) (NP (DT the) (NNP United) (NNPS States)) (NP (NP (RBR more)) (PP (IN in) (NP (NN health) (NN care))))) (CC and) (VP (VBD lost) (NP (NN productivity)) (SBAR (IN than) (S (NP (PRP it)) (VP (MD would) (S (VP (TO to) (VP (VB clean) (PRT (RP up)) (NP (NN air) (NN pollution)))))))))) (. .)))
+
+
+ ROOT
+ costs
+
+
+ costs
+ It
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ costs
+ States
+
+
+ costs
+ more
+
+
+ more
+ in
+
+
+ care
+ health
+
+
+ in
+ care
+
+
+ costs
+ and
+
+
+ costs
+ lost
+
+
+ lost
+ productivity
+
+
+ would
+ than
+
+
+ would
+ it
+
+
+ lost
+ would
+
+
+ clean
+ to
+
+
+ would
+ clean
+
+
+ clean
+ up
+
+
+ pollution
+ air
+
+
+ clean
+ pollution
+
+
+
+
+ ROOT
+ costs
+
+
+ costs
+ It
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ costs
+ States
+
+
+ costs
+ more
+
+
+ care
+ health
+
+
+ more
+ care
+
+
+ costs
+ lost
+
+
+ lost
+ productivity
+
+
+ would
+ than
+
+
+ would
+ it
+
+
+ lost
+ would
+
+
+ clean
+ to
+
+
+ would
+ clean
+
+
+ clean
+ up
+
+
+ pollution
+ air
+
+
+ clean
+ pollution
+
+
+
+
+ ROOT
+ costs
+
+
+ costs
+ It
+
+
+ lost
+ It
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ costs
+ States
+
+
+ costs
+ more
+
+
+ care
+ health
+
+
+ more
+ care
+
+
+ costs
+ lost
+
+
+ lost
+ productivity
+
+
+ would
+ than
+
+
+ would
+ it
+
+
+ lost
+ would
+
+
+ clean
+ to
+
+
+ would
+ clean
+
+
+ clean
+ up
+
+
+ pollution
+ air
+
+
+ clean
+ pollution
+
+
+
+
+
+
+ This
+ this
+ 1893
+ 1897
+ DT
+ O
+
+
+ 0
+ 0
+ 1901
+ 1902
+ CD
+ NUMBER
+ 0.0
+
+
+ This
+ this
+ 1903
+ 1907
+ DT
+ O
+
+
+ ``
+ ``
+ 1908
+ 1909
+ ``
+ O
+
+
+ bullet
+ bullet
+ 1909
+ 1915
+ NN
+ O
+
+
+ ''
+ ''
+ 1915
+ 1916
+ ''
+ O
+
+
+ symbol
+ symbol
+ 1917
+ 1923
+ NN
+ O
+
+
+ identifies
+ identify
+ 1924
+ 1934
+ VBZ
+ O
+
+
+ statements
+ statement
+ 1935
+ 1945
+ NNS
+ O
+
+
+ or
+ or
+ 1946
+ 1948
+ CC
+ O
+
+
+ insertions
+ insertion
+ 1949
+ 1959
+ NNS
+ O
+
+
+ which
+ which
+ 1960
+ 1965
+ WDT
+ O
+
+
+ are
+ be
+ 1966
+ 1969
+ VBP
+ O
+
+
+ not
+ not
+ 1970
+ 1973
+ RB
+ O
+
+
+ spoken
+ speak
+ 1974
+ 1980
+ VBN
+ O
+
+
+ by
+ by
+ 1981
+ 1983
+ IN
+ O
+
+
+ a
+ a
+ 1984
+ 1985
+ DT
+ O
+
+
+ Member
+ Member
+ 1986
+ 1992
+ NNP
+ O
+
+
+ of
+ of
+ 1993
+ 1995
+ IN
+ O
+
+
+ the
+ the
+ 1996
+ 1999
+ DT
+ O
+
+
+ Senate
+ Senate
+ 2000
+ 2006
+ NNP
+ ORGANIZATION
+
+
+ on
+ on
+ 2007
+ 2009
+ IN
+ O
+
+
+ the
+ the
+ 2010
+ 2013
+ DT
+ O
+
+
+ floor
+ floor
+ 2014
+ 2019
+ NN
+ O
+
+
+ .
+ .
+ 2019
+ 2020
+ .
+ O
+
+
+ (ROOT (S (NP (NP (DT This) (CD 0)) (NP (DT This) (`` ``) (NN bullet) ('' '') (NN symbol))) (VP (VBZ identifies) (NP (NP (NNS statements) (CC or) (NNS insertions)) (SBAR (WHNP (WDT which)) (S (VP (VBP are) (RB not) (VP (VBN spoken) (PP (IN by) (NP (NP (DT a) (NNP Member)) (PP (IN of) (NP (DT the) (NNP Senate))))) (PP (IN on) (NP (DT the) (NN floor))))))))) (. .)))
+
+
+ ROOT
+ identifies
+
+
+ 0
+ This
+
+
+ identifies
+ 0
+
+
+ symbol
+ This
+
+
+ symbol
+ bullet
+
+
+ 0
+ symbol
+
+
+ identifies
+ statements
+
+
+ statements
+ or
+
+
+ statements
+ insertions
+
+
+ spoken
+ which
+
+
+ spoken
+ are
+
+
+ spoken
+ not
+
+
+ statements
+ spoken
+
+
+ spoken
+ by
+
+
+ Member
+ a
+
+
+ by
+ Member
+
+
+ Member
+ of
+
+
+ Senate
+ the
+
+
+ of
+ Senate
+
+
+ spoken
+ on
+
+
+ floor
+ the
+
+
+ on
+ floor
+
+
+
+
+ ROOT
+ identifies
+
+
+ 0
+ This
+
+
+ identifies
+ 0
+
+
+ symbol
+ This
+
+
+ symbol
+ bullet
+
+
+ 0
+ symbol
+
+
+ identifies
+ statements
+
+
+ statements
+ insertions
+
+
+ spoken
+ which
+
+
+ spoken
+ are
+
+
+ spoken
+ not
+
+
+ statements
+ spoken
+
+
+ Member
+ a
+
+
+ spoken
+ Member
+
+
+ Senate
+ the
+
+
+ Member
+ Senate
+
+
+ floor
+ the
+
+
+ spoken
+ floor
+
+
+
+
+ ROOT
+ identifies
+
+
+ 0
+ This
+
+
+ identifies
+ 0
+
+
+ symbol
+ This
+
+
+ symbol
+ bullet
+
+
+ 0
+ symbol
+
+
+ identifies
+ statements
+
+
+ identifies
+ insertions
+
+
+ statements
+ insertions
+
+
+ spoken
+ which
+
+
+ spoken
+ are
+
+
+ spoken
+ not
+
+
+ statements
+ spoken
+
+
+ Member
+ a
+
+
+ spoken
+ Member
+
+
+ Senate
+ the
+
+
+ Member
+ Senate
+
+
+ floor
+ the
+
+
+ spoken
+ floor
+
+
+
+
+
+
+ CONGRESSIONAL
+ congressional
+ 2028
+ 2041
+ JJ
+ O
+
+
+ RECORD-SENATE
+ record-senate
+ 2042
+ 2055
+ NN
+ O
+
+
+ bill
+ bill
+ 2059
+ 2063
+ NN
+ O
+
+
+ will
+ will
+ 2064
+ 2068
+ MD
+ O
+
+
+ save
+ save
+ 2069
+ 2073
+ VB
+ O
+
+
+ the
+ the
+ 2074
+ 2077
+ DT
+ O
+
+
+ American
+ american
+ 2078
+ 2086
+ JJ
+ LOCATION
+
+
+ people
+ people
+ 2087
+ 2093
+ NNS
+ O
+
+
+ money
+ money
+ 2095
+ 2100
+ NN
+ O
+
+
+ .
+ .
+ 2100
+ 2101
+ .
+ O
+
+
+ (ROOT (S (NP (JJ CONGRESSIONAL) (NN RECORD-SENATE) (NN bill)) (VP (MD will) (VP (VB save) (NP (DT the) (JJ American) (NNS people) (NN money)))) (. .)))
+
+
+ ROOT
+ save
+
+
+ bill
+ CONGRESSIONAL
+
+
+ bill
+ RECORD-SENATE
+
+
+ save
+ bill
+
+
+ save
+ will
+
+
+ money
+ the
+
+
+ money
+ American
+
+
+ money
+ people
+
+
+ save
+ money
+
+
+
+
+ ROOT
+ save
+
+
+ bill
+ CONGRESSIONAL
+
+
+ bill
+ RECORD-SENATE
+
+
+ save
+ bill
+
+
+ save
+ will
+
+
+ money
+ the
+
+
+ money
+ American
+
+
+ money
+ people
+
+
+ save
+ money
+
+
+
+
+ ROOT
+ save
+
+
+ bill
+ CONGRESSIONAL
+
+
+ bill
+ RECORD-SENATE
+
+
+ save
+ bill
+
+
+ save
+ will
+
+
+ money
+ the
+
+
+ money
+ American
+
+
+ money
+ people
+
+
+ save
+ money
+
+
+
+
+
+
+ Second
+ second
+ 2105
+ 2111
+ RB
+ ORDINAL
+ 2.0
+
+
+ ,
+ ,
+ 2111
+ 2112
+ ,
+ O
+
+
+ the
+ the
+ 2113
+ 2116
+ DT
+ O
+
+
+ bill
+ bill
+ 2117
+ 2121
+ NN
+ O
+
+
+ ought
+ ought
+ 2122
+ 2127
+ MD
+ O
+
+
+ not
+ not
+ 2128
+ 2131
+ RB
+ O
+
+
+ be
+ be
+ 2132
+ 2134
+ VB
+ O
+
+
+ meas
+ meas
+ 2135
+ 2139
+ SYM
+ O
+
+
+ -
+ -
+ 2139
+ 2140
+ :
+ O
+
+
+ ured
+ ured
+ 2142
+ 2146
+ JJ
+ O
+
+
+ solely
+ solely
+ 2147
+ 2153
+ RB
+ O
+
+
+ in
+ in
+ 2154
+ 2156
+ IN
+ O
+
+
+ dollars
+ dollar
+ 2157
+ 2164
+ NNS
+ O
+
+
+ and
+ and
+ 2165
+ 2168
+ CC
+ O
+
+
+ cents
+ cent
+ 2169
+ 2174
+ NNS
+ O
+
+
+ .
+ .
+ 2174
+ 2175
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB Second)) (, ,) (NP (DT the) (NN bill)) (VP (MD ought) (RB not) (VP (VB be) (X (X (SYM meas)) (: -) (ADJP (JJ ured) (PP (RB solely) (IN in) (NP (NNS dollars) (CC and) (NNS cents)))) (. .))))))
+
+
+ ROOT
+ ought
+
+
+ ought
+ Second
+
+
+ bill
+ the
+
+
+ ought
+ bill
+
+
+ ought
+ not
+
+
+ ought
+ be
+
+
+ ured
+ meas
+
+
+ be
+ ured
+
+
+ in
+ solely
+
+
+ ured
+ in
+
+
+ in
+ dollars
+
+
+ dollars
+ and
+
+
+ dollars
+ cents
+
+
+
+
+ ROOT
+ ought
+
+
+ ought
+ Second
+
+
+ bill
+ the
+
+
+ ought
+ bill
+
+
+ ought
+ not
+
+
+ ought
+ be
+
+
+ ured
+ meas
+
+
+ be
+ ured
+
+
+ ured
+ solely
+
+
+ ured
+ dollars
+
+
+ dollars
+ cents
+
+
+
+
+ ROOT
+ ought
+
+
+ ought
+ Second
+
+
+ bill
+ the
+
+
+ ought
+ bill
+
+
+ ought
+ not
+
+
+ ought
+ be
+
+
+ ured
+ meas
+
+
+ be
+ ured
+
+
+ ured
+ solely
+
+
+ ured
+ dollars
+
+
+ ured
+ cents
+
+
+ dollars
+ cents
+
+
+
+
+
+
+ That
+ that
+ 2176
+ 2180
+ DT
+ O
+
+
+ would
+ would
+ 2182
+ 2187
+ MD
+ O
+
+
+ exclude
+ exclude
+ 2188
+ 2195
+ VB
+ O
+
+
+ consideration
+ consideration
+ 2196
+ 2209
+ NN
+ O
+
+
+ of
+ of
+ 2210
+ 2212
+ IN
+ O
+
+
+ the
+ the
+ 2213
+ 2216
+ DT
+ O
+
+
+ most
+ most
+ 2218
+ 2222
+ RBS
+ O
+
+
+ important
+ important
+ 2223
+ 2232
+ JJ
+ O
+
+
+ of
+ of
+ 2233
+ 2235
+ IN
+ O
+
+
+ our
+ we
+ 2236
+ 2239
+ PRP$
+ O
+
+
+ values-human
+ values-human
+ 2240
+ 2252
+ NN
+ O
+
+
+ values
+ value
+ 2254
+ 2260
+ NNS
+ O
+
+
+ .
+ .
+ 2260
+ 2261
+ .
+ O
+
+
+ (ROOT (S (NP (DT That)) (VP (MD would) (VP (VB exclude) (NP (NP (NN consideration)) (PP (IN of) (NP (NP (DT the) (ADJP (RBS most) (JJ important))) (PP (IN of) (NP (PRP$ our) (NN values-human) (NNS values)))))))) (. .)))
+
+
+ ROOT
+ exclude
+
+
+ exclude
+ That
+
+
+ exclude
+ would
+
+
+ exclude
+ consideration
+
+
+ consideration
+ of
+
+
+ important
+ the
+
+
+ important
+ most
+
+
+ of
+ important
+
+
+ important
+ of
+
+
+ values
+ our
+
+
+ values
+ values-human
+
+
+ of
+ values
+
+
+
+
+ ROOT
+ exclude
+
+
+ exclude
+ That
+
+
+ exclude
+ would
+
+
+ exclude
+ consideration
+
+
+ important
+ the
+
+
+ important
+ most
+
+
+ consideration
+ important
+
+
+ values
+ our
+
+
+ values
+ values-human
+
+
+ important
+ values
+
+
+
+
+ ROOT
+ exclude
+
+
+ exclude
+ That
+
+
+ exclude
+ would
+
+
+ exclude
+ consideration
+
+
+ important
+ the
+
+
+ important
+ most
+
+
+ consideration
+ important
+
+
+ values
+ our
+
+
+ values
+ values-human
+
+
+ important
+ values
+
+
+
+
+
+
+ The
+ the
+ 2265
+ 2268
+ DT
+ O
+
+
+ evidence
+ evidence
+ 2269
+ 2277
+ NN
+ O
+
+
+ is
+ be
+ 2278
+ 2280
+ VBZ
+ O
+
+
+ clear
+ clear
+ 2281
+ 2286
+ JJ
+ O
+
+
+ ,
+ ,
+ 2286
+ 2287
+ ,
+ O
+
+
+ compelling
+ compelling
+ 2288
+ 2298
+ JJ
+ O
+
+
+ and
+ and
+ 2300
+ 2303
+ CC
+ O
+
+
+ undisputed
+ undisputed
+ 2304
+ 2314
+ JJ
+ O
+
+
+ that
+ that
+ 2315
+ 2319
+ IN
+ O
+
+
+ air
+ air
+ 2320
+ 2323
+ NN
+ O
+
+
+ pollution
+ pollution
+ 2324
+ 2333
+ NN
+ O
+
+
+ causes
+ cause
+ 2335
+ 2341
+ VBZ
+ O
+
+
+ thousands
+ thousand
+ 2342
+ 2351
+ NNS
+ O
+
+
+ of
+ of
+ 2352
+ 2354
+ IN
+ O
+
+
+ premature
+ premature
+ 2355
+ 2364
+ JJ
+ O
+
+
+ deaths
+ death
+ 2365
+ 2371
+ NNS
+ O
+
+
+ and
+ and
+ 2373
+ 2376
+ CC
+ O
+
+
+ millions
+ million
+ 2377
+ 2385
+ NNS
+ O
+
+
+ of
+ of
+ 2386
+ 2388
+ IN
+ O
+
+
+ illnesses
+ illness
+ 2389
+ 2398
+ NNS
+ O
+
+
+ each
+ each
+ 2399
+ 2403
+ DT
+ SET
+ P1Y
+
+
+ year
+ year
+ 2404
+ 2408
+ NN
+ SET
+ P1Y
+
+
+ .
+ .
+ 2408
+ 2409
+ .
+ O
+
+
+ (ROOT (S (NP (DT The) (NN evidence)) (VP (VBZ is) (ADJP (JJ clear) (, ,) (JJ compelling) (CC and) (JJ undisputed)) (SBAR (IN that) (S (NP (NN air) (NN pollution)) (VP (VBZ causes) (NP (NP (NNS thousands)) (PP (IN of) (NP (NP (JJ premature) (NNS deaths) (CC and) (NNS millions)) (PP (IN of) (NP (NP (NNS illnesses)) (NP (DT each) (NN year))))))))))) (. .)))
+
+
+ ROOT
+ clear
+
+
+ evidence
+ The
+
+
+ clear
+ evidence
+
+
+ clear
+ is
+
+
+ clear
+ compelling
+
+
+ clear
+ and
+
+
+ clear
+ undisputed
+
+
+ causes
+ that
+
+
+ pollution
+ air
+
+
+ causes
+ pollution
+
+
+ clear
+ causes
+
+
+ causes
+ thousands
+
+
+ thousands
+ of
+
+
+ deaths
+ premature
+
+
+ of
+ deaths
+
+
+ deaths
+ and
+
+
+ deaths
+ millions
+
+
+ deaths
+ of
+
+
+ of
+ illnesses
+
+
+ year
+ each
+
+
+ illnesses
+ year
+
+
+
+
+ ROOT
+ clear
+
+
+ evidence
+ The
+
+
+ clear
+ evidence
+
+
+ clear
+ is
+
+
+ clear
+ compelling
+
+
+ clear
+ undisputed
+
+
+ causes
+ that
+
+
+ pollution
+ air
+
+
+ causes
+ pollution
+
+
+ clear
+ causes
+
+
+ causes
+ thousands
+
+
+ deaths
+ premature
+
+
+ thousands
+ deaths
+
+
+ deaths
+ millions
+
+
+ deaths
+ illnesses
+
+
+ year
+ each
+
+
+ illnesses
+ year
+
+
+
+
+ ROOT
+ clear
+
+
+ evidence
+ The
+
+
+ clear
+ evidence
+
+
+ compelling
+ evidence
+
+
+ undisputed
+ evidence
+
+
+ clear
+ is
+
+
+ clear
+ compelling
+
+
+ clear
+ undisputed
+
+
+ causes
+ that
+
+
+ pollution
+ air
+
+
+ causes
+ pollution
+
+
+ clear
+ causes
+
+
+ causes
+ thousands
+
+
+ deaths
+ premature
+
+
+ thousands
+ deaths
+
+
+ thousands
+ millions
+
+
+ deaths
+ millions
+
+
+ deaths
+ illnesses
+
+
+ year
+ each
+
+
+ illnesses
+ year
+
+
+
+
+
+
+ Es
+ es
+ 2410
+ 2412
+ SYM
+ O
+
+
+ -
+ -
+ 2412
+ 2413
+ :
+ O
+
+
+ pecially
+ pecially
+ 2415
+ 2423
+ RB
+ O
+
+
+ vulnerable
+ vulnerable
+ 2424
+ 2434
+ JJ
+ O
+
+
+ are
+ be
+ 2435
+ 2438
+ VBP
+ O
+
+
+ children
+ child
+ 2439
+ 2447
+ NNS
+ O
+
+
+ .
+ .
+ 2447
+ 2448
+ .
+ O
+
+
+ (ROOT (FRAG (X (SYM Es)) (: -) (VP (ADVP (ADVP (RB pecially)) (JJ vulnerable)) (VBP are) (NP (NNS children))) (. .)))
+
+
+ ROOT
+ children
+
+
+ children
+ Es
+
+
+ children
+ pecially
+
+
+ pecially
+ vulnerable
+
+
+ children
+ are
+
+
+
+
+ ROOT
+ children
+
+
+ children
+ Es
+
+
+ children
+ pecially
+
+
+ pecially
+ vulnerable
+
+
+ children
+ are
+
+
+
+
+ ROOT
+ children
+
+
+ children
+ Es
+
+
+ children
+ pecially
+
+
+ pecially
+ vulnerable
+
+
+ children
+ are
+
+
+
+
+
+
+ I
+ I
+ 2452
+ 2453
+ PRP
+ O
+
+
+ ask
+ ask
+ 2454
+ 2457
+ VBP
+ O
+
+
+ each
+ each
+ 2458
+ 2462
+ DT
+ O
+
+
+ Senator
+ Senator
+ 2463
+ 2470
+ NNP
+ O
+
+
+ ,
+ ,
+ 2470
+ 2471
+ ,
+ O
+
+
+ what
+ what
+ 2472
+ 2476
+ WP
+ O
+
+
+ Is
+ be
+ 2477
+ 2479
+ VBZ
+ O
+
+
+ the
+ the
+ 2480
+ 2483
+ DT
+ O
+
+
+ dollar
+ dollar
+ 2485
+ 2491
+ NN
+ O
+
+
+ value
+ value
+ 2492
+ 2497
+ NN
+ O
+
+
+ of
+ of
+ 2498
+ 2500
+ IN
+ O
+
+
+ a
+ a
+ 2501
+ 2502
+ DT
+ O
+
+
+ human
+ human
+ 2503
+ 2508
+ JJ
+ O
+
+
+ life
+ life
+ 2509
+ 2513
+ NN
+ O
+
+
+ ?
+ ?
+ 2513
+ 2514
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (VBP ask) (NP (NP (DT each) (NNP Senator)) (, ,) (SBAR (WHNP (WP what)) (S (VP (VBZ Is) (NP (NP (DT the) (NN dollar) (NN value)) (PP (IN of) (NP (DT a) (JJ human) (NN life))))))))) (. ?)))
+
+
+ ROOT
+ ask
+
+
+ ask
+ I
+
+
+ Senator
+ each
+
+
+ ask
+ Senator
+
+
+ value
+ what
+
+
+ value
+ Is
+
+
+ value
+ the
+
+
+ value
+ dollar
+
+
+ Senator
+ value
+
+
+ value
+ of
+
+
+ life
+ a
+
+
+ life
+ human
+
+
+ of
+ life
+
+
+
+
+ ROOT
+ ask
+
+
+ ask
+ I
+
+
+ Senator
+ each
+
+
+ ask
+ Senator
+
+
+ value
+ what
+
+
+ value
+ Is
+
+
+ value
+ the
+
+
+ value
+ dollar
+
+
+ Senator
+ value
+
+
+ life
+ a
+
+
+ life
+ human
+
+
+ value
+ life
+
+
+
+
+ ROOT
+ ask
+
+
+ ask
+ I
+
+
+ Senator
+ each
+
+
+ ask
+ Senator
+
+
+ value
+ what
+
+
+ value
+ Is
+
+
+ value
+ the
+
+
+ value
+ dollar
+
+
+ Senator
+ value
+
+
+ life
+ a
+
+
+ life
+ human
+
+
+ value
+ life
+
+
+
+
+
+
+ What
+ what
+ 2515
+ 2519
+ WP
+ O
+
+
+ is
+ be
+ 2520
+ 2522
+ VBZ
+ O
+
+
+ the
+ the
+ 2524
+ 2527
+ DT
+ O
+
+
+ dollar
+ dollar
+ 2528
+ 2534
+ NN
+ O
+
+
+ value
+ value
+ 2535
+ 2540
+ NN
+ O
+
+
+ of
+ of
+ 2541
+ 2543
+ IN
+ O
+
+
+ a
+ a
+ 2544
+ 2545
+ DT
+ O
+
+
+ child
+ child
+ 2546
+ 2551
+ NN
+ O
+
+
+ 's
+ 's
+ 2551
+ 2553
+ POS
+ O
+
+
+ health
+ health
+ 2554
+ 2560
+ NN
+ O
+
+
+ ?
+ ?
+ 2560
+ 2561
+ .
+ O
+
+
+ (ROOT (SBARQ (WHNP (WP What)) (SQ (VBZ is) (NP (NP (DT the) (NN dollar) (NN value)) (PP (IN of) (NP (NP (DT a) (NN child) (POS 's)) (NN health))))) (. ?)))
+
+
+ ROOT
+ is
+
+
+ is
+ What
+
+
+ value
+ the
+
+
+ value
+ dollar
+
+
+ is
+ value
+
+
+ value
+ of
+
+
+ child
+ a
+
+
+ health
+ child
+
+
+ child
+ 's
+
+
+ of
+ health
+
+
+
+
+ ROOT
+ is
+
+
+ is
+ What
+
+
+ value
+ the
+
+
+ value
+ dollar
+
+
+ is
+ value
+
+
+ child
+ a
+
+
+ health
+ child
+
+
+ value
+ health
+
+
+
+
+ ROOT
+ is
+
+
+ is
+ What
+
+
+ value
+ the
+
+
+ value
+ dollar
+
+
+ is
+ value
+
+
+ child
+ a
+
+
+ health
+ child
+
+
+ value
+ health
+
+
+
+
+
+
+ Your
+ you
+ 2563
+ 2567
+ PRP$
+ O
+
+
+ child
+ child
+ 2568
+ 2573
+ NN
+ O
+
+
+ 's
+ 's
+ 2573
+ 2575
+ POS
+ O
+
+
+ health
+ health
+ 2576
+ 2582
+ NN
+ O
+
+
+ ?
+ ?
+ 2582
+ 2583
+ .
+ O
+
+
+ (ROOT (FRAG (NP (NP (PRP$ Your) (NN child) (POS 's)) (NN health)) (. ?)))
+
+
+ ROOT
+ health
+
+
+ child
+ Your
+
+
+ health
+ child
+
+
+ child
+ 's
+
+
+
+
+ ROOT
+ health
+
+
+ child
+ Your
+
+
+ health
+ child
+
+
+
+
+ ROOT
+ health
+
+
+ child
+ Your
+
+
+ health
+ child
+
+
+
+
+
+
+ Obviously
+ obviously
+ 2584
+ 2593
+ RB
+ O
+
+
+ ,
+ ,
+ 2593
+ 2594
+ ,
+ O
+
+
+ these
+ these
+ 2595
+ 2600
+ DT
+ O
+
+
+ are
+ be
+ 2602
+ 2605
+ VBP
+ O
+
+
+ unanswerable
+ unanswerable
+ 2606
+ 2618
+ JJ
+ O
+
+
+ questions
+ question
+ 2619
+ 2628
+ NNS
+ O
+
+
+ .
+ .
+ 2628
+ 2629
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB Obviously)) (, ,) (NP (DT these)) (VP (VBP are) (NP (JJ unanswerable) (NNS questions))) (. .)))
+
+
+ ROOT
+ questions
+
+
+ questions
+ Obviously
+
+
+ questions
+ these
+
+
+ questions
+ are
+
+
+ questions
+ unanswerable
+
+
+
+
+ ROOT
+ questions
+
+
+ questions
+ Obviously
+
+
+ questions
+ these
+
+
+ questions
+ are
+
+
+ questions
+ unanswerable
+
+
+
+
+ ROOT
+ questions
+
+
+ questions
+ Obviously
+
+
+ questions
+ these
+
+
+ questions
+ are
+
+
+ questions
+ unanswerable
+
+
+
+
+
+
+ But
+ but
+ 2630
+ 2633
+ CC
+ O
+
+
+ just
+ just
+ 2634
+ 2638
+ RB
+ O
+
+
+ because
+ because
+ 2640
+ 2647
+ IN
+ O
+
+
+ we
+ we
+ 2648
+ 2650
+ PRP
+ O
+
+
+ ca
+ can
+ 2651
+ 2653
+ MD
+ O
+
+
+ n't
+ not
+ 2653
+ 2656
+ RB
+ O
+
+
+ put
+ put
+ 2657
+ 2660
+ VB
+ O
+
+
+ a
+ a
+ 2661
+ 2662
+ DT
+ O
+
+
+ dollar
+ dollar
+ 2663
+ 2669
+ NN
+ O
+
+
+ value
+ value
+ 2670
+ 2675
+ NN
+ O
+
+
+ on
+ on
+ 2676
+ 2678
+ IN
+ O
+
+
+ a
+ a
+ 2680
+ 2681
+ DT
+ O
+
+
+ child
+ child
+ 2682
+ 2687
+ NN
+ O
+
+
+ 's
+ 's
+ 2687
+ 2689
+ POS
+ O
+
+
+ health
+ health
+ 2690
+ 2696
+ NN
+ O
+
+
+ does
+ do
+ 2697
+ 2701
+ VBZ
+ O
+
+
+ n't
+ not
+ 2701
+ 2704
+ RB
+ O
+
+
+ mean
+ mean
+ 2705
+ 2709
+ VB
+ O
+
+
+ we
+ we
+ 2710
+ 2712
+ PRP
+ O
+
+
+ should
+ should
+ 2714
+ 2720
+ MD
+ O
+
+
+ exclude
+ exclude
+ 2721
+ 2728
+ VB
+ O
+
+
+ the
+ the
+ 2729
+ 2732
+ DT
+ O
+
+
+ health
+ health
+ 2733
+ 2739
+ NN
+ O
+
+
+ of
+ of
+ 2740
+ 2742
+ IN
+ O
+
+
+ Ameri
+ Ameri
+ 2743
+ 2748
+ NNP
+ LOCATION
+
+
+ -
+ -
+ 2748
+ 2749
+ :
+ O
+
+
+ can
+ can
+ 2751
+ 2754
+ MD
+ O
+
+
+ children
+ child
+ 2755
+ 2763
+ NNS
+ O
+
+
+ from
+ from
+ 2764
+ 2768
+ IN
+ O
+
+
+ this
+ this
+ 2769
+ 2773
+ DT
+ O
+
+
+ debate
+ debate
+ 2774
+ 2780
+ NN
+ O
+
+
+ .
+ .
+ 2780
+ 2781
+ .
+ O
+
+
+ (ROOT (S (CC But) (SBAR (RB just) (IN because) (S (NP (PRP we)) (VP (MD ca) (RB n't) (VP (VB put) (NP (DT a) (NN dollar) (NN value)) (PP (IN on) (NP (NP (DT a) (NN child) (POS 's)) (NN health))))))) (VP (VBZ does) (RB n't) (VP (VB mean) (SBAR (S (NP (PRP we)) (VP (MD should) (VP (VB exclude) (S (NP (NP (DT the) (NN health)) (PP (IN of) (NP (NNP Ameri)))) (: -) (VP (MD can) (VP (NP (NNS children)) (PP (IN from) (NP (DT this) (NN debate)))))))))))) (. .)))
+
+
+ ROOT
+ mean
+
+
+ mean
+ But
+
+
+ put
+ just
+
+
+ put
+ because
+
+
+ put
+ we
+
+
+ put
+ ca
+
+
+ put
+ n't
+
+
+ mean
+ put
+
+
+ value
+ a
+
+
+ value
+ dollar
+
+
+ put
+ value
+
+
+ put
+ on
+
+
+ child
+ a
+
+
+ health
+ child
+
+
+ child
+ 's
+
+
+ on
+ health
+
+
+ mean
+ does
+
+
+ mean
+ n't
+
+
+ exclude
+ we
+
+
+ exclude
+ should
+
+
+ mean
+ exclude
+
+
+ health
+ the
+
+
+ children
+ health
+
+
+ health
+ of
+
+
+ of
+ Ameri
+
+
+ children
+ can
+
+
+ exclude
+ children
+
+
+ children
+ from
+
+
+ debate
+ this
+
+
+ from
+ debate
+
+
+
+
+ ROOT
+ mean
+
+
+ mean
+ But
+
+
+ put
+ just
+
+
+ put
+ because
+
+
+ put
+ we
+
+
+ put
+ ca
+
+
+ put
+ n't
+
+
+ mean
+ put
+
+
+ value
+ a
+
+
+ value
+ dollar
+
+
+ put
+ value
+
+
+ child
+ a
+
+
+ health
+ child
+
+
+ put
+ health
+
+
+ mean
+ does
+
+
+ mean
+ n't
+
+
+ exclude
+ we
+
+
+ exclude
+ should
+
+
+ mean
+ exclude
+
+
+ health
+ the
+
+
+ children
+ health
+
+
+ health
+ Ameri
+
+
+ children
+ can
+
+
+ exclude
+ children
+
+
+ debate
+ this
+
+
+ children
+ debate
+
+
+
+
+ ROOT
+ mean
+
+
+ mean
+ But
+
+
+ put
+ just
+
+
+ put
+ because
+
+
+ put
+ we
+
+
+ put
+ ca
+
+
+ put
+ n't
+
+
+ mean
+ put
+
+
+ value
+ a
+
+
+ value
+ dollar
+
+
+ put
+ value
+
+
+ child
+ a
+
+
+ health
+ child
+
+
+ put
+ health
+
+
+ mean
+ does
+
+
+ mean
+ n't
+
+
+ exclude
+ we
+
+
+ exclude
+ should
+
+
+ mean
+ exclude
+
+
+ health
+ the
+
+
+ children
+ health
+
+
+ health
+ Ameri
+
+
+ children
+ can
+
+
+ exclude
+ children
+
+
+ debate
+ this
+
+
+ children
+ debate
+
+
+
+
+
+
+ To
+ to
+ 2782
+ 2784
+ TO
+ O
+
+
+ the
+ the
+ 2785
+ 2788
+ DT
+ O
+
+
+ contrary
+ contrary
+ 2790
+ 2798
+ NN
+ O
+
+
+ ,
+ ,
+ 2798
+ 2799
+ ,
+ O
+
+
+ it
+ it
+ 2800
+ 2802
+ PRP
+ O
+
+
+ is
+ be
+ 2803
+ 2805
+ VBZ
+ O
+
+
+ and
+ and
+ 2806
+ 2809
+ CC
+ O
+
+
+ should
+ should
+ 2810
+ 2816
+ MD
+ O
+
+
+ be
+ be
+ 2817
+ 2819
+ VB
+ O
+
+
+ central
+ central
+ 2820
+ 2827
+ JJ
+ O
+
+
+ to
+ to
+ 2828
+ 2830
+ TO
+ O
+
+
+ this
+ this
+ 2832
+ 2836
+ DT
+ O
+
+
+ debate
+ debate
+ 2837
+ 2843
+ NN
+ O
+
+
+ .
+ .
+ 2843
+ 2844
+ .
+ O
+
+
+ (ROOT (S (PP (TO To) (NP (DT the) (NN contrary))) (, ,) (NP (PRP it)) (VP (VP (VBZ is)) (CC and) (VP (MD should) (VP (VB be) (ADJP (JJ central) (PP (TO to) (NP (DT this) (NN debate))))))) (. .)))
+
+
+ ROOT
+ is
+
+
+ is
+ To
+
+
+ contrary
+ the
+
+
+ To
+ contrary
+
+
+ is
+ it
+
+
+ is
+ and
+
+
+ central
+ should
+
+
+ central
+ be
+
+
+ is
+ central
+
+
+ central
+ to
+
+
+ debate
+ this
+
+
+ to
+ debate
+
+
+
+
+ ROOT
+ is
+
+
+ contrary
+ the
+
+
+ is
+ contrary
+
+
+ is
+ it
+
+
+ central
+ should
+
+
+ central
+ be
+
+
+ is
+ central
+
+
+ debate
+ this
+
+
+ central
+ debate
+
+
+
+
+ ROOT
+ is
+
+
+ contrary
+ the
+
+
+ is
+ contrary
+
+
+ is
+ it
+
+
+ central
+ it
+
+
+ central
+ should
+
+
+ central
+ be
+
+
+ is
+ central
+
+
+ debate
+ this
+
+
+ central
+ debate
+
+
+
+
+
+
+ We
+ we
+ 2848
+ 2850
+ PRP
+ O
+
+
+ should
+ should
+ 2851
+ 2857
+ MD
+ O
+
+
+ get
+ get
+ 2858
+ 2861
+ VB
+ O
+
+
+ in
+ in
+ 2862
+ 2864
+ IN
+ O
+
+
+ perspective
+ perspective
+ 2865
+ 2876
+ NN
+ O
+
+
+ and
+ and
+ 2877
+ 2880
+ CC
+ O
+
+
+ keep
+ keep
+ 2882
+ 2886
+ VB
+ O
+
+
+ in
+ in
+ 2887
+ 2889
+ IN
+ O
+
+
+ perspective
+ perspective
+ 2890
+ 2901
+ NN
+ O
+
+
+ the
+ the
+ 2902
+ 2905
+ DT
+ O
+
+
+ fact
+ fact
+ 2906
+ 2910
+ NN
+ O
+
+
+ that
+ that
+ 2911
+ 2915
+ IN
+ O
+
+
+ we
+ we
+ 2916
+ 2918
+ PRP
+ O
+
+
+ are
+ be
+ 2920
+ 2923
+ VBP
+ O
+
+
+ considering
+ consider
+ 2924
+ 2935
+ VBG
+ O
+
+
+ a
+ a
+ 2936
+ 2937
+ DT
+ O
+
+
+ health
+ health
+ 2938
+ 2944
+ NN
+ O
+
+
+ bill
+ bill
+ 2945
+ 2949
+ NN
+ O
+
+
+ .
+ .
+ 2949
+ 2950
+ .
+ O
+
+
+ (ROOT (S (NP (PRP We)) (VP (MD should) (VP (VP (VB get) (PP (IN in) (NP (NN perspective)))) (CC and) (VP (VB keep) (PP (IN in) (NP (NN perspective))) (NP (NP (DT the) (NN fact)) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP are) (VP (VBG considering) (NP (DT a) (NN health) (NN bill)))))))))) (. .)))
+
+
+ ROOT
+ get
+
+
+ get
+ We
+
+
+ get
+ should
+
+
+ get
+ in
+
+
+ in
+ perspective
+
+
+ get
+ and
+
+
+ get
+ keep
+
+
+ keep
+ in
+
+
+ in
+ perspective
+
+
+ fact
+ the
+
+
+ keep
+ fact
+
+
+ considering
+ that
+
+
+ considering
+ we
+
+
+ considering
+ are
+
+
+ fact
+ considering
+
+
+ bill
+ a
+
+
+ bill
+ health
+
+
+ considering
+ bill
+
+
+
+
+ ROOT
+ get
+
+
+ get
+ We
+
+
+ get
+ should
+
+
+ get
+ perspective
+
+
+ get
+ keep
+
+
+ keep
+ perspective
+
+
+ fact
+ the
+
+
+ keep
+ fact
+
+
+ considering
+ that
+
+
+ considering
+ we
+
+
+ considering
+ are
+
+
+ fact
+ considering
+
+
+ bill
+ a
+
+
+ bill
+ health
+
+
+ considering
+ bill
+
+
+
+
+ ROOT
+ get
+
+
+ get
+ We
+
+
+ keep
+ We
+
+
+ get
+ should
+
+
+ get
+ perspective
+
+
+ get
+ keep
+
+
+ keep
+ perspective
+
+
+ fact
+ the
+
+
+ keep
+ fact
+
+
+ considering
+ that
+
+
+ considering
+ we
+
+
+ considering
+ are
+
+
+ fact
+ considering
+
+
+ bill
+ a
+
+
+ bill
+ health
+
+
+ considering
+ bill
+
+
+
+
+
+
+ Its
+ its
+ 2951
+ 2954
+ PRP$
+ O
+
+
+ pur
+ pur
+ 2955
+ 2958
+ SYM
+ O
+
+
+ -
+ -
+ 2958
+ 2959
+ :
+ O
+
+
+ pose
+ pose
+ 2961
+ 2965
+ VB
+ O
+
+
+ is
+ be
+ 2966
+ 2968
+ VBZ
+ O
+
+
+ basic
+ basic
+ 2969
+ 2974
+ JJ
+ O
+
+
+ :
+ :
+ 2974
+ 2975
+ :
+ O
+
+
+ To
+ to
+ 2976
+ 2978
+ TO
+ O
+
+
+ make
+ make
+ 2979
+ 2983
+ VB
+ O
+
+
+ the
+ the
+ 2984
+ 2987
+ DT
+ O
+
+
+ air
+ air
+ 2988
+ 2991
+ NN
+ O
+
+
+ we
+ we
+ 2992
+ 2994
+ PRP
+ O
+
+
+ must
+ must
+ 2995
+ 2999
+ MD
+ O
+
+
+ all
+ all
+ 3001
+ 3004
+ RB
+ O
+
+
+ breathe
+ breathe
+ 3005
+ 3012
+ VB
+ O
+
+
+ fit
+ fit
+ 3013
+ 3016
+ NN
+ O
+
+
+ for
+ for
+ 3017
+ 3020
+ IN
+ O
+
+
+ human
+ human
+ 3021
+ 3026
+ JJ
+ O
+
+
+ lungs
+ lung
+ 3027
+ 3032
+ NNS
+ O
+
+
+ .
+ .
+ 3032
+ 3033
+ .
+ O
+
+
+ (ROOT (NP (NP (PRP$ Its) (SYM pur)) (: -) (S (S (VP (VB pose) (SBAR (S (VP (VBZ is) (ADJP (JJ basic))))))) (: :) (S (VP (TO To) (VP (VB make) (NP (NP (DT the) (NN air)) (SBAR (S (NP (PRP we)) (VP (MD must) (RB all) (VP (VB breathe) (NP (NN fit)) (PP (IN for) (NP (JJ human) (NNS lungs)))))))))))) (. .)))
+
+
+ ROOT
+ Its
+
+
+ Its
+ pur
+
+
+ Its
+ pose
+
+
+ basic
+ is
+
+
+ pose
+ basic
+
+
+ make
+ To
+
+
+ pose
+ make
+
+
+ air
+ the
+
+
+ make
+ air
+
+
+ breathe
+ we
+
+
+ breathe
+ must
+
+
+ breathe
+ all
+
+
+ air
+ breathe
+
+
+ breathe
+ fit
+
+
+ breathe
+ for
+
+
+ lungs
+ human
+
+
+ for
+ lungs
+
+
+
+
+ ROOT
+ Its
+
+
+ Its
+ pur
+
+
+ Its
+ pose
+
+
+ basic
+ is
+
+
+ pose
+ basic
+
+
+ make
+ To
+
+
+ pose
+ make
+
+
+ air
+ the
+
+
+ make
+ air
+
+
+ breathe
+ we
+
+
+ breathe
+ must
+
+
+ breathe
+ all
+
+
+ air
+ breathe
+
+
+ breathe
+ fit
+
+
+ lungs
+ human
+
+
+ breathe
+ lungs
+
+
+
+
+ ROOT
+ Its
+
+
+ Its
+ pur
+
+
+ Its
+ pose
+
+
+ basic
+ is
+
+
+ pose
+ basic
+
+
+ make
+ To
+
+
+ pose
+ make
+
+
+ air
+ the
+
+
+ make
+ air
+
+
+ breathe
+ we
+
+
+ breathe
+ must
+
+
+ breathe
+ all
+
+
+ air
+ breathe
+
+
+ breathe
+ fit
+
+
+ lungs
+ human
+
+
+ breathe
+ lungs
+
+
+
+
+
+
+ Beyond
+ beyond
+ 3037
+ 3043
+ IN
+ O
+
+
+ the
+ the
+ 3044
+ 3047
+ DT
+ O
+
+
+ Clean
+ Clean
+ 3048
+ 3053
+ NNP
+ MISC
+
+
+ Air
+ Air
+ 3054
+ 3057
+ NNP
+ MISC
+
+
+ Act
+ Act
+ 3058
+ 3061
+ NNP
+ MISC
+
+
+ ,
+ ,
+ 3061
+ 3062
+ ,
+ O
+
+
+ this
+ this
+ 3063
+ 3067
+ DT
+ O
+
+
+ 2d
+ 2d
+ 3068
+ 3070
+ JJ
+ O
+
+
+ session
+ session
+ 3072
+ 3079
+ NN
+ O
+
+
+ of
+ of
+ 3080
+ 3082
+ IN
+ O
+
+
+ the
+ the
+ 3083
+ 3086
+ DT
+ O
+
+
+ 101st
+ 101st
+ 3087
+ 3092
+ CD
+ NUMBER
+ 101.0
+
+
+ Congress
+ Congress
+ 3093
+ 3101
+ NNP
+ ORGANIZATION
+
+
+ will
+ will
+ 3102
+ 3106
+ MD
+ O
+
+
+ be
+ be
+ 3107
+ 3109
+ VB
+ O
+
+
+ busy
+ busy
+ 3111
+ 3115
+ JJ
+ O
+
+
+ .
+ .
+ 3115
+ 3116
+ .
+ O
+
+
+ (ROOT (S (PP (IN Beyond) (NP (DT the) (NNP Clean) (NNP Air) (NNP Act))) (, ,) (NP (NP (DT this) (JJ 2d) (NN session)) (PP (IN of) (NP (DT the) (CD 101st)))) (NP (NNP Congress)) (VP (MD will) (VP (VB be) (ADJP (JJ busy)))) (. .)))
+
+
+ ROOT
+ busy
+
+
+ busy
+ Beyond
+
+
+ Act
+ the
+
+
+ Act
+ Clean
+
+
+ Act
+ Air
+
+
+ Beyond
+ Act
+
+
+ session
+ this
+
+
+ session
+ 2d
+
+
+ busy
+ session
+
+
+ session
+ of
+
+
+ 101st
+ the
+
+
+ of
+ 101st
+
+
+ busy
+ Congress
+
+
+ busy
+ will
+
+
+ busy
+ be
+
+
+
+
+ ROOT
+ busy
+
+
+ Act
+ the
+
+
+ Act
+ Clean
+
+
+ Act
+ Air
+
+
+ busy
+ Act
+
+
+ session
+ this
+
+
+ session
+ 2d
+
+
+ busy
+ session
+
+
+ 101st
+ the
+
+
+ session
+ 101st
+
+
+ busy
+ Congress
+
+
+ busy
+ will
+
+
+ busy
+ be
+
+
+
+
+ ROOT
+ busy
+
+
+ Act
+ the
+
+
+ Act
+ Clean
+
+
+ Act
+ Air
+
+
+ busy
+ Act
+
+
+ session
+ this
+
+
+ session
+ 2d
+
+
+ busy
+ session
+
+
+ 101st
+ the
+
+
+ session
+ 101st
+
+
+ busy
+ Congress
+
+
+ busy
+ will
+
+
+ busy
+ be
+
+
+
+
+
+
+ We
+ we
+ 3117
+ 3119
+ PRP
+ O
+
+
+ have
+ have
+ 3120
+ 3124
+ VBP
+ O
+
+
+ unfinished
+ unfinished
+ 3125
+ 3135
+ JJ
+ O
+
+
+ business
+ business
+ 3136
+ 3144
+ NN
+ O
+
+
+ from
+ from
+ 3146
+ 3150
+ IN
+ O
+
+
+ the
+ the
+ 3151
+ 3154
+ DT
+ O
+
+
+ first
+ first
+ 3155
+ 3160
+ JJ
+ ORDINAL
+ 1.0
+
+
+ session
+ session
+ 3161
+ 3168
+ NN
+ O
+
+
+ to
+ to
+ 3169
+ 3171
+ TO
+ O
+
+
+ complete
+ complete
+ 3172
+ 3180
+ VB
+ O
+
+
+ ,
+ ,
+ 3180
+ 3181
+ ,
+ O
+
+
+ im
+ im
+ 3182
+ 3184
+ SYM
+ O
+
+
+ -
+ -
+ 3184
+ 3185
+ :
+ O
+
+
+ portant
+ portant
+ 3187
+ 3194
+ JJ
+ O
+
+
+ reauthorizations
+ reauthorization
+ 3195
+ 3211
+ NNS
+ O
+
+
+ to
+ to
+ 3212
+ 3214
+ TO
+ O
+
+
+ write
+ write
+ 3215
+ 3220
+ VB
+ O
+
+
+ ,
+ ,
+ 3220
+ 3221
+ ,
+ O
+
+
+ a
+ a
+ 3222
+ 3223
+ DT
+ O
+
+
+ dramatically
+ dramatically
+ 3225
+ 3237
+ RB
+ O
+
+
+ different
+ different
+ 3238
+ 3247
+ JJ
+ O
+
+
+ world
+ world
+ 3248
+ 3253
+ NN
+ O
+
+
+ against
+ against
+ 3254
+ 3261
+ IN
+ O
+
+
+ which
+ which
+ 3263
+ 3268
+ WDT
+ O
+
+
+ to
+ to
+ 3269
+ 3271
+ TO
+ O
+
+
+ weigh
+ weigh
+ 3272
+ 3277
+ VB
+ O
+
+
+ our
+ we
+ 3278
+ 3281
+ PRP$
+ O
+
+
+ Nation
+ Nation
+ 3282
+ 3288
+ NNP
+ O
+
+
+ 's
+ 's
+ 3288
+ 3290
+ POS
+ O
+
+
+ security
+ security
+ 3291
+ 3299
+ NN
+ O
+
+
+ needs
+ need
+ 3301
+ 3306
+ NNS
+ O
+
+
+ and
+ and
+ 3307
+ 3310
+ CC
+ O
+
+
+ priorities
+ priority
+ 3311
+ 3321
+ NNS
+ O
+
+
+ ,
+ ,
+ 3321
+ 3322
+ ,
+ O
+
+
+ as
+ as
+ 3323
+ 3325
+ RB
+ O
+
+
+ well
+ well
+ 3326
+ 3330
+ RB
+ O
+
+
+ as
+ as
+ 3331
+ 3333
+ IN
+ O
+
+
+ the
+ the
+ 3334
+ 3337
+ DT
+ O
+
+
+ re
+ re
+ 3338
+ 3340
+ NN
+ O
+
+
+ -
+ -
+ 3340
+ 3341
+ :
+ O
+
+
+ quired
+ quire
+ 3343
+ 3349
+ VBN
+ O
+
+
+ budget
+ budget
+ 3351
+ 3357
+ NN
+ O
+
+
+ and
+ and
+ 3360
+ 3363
+ CC
+ O
+
+
+ appropriations
+ appropriation
+ 3366
+ 3380
+ NNS
+ O
+
+
+ measures
+ measure
+ 3382
+ 3390
+ NNS
+ O
+
+
+ for
+ for
+ 3391
+ 3394
+ IN
+ O
+
+
+ 1991
+ 1991
+ 3395
+ 3399
+ CD
+ DATE
+ 1991
+ 1991
+
+
+ .
+ .
+ 3399
+ 3400
+ .
+ O
+
+
+ (ROOT (S (NP (PRP We)) (VP (VBP have) (NP (NP (JJ unfinished) (NN business)) (PP (IN from) (NP (DT the) (JJ first) (NN session) (S (VP (TO to) (VP (VB complete) (, ,) (FRAG (X (SYM im)) (: -) (NP (JJ portant) (NNS reauthorizations))))))))) (S (VP (TO to) (VP (VP (VB write)) (, ,) (NP (NP (DT a) (ADJP (RB dramatically) (JJ different)) (NN world)) (PP (IN against) (SBAR (WHNP (WDT which)) (S (VP (TO to) (VP (VB weigh) (S (NP (NP (PRP$ our) (NP (NP (NNP Nation) (POS 's)) (NN security) (NNS needs) (CC and) (NNS priorities))) (, ,) (CONJP (RB as) (RB well) (IN as)) (NP (DT the) (NN re)) (: -)) (VP (VBN quired) (NP (NP (NN budget) (CC and) (NNS appropriations)) (NNS measures)) (PP (IN for) (NP (CD 1991))))))))))))))) (. .)))
+
+
+ ROOT
+ have
+
+
+ have
+ We
+
+
+ business
+ unfinished
+
+
+ have
+ business
+
+
+ business
+ from
+
+
+ session
+ the
+
+
+ session
+ first
+
+
+ from
+ session
+
+
+ complete
+ to
+
+
+ session
+ complete
+
+
+ reauthorizations
+ im
+
+
+ reauthorizations
+ portant
+
+
+ complete
+ reauthorizations
+
+
+ write
+ to
+
+
+ have
+ write
+
+
+ world
+ a
+
+
+ different
+ dramatically
+
+
+ world
+ different
+
+
+ write
+ world
+
+
+ world
+ against
+
+
+ weigh
+ which
+
+
+ weigh
+ to
+
+
+ against
+ weigh
+
+
+ needs
+ our
+
+
+ needs
+ Nation
+
+
+ Nation
+ 's
+
+
+ needs
+ security
+
+
+ quired
+ needs
+
+
+ needs
+ and
+
+
+ needs
+ priorities
+
+
+ well
+ as
+
+
+ needs
+ well
+
+
+ well
+ as
+
+
+ re
+ the
+
+
+ needs
+ re
+
+
+ weigh
+ quired
+
+
+ measures
+ budget
+
+
+ budget
+ and
+
+
+ budget
+ appropriations
+
+
+ quired
+ measures
+
+
+ quired
+ for
+
+
+ for
+ 1991
+
+
+
+
+ ROOT
+ have
+
+
+ have
+ We
+
+
+ business
+ unfinished
+
+
+ have
+ business
+
+
+ session
+ the
+
+
+ session
+ first
+
+
+ business
+ session
+
+
+ complete
+ to
+
+
+ session
+ complete
+
+
+ reauthorizations
+ im
+
+
+ reauthorizations
+ portant
+
+
+ complete
+ reauthorizations
+
+
+ write
+ to
+
+
+ have
+ write
+
+
+ world
+ a
+
+
+ different
+ dramatically
+
+
+ world
+ different
+
+
+ write
+ world
+
+
+ weigh
+ which
+
+
+ weigh
+ to
+
+
+ world
+ weigh
+
+
+ needs
+ our
+
+
+ needs
+ Nation
+
+
+ needs
+ security
+
+
+ quired
+ needs
+
+
+ needs
+ priorities
+
+
+ re
+ the
+
+
+ needs
+ re
+
+
+ weigh
+ quired
+
+
+ measures
+ budget
+
+
+ budget
+ appropriations
+
+
+ quired
+ measures
+
+
+ quired
+ 1991
+
+
+
+
+ ROOT
+ have
+
+
+ have
+ We
+
+
+ business
+ unfinished
+
+
+ have
+ business
+
+
+ session
+ the
+
+
+ session
+ first
+
+
+ business
+ session
+
+
+ complete
+ to
+
+
+ session
+ complete
+
+
+ reauthorizations
+ im
+
+
+ reauthorizations
+ portant
+
+
+ complete
+ reauthorizations
+
+
+ write
+ to
+
+
+ have
+ write
+
+
+ world
+ a
+
+
+ different
+ dramatically
+
+
+ world
+ different
+
+
+ write
+ world
+
+
+ weigh
+ which
+
+
+ weigh
+ to
+
+
+ world
+ weigh
+
+
+ needs
+ our
+
+
+ needs
+ Nation
+
+
+ needs
+ security
+
+
+ quired
+ needs
+
+
+ needs
+ priorities
+
+
+ quired
+ priorities
+
+
+ re
+ the
+
+
+ needs
+ re
+
+
+ quired
+ re
+
+
+ weigh
+ quired
+
+
+ measures
+ budget
+
+
+ budget
+ appropriations
+
+
+ measures
+ appropriations
+
+
+ quired
+ measures
+
+
+ quired
+ 1991
+
+
+
+
+
+
+ I
+ I
+ 3404
+ 3405
+ PRP
+ O
+
+
+ hope
+ hope
+ 3406
+ 3410
+ VBP
+ O
+
+
+ conferees
+ conferee
+ 3411
+ 3420
+ NNS
+ O
+
+
+ on
+ on
+ 3421
+ 3423
+ IN
+ O
+
+
+ the
+ the
+ 3424
+ 3427
+ DT
+ O
+
+
+ unfinished
+ unfinished
+ 3428
+ 3438
+ JJ
+ O
+
+
+ business
+ business
+ 3440
+ 3448
+ NN
+ O
+
+
+ of
+ of
+ 3449
+ 3451
+ IN
+ O
+
+
+ the
+ the
+ 3452
+ 3455
+ DT
+ O
+
+
+ first
+ first
+ 3456
+ 3461
+ JJ
+ ORDINAL
+ 1.0
+
+
+ session
+ session
+ 3462
+ 3469
+ NN
+ O
+
+
+ ,
+ ,
+ 3469
+ 3470
+ ,
+ O
+
+
+ drug
+ drug
+ 3471
+ 3475
+ NN
+ O
+
+
+ treatment
+ treatment
+ 3477
+ 3486
+ NN
+ O
+
+
+ legislation
+ legislation
+ 3487
+ 3498
+ NN
+ O
+
+
+ and
+ and
+ 3499
+ 3502
+ CC
+ O
+
+
+ oilspill
+ oilspill
+ 3503
+ 3511
+ NN
+ O
+
+
+ liabil
+ liabil
+ 3512
+ 3518
+ NN
+ O
+
+
+ -
+ -
+ 3518
+ 3519
+ :
+ O
+
+
+ ity
+ ity
+ 3521
+ 3524
+ NN
+ O
+
+
+ ,
+ ,
+ 3524
+ 3525
+ ,
+ O
+
+
+ will
+ will
+ 3526
+ 3530
+ MD
+ O
+
+
+ act
+ act
+ 3531
+ 3534
+ VB
+ O
+
+
+ promptly
+ promptly
+ 3535
+ 3543
+ RB
+ O
+
+
+ .
+ .
+ 3543
+ 3544
+ .
+ O
+
+
+ (ROOT (S (S (NP (PRP I)) (VP (VBP hope) (NP (NNS conferees)) (PP (IN on) (NP (NP (DT the) (JJ unfinished) (NN business)) (PP (IN of) (NP (DT the) (JJ first) (NN session))))))) (, ,) (NP (NP (NP (NN drug) (NN treatment) (NN legislation)) (CC and) (NP (NN oilspill) (NN liabil))) (: -) (NP (NN ity)) (, ,)) (VP (MD will) (VP (VB act) (ADVP (RB promptly)))) (. .)))
+
+
+ ROOT
+ act
+
+
+ hope
+ I
+
+
+ act
+ hope
+
+
+ hope
+ conferees
+
+
+ hope
+ on
+
+
+ business
+ the
+
+
+ business
+ unfinished
+
+
+ on
+ business
+
+
+ business
+ of
+
+
+ session
+ the
+
+
+ session
+ first
+
+
+ of
+ session
+
+
+ legislation
+ drug
+
+
+ legislation
+ treatment
+
+
+ act
+ legislation
+
+
+ legislation
+ and
+
+
+ liabil
+ oilspill
+
+
+ legislation
+ liabil
+
+
+ legislation
+ ity
+
+
+ act
+ will
+
+
+ act
+ promptly
+
+
+
+
+ ROOT
+ act
+
+
+ hope
+ I
+
+
+ act
+ hope
+
+
+ hope
+ conferees
+
+
+ business
+ the
+
+
+ business
+ unfinished
+
+
+ hope
+ business
+
+
+ session
+ the
+
+
+ session
+ first
+
+
+ business
+ session
+
+
+ legislation
+ drug
+
+
+ legislation
+ treatment
+
+
+ act
+ legislation
+
+
+ liabil
+ oilspill
+
+
+ legislation
+ liabil
+
+
+ legislation
+ ity
+
+
+ act
+ will
+
+
+ act
+ promptly
+
+
+
+
+ ROOT
+ act
+
+
+ hope
+ I
+
+
+ act
+ hope
+
+
+ hope
+ conferees
+
+
+ business
+ the
+
+
+ business
+ unfinished
+
+
+ hope
+ business
+
+
+ session
+ the
+
+
+ session
+ first
+
+
+ business
+ session
+
+
+ legislation
+ drug
+
+
+ legislation
+ treatment
+
+
+ act
+ legislation
+
+
+ liabil
+ oilspill
+
+
+ legislation
+ liabil
+
+
+ act
+ liabil
+
+
+ legislation
+ ity
+
+
+ act
+ will
+
+
+ act
+ promptly
+
+
+
+
+
+
+ These
+ these
+ 3545
+ 3550
+ DT
+ O
+
+
+ are
+ be
+ 3551
+ 3554
+ VBP
+ O
+
+
+ im
+ im
+ 3555
+ 3557
+ SYM
+ O
+
+
+ -
+ -
+ 3557
+ 3558
+ :
+ O
+
+
+ portant
+ portant
+ 3560
+ 3567
+ JJ
+ O
+
+
+ matters
+ matter
+ 3568
+ 3575
+ NNS
+ O
+
+
+ we
+ we
+ 3576
+ 3578
+ PRP
+ O
+
+
+ should
+ should
+ 3579
+ 3585
+ MD
+ O
+
+
+ be
+ be
+ 3586
+ 3588
+ VB
+ O
+
+
+ able
+ able
+ 3589
+ 3593
+ JJ
+ O
+
+
+ to
+ to
+ 3594
+ 3596
+ TO
+ O
+
+
+ finish
+ finish
+ 3598
+ 3604
+ VB
+ O
+
+
+ swiftly
+ swiftly
+ 3605
+ 3612
+ RB
+ O
+
+
+ .
+ .
+ 3612
+ 3613
+ .
+ O
+
+
+ (ROOT (S (NP (DT These)) (VP (VBP are) (FRAG (X (SYM im)) (: -) (NP (NP (JJ portant) (NNS matters)) (SBAR (S (NP (PRP we)) (VP (MD should) (VP (VB be) (ADJP (JJ able) (S (VP (TO to) (VP (VB finish) (ADVP (RB swiftly))))))))))) (. .)))))
+
+
+ ROOT
+ are
+
+
+ are
+ These
+
+
+ matters
+ im
+
+
+ matters
+ portant
+
+
+ are
+ matters
+
+
+ able
+ we
+
+
+ able
+ should
+
+
+ able
+ be
+
+
+ matters
+ able
+
+
+ finish
+ to
+
+
+ able
+ finish
+
+
+ finish
+ swiftly
+
+
+
+
+ ROOT
+ are
+
+
+ are
+ These
+
+
+ matters
+ im
+
+
+ matters
+ portant
+
+
+ are
+ matters
+
+
+ able
+ we
+
+
+ able
+ should
+
+
+ able
+ be
+
+
+ matters
+ able
+
+
+ finish
+ to
+
+
+ able
+ finish
+
+
+ finish
+ swiftly
+
+
+
+
+ ROOT
+ are
+
+
+ are
+ These
+
+
+ matters
+ im
+
+
+ matters
+ portant
+
+
+ are
+ matters
+
+
+ able
+ we
+
+
+ able
+ should
+
+
+ able
+ be
+
+
+ matters
+ able
+
+
+ finish
+ to
+
+
+ able
+ finish
+
+
+ finish
+ swiftly
+
+
+
+
+
+
+ Tomorrow
+ tomorrow
+ 3617
+ 3625
+ NN
+ DATE
+ OFFSET P1D
+
+
+
+ ,
+ ,
+ 3625
+ 3626
+ ,
+ O
+
+
+ the
+ the
+ 3627
+ 3630
+ DT
+ O
+
+
+ House
+ House
+ 3631
+ 3636
+ NNP
+ ORGANIZATION
+
+
+ will
+ will
+ 3637
+ 3641
+ MD
+ O
+
+
+ override
+ override
+ 3642
+ 3650
+ VB
+ O
+
+
+ the
+ the
+ 3652
+ 3655
+ DT
+ O
+
+
+ President
+ President
+ 3656
+ 3665
+ NNP
+ O
+
+
+ 's
+ 's
+ 3665
+ 3667
+ POS
+ O
+
+
+ veto
+ veto
+ 3668
+ 3672
+ NN
+ O
+
+
+ of
+ of
+ 3673
+ 3675
+ IN
+ O
+
+
+ legislation
+ legislation
+ 3676
+ 3687
+ NN
+ O
+
+
+ ex
+ ex
+ 3688
+ 3690
+ FW
+ O
+
+
+ -
+ -
+ 3690
+ 3691
+ :
+ O
+
+
+ tending
+ tend
+ 3693
+ 3700
+ VBG
+ O
+
+
+ the
+ the
+ 3701
+ 3704
+ DT
+ O
+
+
+ visa
+ visa
+ 3705
+ 3709
+ NN
+ O
+
+
+ protections
+ protection
+ 3710
+ 3721
+ NNS
+ O
+
+
+ of
+ of
+ 3722
+ 3724
+ IN
+ O
+
+
+ Chi
+ Chi
+ 3725
+ 3728
+ NNP
+ O
+
+
+ -
+ -
+ 3728
+ 3729
+ :
+ O
+
+
+ nese
+ nese
+ 3731
+ 3735
+ JJ
+ O
+
+
+ students
+ student
+ 3736
+ 3744
+ NNS
+ O
+
+
+ and
+ and
+ 3745
+ 3748
+ CC
+ O
+
+
+ exchange
+ exchange
+ 3749
+ 3757
+ NN
+ O
+
+
+ scholars
+ scholar
+ 3758
+ 3766
+ NNS
+ O
+
+
+ .
+ .
+ 3766
+ 3767
+ .
+ O
+
+
+ (ROOT (S (NP-TMP (NN Tomorrow)) (, ,) (NP (DT the) (NNP House)) (VP (MD will) (VP (VB override) (NP (NP (NP (NP (NP (DT the) (NNP President) (POS 's)) (NN veto)) (PP (IN of) (NP (NN legislation)))) (NP (FW ex))) (PRN (: -) (VP (VBG tending) (NP (NP (DT the) (NN visa) (NNS protections)) (PP (IN of) (NP (NNP Chi))))) (: -)) (NP (NP (JJ nese) (NNS students)) (CC and) (NP (NN exchange) (NNS scholars)))))) (. .)))
+
+
+ ROOT
+ override
+
+
+ override
+ Tomorrow
+
+
+ House
+ the
+
+
+ override
+ House
+
+
+ override
+ will
+
+
+ President
+ the
+
+
+ veto
+ President
+
+
+ President
+ 's
+
+
+ override
+ veto
+
+
+ veto
+ of
+
+
+ of
+ legislation
+
+
+ veto
+ ex
+
+
+ veto
+ tending
+
+
+ protections
+ the
+
+
+ protections
+ visa
+
+
+ tending
+ protections
+
+
+ protections
+ of
+
+
+ of
+ Chi
+
+
+ students
+ nese
+
+
+ veto
+ students
+
+
+ students
+ and
+
+
+ scholars
+ exchange
+
+
+ students
+ scholars
+
+
+
+
+ ROOT
+ override
+
+
+ override
+ Tomorrow
+
+
+ House
+ the
+
+
+ override
+ House
+
+
+ override
+ will
+
+
+ President
+ the
+
+
+ veto
+ President
+
+
+ override
+ veto
+
+
+ veto
+ legislation
+
+
+ veto
+ ex
+
+
+ veto
+ tending
+
+
+ protections
+ the
+
+
+ protections
+ visa
+
+
+ tending
+ protections
+
+
+ protections
+ Chi
+
+
+ students
+ nese
+
+
+ veto
+ students
+
+
+ scholars
+ exchange
+
+
+ students
+ scholars
+
+
+
+
+ ROOT
+ override
+
+
+ override
+ Tomorrow
+
+
+ House
+ the
+
+
+ override
+ House
+
+
+ override
+ will
+
+
+ President
+ the
+
+
+ veto
+ President
+
+
+ override
+ veto
+
+
+ veto
+ legislation
+
+
+ veto
+ ex
+
+
+ veto
+ tending
+
+
+ protections
+ the
+
+
+ protections
+ visa
+
+
+ tending
+ protections
+
+
+ protections
+ Chi
+
+
+ students
+ nese
+
+
+ veto
+ students
+
+
+ scholars
+ exchange
+
+
+ veto
+ scholars
+
+
+ students
+ scholars
+
+
+
+
+
+
+ It
+ it
+ 3769
+ 3771
+ PRP
+ O
+
+
+ is
+ be
+ 3772
+ 3774
+ VBZ
+ O
+
+
+ my
+ my
+ 3775
+ 3777
+ PRP$
+ O
+
+
+ intention
+ intention
+ 3778
+ 3787
+ NN
+ O
+
+
+ to
+ to
+ 3788
+ 3790
+ TO
+ O
+
+
+ ask
+ ask
+ 3791
+ 3794
+ VB
+ O
+
+
+ the
+ the
+ 3795
+ 3798
+ DT
+ O
+
+
+ Senate
+ Senate
+ 3799
+ 3805
+ NNP
+ ORGANIZATION
+
+
+ to
+ to
+ 3806
+ 3808
+ TO
+ O
+
+
+ move
+ move
+ 3810
+ 3814
+ VB
+ O
+
+
+ promptly
+ promptly
+ 3815
+ 3823
+ RB
+ O
+
+
+ to
+ to
+ 3824
+ 3826
+ TO
+ O
+
+
+ that
+ that
+ 3827
+ 3831
+ DT
+ O
+
+
+ proposal
+ proposal
+ 3832
+ 3840
+ NN
+ O
+
+
+ .
+ .
+ 3840
+ 3841
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VBZ is) (NP (PRP$ my) (NN intention) (S (VP (TO to) (VP (VB ask) (S (NP (DT the) (NNP Senate)) (VP (TO to) (VP (VB move) (ADVP (RB promptly)) (PP (TO to) (NP (DT that) (NN proposal))))))))))) (. .)))
+
+
+ ROOT
+ intention
+
+
+ intention
+ It
+
+
+ intention
+ is
+
+
+ intention
+ my
+
+
+ ask
+ to
+
+
+ intention
+ ask
+
+
+ Senate
+ the
+
+
+ move
+ Senate
+
+
+ move
+ to
+
+
+ ask
+ move
+
+
+ move
+ promptly
+
+
+ move
+ to
+
+
+ proposal
+ that
+
+
+ to
+ proposal
+
+
+
+
+ ROOT
+ intention
+
+
+ intention
+ It
+
+
+ intention
+ is
+
+
+ intention
+ my
+
+
+ ask
+ to
+
+
+ intention
+ ask
+
+
+ Senate
+ the
+
+
+ move
+ Senate
+
+
+ move
+ to
+
+
+ ask
+ move
+
+
+ move
+ promptly
+
+
+ proposal
+ that
+
+
+ move
+ proposal
+
+
+
+
+ ROOT
+ intention
+
+
+ intention
+ It
+
+
+ intention
+ is
+
+
+ intention
+ my
+
+
+ ask
+ to
+
+
+ intention
+ ask
+
+
+ Senate
+ the
+
+
+ move
+ Senate
+
+
+ move
+ to
+
+
+ ask
+ move
+
+
+ move
+ promptly
+
+
+ proposal
+ that
+
+
+ move
+ proposal
+
+
+
+
+
+
+ I
+ I
+ 3845
+ 3846
+ PRP
+ O
+
+
+ regret
+ regret
+ 3847
+ 3853
+ VBP
+ O
+
+
+ the
+ the
+ 3854
+ 3857
+ DT
+ O
+
+
+ President
+ President
+ 3858
+ 3867
+ NNP
+ O
+
+
+ 's
+ 's
+ 3867
+ 3869
+ POS
+ O
+
+
+ veto
+ veto
+ 3870
+ 3874
+ NN
+ O
+
+
+ of
+ of
+ 3875
+ 3877
+ IN
+ O
+
+
+ this
+ this
+ 3878
+ 3882
+ DT
+ O
+
+
+ bill
+ bill
+ 3884
+ 3888
+ NN
+ O
+
+
+ .
+ .
+ 3888
+ 3889
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (VBP regret) (NP (NP (NP (DT the) (NNP President) (POS 's)) (NN veto)) (PP (IN of) (NP (DT this) (NN bill))))) (. .)))
+
+
+ ROOT
+ regret
+
+
+ regret
+ I
+
+
+ President
+ the
+
+
+ veto
+ President
+
+
+ President
+ 's
+
+
+ regret
+ veto
+
+
+ veto
+ of
+
+
+ bill
+ this
+
+
+ of
+ bill
+
+
+
+
+ ROOT
+ regret
+
+
+ regret
+ I
+
+
+ President
+ the
+
+
+ veto
+ President
+
+
+ regret
+ veto
+
+
+ bill
+ this
+
+
+ veto
+ bill
+
+
+
+
+ ROOT
+ regret
+
+
+ regret
+ I
+
+
+ President
+ the
+
+
+ veto
+ President
+
+
+ regret
+ veto
+
+
+ bill
+ this
+
+
+ veto
+ bill
+
+
+
+
+
+
+ His
+ he
+ 3890
+ 3893
+ PRP$
+ O
+
+
+ claim
+ claim
+ 3894
+ 3899
+ NN
+ O
+
+
+ that
+ that
+ 3900
+ 3904
+ IN
+ O
+
+
+ he
+ he
+ 3905
+ 3907
+ PRP
+ O
+
+
+ is
+ be
+ 3908
+ 3910
+ VBZ
+ O
+
+
+ doing
+ do
+ 3911
+ 3916
+ VBG
+ O
+
+
+ as
+ as
+ 3917
+ 3919
+ RB
+ O
+
+
+ much
+ much
+ 3920
+ 3924
+ RB
+ O
+
+
+ through
+ through
+ 3926
+ 3933
+ IN
+ O
+
+
+ a
+ a
+ 3934
+ 3935
+ DT
+ O
+
+
+ Presidential
+ presidential
+ 3936
+ 3948
+ JJ
+ O
+
+
+ memorandum
+ memorandum
+ 3949
+ 3959
+ NN
+ O
+
+
+ of
+ of
+ 3961
+ 3963
+ IN
+ O
+
+
+ disapproval
+ disapproval
+ 3964
+ 3975
+ NN
+ O
+
+
+ as
+ as
+ 3976
+ 3978
+ IN
+ O
+
+
+ the
+ the
+ 3979
+ 3982
+ DT
+ O
+
+
+ bill
+ bill
+ 3983
+ 3987
+ NN
+ O
+
+
+ would
+ would
+ 3988
+ 3993
+ MD
+ O
+
+
+ do
+ do
+ 3994
+ 3996
+ VB
+ O
+
+
+ through
+ through
+ 3998
+ 4005
+ IN
+ O
+
+
+ the
+ the
+ 4006
+ 4009
+ DT
+ O
+
+
+ law
+ law
+ 4010
+ 4013
+ NN
+ O
+
+
+ is
+ be
+ 4014
+ 4016
+ VBZ
+ O
+
+
+ unpersuasive
+ unpersuasive
+ 4017
+ 4029
+ JJ
+ O
+
+
+ .
+ .
+ 4029
+ 4030
+ .
+ O
+
+
+ (ROOT (S (NP (NP (PRP$ His) (NN claim)) (SBAR (IN that) (S (NP (PRP he)) (VP (VBZ is) (VP (VBG doing) (ADVP (RB as) (RB much)) (PP (IN through) (NP (NP (DT a) (JJ Presidential) (NN memorandum)) (PP (IN of) (NP (NN disapproval))))) (SBAR (IN as) (S (NP (DT the) (NN bill)) (VP (MD would) (VP (VB do) (PP (IN through) (NP (DT the) (NN law)))))))))))) (VP (VBZ is) (ADJP (JJ unpersuasive))) (. .)))
+
+
+ ROOT
+ unpersuasive
+
+
+ claim
+ His
+
+
+ unpersuasive
+ claim
+
+
+ doing
+ that
+
+
+ doing
+ he
+
+
+ doing
+ is
+
+
+ claim
+ doing
+
+
+ much
+ as
+
+
+ doing
+ much
+
+
+ doing
+ through
+
+
+ memorandum
+ a
+
+
+ memorandum
+ Presidential
+
+
+ through
+ memorandum
+
+
+ memorandum
+ of
+
+
+ of
+ disapproval
+
+
+ do
+ as
+
+
+ bill
+ the
+
+
+ do
+ bill
+
+
+ do
+ would
+
+
+ doing
+ do
+
+
+ do
+ through
+
+
+ law
+ the
+
+
+ through
+ law
+
+
+ unpersuasive
+ is
+
+
+
+
+ ROOT
+ unpersuasive
+
+
+ claim
+ His
+
+
+ unpersuasive
+ claim
+
+
+ doing
+ that
+
+
+ doing
+ he
+
+
+ doing
+ is
+
+
+ claim
+ doing
+
+
+ much
+ as
+
+
+ doing
+ much
+
+
+ memorandum
+ a
+
+
+ memorandum
+ Presidential
+
+
+ doing
+ memorandum
+
+
+ memorandum
+ disapproval
+
+
+ do
+ as
+
+
+ bill
+ the
+
+
+ do
+ bill
+
+
+ do
+ would
+
+
+ doing
+ do
+
+
+ law
+ the
+
+
+ do
+ law
+
+
+ unpersuasive
+ is
+
+
+
+
+ ROOT
+ unpersuasive
+
+
+ claim
+ His
+
+
+ unpersuasive
+ claim
+
+
+ doing
+ that
+
+
+ doing
+ he
+
+
+ doing
+ is
+
+
+ claim
+ doing
+
+
+ much
+ as
+
+
+ doing
+ much
+
+
+ memorandum
+ a
+
+
+ memorandum
+ Presidential
+
+
+ doing
+ memorandum
+
+
+ memorandum
+ disapproval
+
+
+ do
+ as
+
+
+ bill
+ the
+
+
+ do
+ bill
+
+
+ do
+ would
+
+
+ doing
+ do
+
+
+ law
+ the
+
+
+ do
+ law
+
+
+ unpersuasive
+ is
+
+
+
+
+
+
+ The
+ the
+ 4034
+ 4037
+ DT
+ O
+
+
+ President
+ President
+ 4038
+ 4047
+ NNP
+ O
+
+
+ 's
+ 's
+ 4047
+ 4049
+ POS
+ O
+
+
+ memorandum
+ memorandum
+ 4050
+ 4060
+ NN
+ O
+
+
+ of
+ of
+ 4061
+ 4063
+ IN
+ O
+
+
+ dis
+ di
+ 4064
+ 4067
+ NN
+ O
+
+
+ -
+ -
+ 4067
+ 4068
+ :
+ O
+
+
+ approval
+ approval
+ 4070
+ 4078
+ NN
+ O
+
+
+ is
+ be
+ 4079
+ 4081
+ VBZ
+ O
+
+
+ only
+ only
+ 4082
+ 4086
+ RB
+ O
+
+
+ an
+ a
+ 4087
+ 4089
+ DT
+ O
+
+
+ administrative
+ administrative
+ 4090
+ 4104
+ JJ
+ O
+
+
+ action
+ action
+ 4106
+ 4112
+ NN
+ O
+
+
+ .
+ .
+ 4112
+ 4113
+ .
+ O
+
+
+ (ROOT (NP (NP (NP (NP (DT The) (NNP President) (POS 's)) (NN memorandum)) (PP (IN of) (NP (NN dis)))) (: -) (NP (NP (NN approval)) (SBAR (S (VP (VBZ is) (ADVP (RB only)) (NP (DT an) (JJ administrative) (NN action)))))) (. .)))
+
+
+ ROOT
+ memorandum
+
+
+ President
+ The
+
+
+ memorandum
+ President
+
+
+ President
+ 's
+
+
+ memorandum
+ of
+
+
+ of
+ dis
+
+
+ memorandum
+ approval
+
+
+ action
+ is
+
+
+ action
+ only
+
+
+ action
+ an
+
+
+ action
+ administrative
+
+
+ approval
+ action
+
+
+
+
+ ROOT
+ memorandum
+
+
+ President
+ The
+
+
+ memorandum
+ President
+
+
+ memorandum
+ dis
+
+
+ memorandum
+ approval
+
+
+ action
+ is
+
+
+ action
+ only
+
+
+ action
+ an
+
+
+ action
+ administrative
+
+
+ approval
+ action
+
+
+
+
+ ROOT
+ memorandum
+
+
+ President
+ The
+
+
+ memorandum
+ President
+
+
+ memorandum
+ dis
+
+
+ memorandum
+ approval
+
+
+ action
+ is
+
+
+ action
+ only
+
+
+ action
+ an
+
+
+ action
+ administrative
+
+
+ approval
+ action
+
+
+
+
+
+
+ It
+ it
+ 4114
+ 4116
+ PRP
+ O
+
+
+ provides
+ provide
+ 4117
+ 4125
+ VBZ
+ O
+
+
+ no
+ no
+ 4126
+ 4128
+ DT
+ O
+
+
+ statutory
+ statutory
+ 4129
+ 4138
+ JJ
+ O
+
+
+ legal
+ legal
+ 4139
+ 4144
+ JJ
+ O
+
+
+ protection
+ protection
+ 4146
+ 4156
+ NN
+ O
+
+
+ for
+ for
+ 4157
+ 4160
+ IN
+ O
+
+
+ the
+ the
+ 4161
+ 4164
+ DT
+ O
+
+
+ Chinese
+ chinese
+ 4165
+ 4172
+ JJ
+ MISC
+
+
+ students
+ student
+ 4173
+ 4181
+ NNS
+ O
+
+
+ .
+ .
+ 4181
+ 4182
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VBZ provides) (NP (NP (DT no) (JJ statutory) (JJ legal) (NN protection)) (PP (IN for) (NP (DT the) (JJ Chinese) (NNS students))))) (. .)))
+
+
+ ROOT
+ provides
+
+
+ provides
+ It
+
+
+ protection
+ no
+
+
+ protection
+ statutory
+
+
+ protection
+ legal
+
+
+ provides
+ protection
+
+
+ protection
+ for
+
+
+ students
+ the
+
+
+ students
+ Chinese
+
+
+ for
+ students
+
+
+
+
+ ROOT
+ provides
+
+
+ provides
+ It
+
+
+ protection
+ no
+
+
+ protection
+ statutory
+
+
+ protection
+ legal
+
+
+ provides
+ protection
+
+
+ students
+ the
+
+
+ students
+ Chinese
+
+
+ protection
+ students
+
+
+
+
+ ROOT
+ provides
+
+
+ provides
+ It
+
+
+ protection
+ no
+
+
+ protection
+ statutory
+
+
+ protection
+ legal
+
+
+ provides
+ protection
+
+
+ students
+ the
+
+
+ students
+ Chinese
+
+
+ protection
+ students
+
+
+
+
+
+
+ It
+ it
+ 4183
+ 4185
+ PRP
+ O
+
+
+ can
+ can
+ 4187
+ 4190
+ MD
+ O
+
+
+ be
+ be
+ 4191
+ 4193
+ VB
+ O
+
+
+ revoked
+ revoke
+ 4194
+ 4201
+ VBN
+ O
+
+
+ by
+ by
+ 4202
+ 4204
+ IN
+ O
+
+
+ the
+ the
+ 4205
+ 4208
+ DT
+ O
+
+
+ President
+ President
+ 4209
+ 4218
+ NNP
+ O
+
+
+ or
+ or
+ 4219
+ 4221
+ CC
+ O
+
+
+ the
+ the
+ 4222
+ 4225
+ DT
+ O
+
+
+ Attorney
+ Attorney
+ 4227
+ 4235
+ NNP
+ O
+
+
+ General
+ General
+ 4236
+ 4243
+ NNP
+ O
+
+
+ at
+ at
+ 4244
+ 4246
+ IN
+ O
+
+
+ their
+ they
+ 4247
+ 4252
+ PRP$
+ O
+
+
+ discretion
+ discretion
+ 4253
+ 4263
+ NN
+ O
+
+
+ .
+ .
+ 4263
+ 4264
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (MD can) (VP (VB be) (VP (VBN revoked) (PP (IN by) (NP (NP (DT the) (NNP President)) (CC or) (NP (DT the) (NNP Attorney) (NNP General)))) (PP (IN at) (NP (PRP$ their) (NN discretion)))))) (. .)))
+
+
+ ROOT
+ revoked
+
+
+ revoked
+ It
+
+
+ revoked
+ can
+
+
+ revoked
+ be
+
+
+ revoked
+ by
+
+
+ President
+ the
+
+
+ by
+ President
+
+
+ President
+ or
+
+
+ General
+ the
+
+
+ General
+ Attorney
+
+
+ President
+ General
+
+
+ revoked
+ at
+
+
+ discretion
+ their
+
+
+ at
+ discretion
+
+
+
+
+ ROOT
+ revoked
+
+
+ revoked
+ It
+
+
+ revoked
+ can
+
+
+ revoked
+ be
+
+
+ President
+ the
+
+
+ revoked
+ President
+
+
+ General
+ the
+
+
+ General
+ Attorney
+
+
+ President
+ General
+
+
+ discretion
+ their
+
+
+ revoked
+ discretion
+
+
+
+
+ ROOT
+ revoked
+
+
+ revoked
+ It
+
+
+ revoked
+ can
+
+
+ revoked
+ be
+
+
+ President
+ the
+
+
+ revoked
+ President
+
+
+ General
+ the
+
+
+ General
+ Attorney
+
+
+ revoked
+ General
+
+
+ President
+ General
+
+
+ discretion
+ their
+
+
+ revoked
+ discretion
+
+
+
+
+
+
+ This
+ this
+ 4268
+ 4272
+ DT
+ O
+
+
+ administrative
+ administrative
+ 4273
+ 4287
+ JJ
+ O
+
+
+ action
+ action
+ 4288
+ 4294
+ NN
+ O
+
+
+ could
+ could
+ 4295
+ 4300
+ MD
+ O
+
+
+ also
+ also
+ 4301
+ 4305
+ RB
+ O
+
+
+ be
+ be
+ 4307
+ 4309
+ VB
+ O
+
+
+ challenged
+ challenge
+ 4310
+ 4320
+ VBN
+ O
+
+
+ because
+ because
+ 4321
+ 4328
+ IN
+ O
+
+
+ immigration
+ immigration
+ 4329
+ 4340
+ NN
+ O
+
+
+ law
+ law
+ 4342
+ 4345
+ NN
+ O
+
+
+ does
+ do
+ 4346
+ 4350
+ VBZ
+ O
+
+
+ not
+ not
+ 4351
+ 4354
+ RB
+ O
+
+
+ ,
+ ,
+ 4354
+ 4355
+ ,
+ O
+
+
+ in
+ in
+ 4356
+ 4358
+ IN
+ O
+
+
+ general
+ general
+ 4359
+ 4366
+ JJ
+ O
+
+
+ ,
+ ,
+ 4366
+ 4367
+ ,
+ O
+
+
+ permit
+ permit
+ 4368
+ 4374
+ VB
+ O
+
+
+ aliens
+ alien
+ 4375
+ 4381
+ NNS
+ O
+
+
+ to
+ to
+ 4383
+ 4385
+ TO
+ O
+
+
+ adjust
+ adjust
+ 4386
+ 4392
+ VB
+ O
+
+
+ their
+ they
+ 4393
+ 4398
+ PRP$
+ O
+
+
+ status
+ status
+ 4399
+ 4405
+ NN
+ O
+
+
+ if
+ if
+ 4406
+ 4408
+ IN
+ O
+
+
+ they
+ they
+ 4409
+ 4413
+ PRP
+ O
+
+
+ apply
+ apply
+ 4414
+ 4419
+ VBP
+ O
+
+
+ to
+ to
+ 4420
+ 4422
+ TO
+ O
+
+
+ do
+ do
+ 4424
+ 4426
+ VB
+ O
+
+
+ so
+ so
+ 4427
+ 4429
+ RB
+ O
+
+
+ while
+ while
+ 4430
+ 4435
+ IN
+ O
+
+
+ they
+ they
+ 4436
+ 4440
+ PRP
+ O
+
+
+ are
+ be
+ 4441
+ 4444
+ VBP
+ O
+
+
+ technically
+ technically
+ 4445
+ 4456
+ RB
+ O
+
+
+ in
+ in
+ 4457
+ 4459
+ IN
+ O
+
+
+ ille
+ ille
+ 4460
+ 4464
+ NN
+ O
+
+
+ -
+ -
+ 4464
+ 4465
+ :
+ O
+
+
+ gal
+ gal
+ 4467
+ 4470
+ NN
+ O
+
+
+ status
+ status
+ 4471
+ 4477
+ NN
+ O
+
+
+ .
+ .
+ 4477
+ 4478
+ .
+ O
+
+
+ (ROOT (S (NP (DT This) (JJ administrative) (NN action)) (VP (MD could) (ADVP (RB also)) (VP (VB be) (VP (VBN challenged) (SBAR (IN because) (S (NP (NN immigration) (NN law)) (VP (VBZ does) (ADVP (RB not) (PRN (, ,) (PP (IN in) (ADJP (JJ general))) (, ,)) (S (VP (VB permit) (S (NP (NNS aliens)) (VP (TO to) (VP (VB adjust) (NP (PRP$ their) (NN status)))))))) (SBAR (IN if) (S (NP (PRP they)) (VP (VBP apply) (S (VP (TO to) (VP (VB do) (SBAR (RB so) (IN while) (S (NP (PRP they)) (VP (VBP are) (ADVP (RB technically)) (PP (IN in) (NP (NN ille))))))))) (: -) (NP (NN gal) (NN status))))))))))) (. .)))
+
+
+ ROOT
+ challenged
+
+
+ action
+ This
+
+
+ action
+ administrative
+
+
+ challenged
+ action
+
+
+ challenged
+ could
+
+
+ challenged
+ also
+
+
+ challenged
+ be
+
+
+ does
+ because
+
+
+ law
+ immigration
+
+
+ does
+ law
+
+
+ challenged
+ does
+
+
+ does
+ not
+
+
+ not
+ in
+
+
+ in
+ general
+
+
+ not
+ permit
+
+
+ adjust
+ aliens
+
+
+ adjust
+ to
+
+
+ permit
+ adjust
+
+
+ status
+ their
+
+
+ adjust
+ status
+
+
+ apply
+ if
+
+
+ apply
+ they
+
+
+ does
+ apply
+
+
+ do
+ to
+
+
+ apply
+ do
+
+
+ are
+ so
+
+
+ are
+ while
+
+
+ are
+ they
+
+
+ do
+ are
+
+
+ are
+ technically
+
+
+ are
+ in
+
+
+ in
+ ille
+
+
+ status
+ gal
+
+
+ apply
+ status
+
+
+
+
+ ROOT
+ challenged
+
+
+ action
+ This
+
+
+ action
+ administrative
+
+
+ challenged
+ action
+
+
+ challenged
+ could
+
+
+ challenged
+ also
+
+
+ challenged
+ be
+
+
+ does
+ because
+
+
+ law
+ immigration
+
+
+ does
+ law
+
+
+ challenged
+ does
+
+
+ does
+ not
+
+
+ not
+ in
+
+
+ in
+ general
+
+
+ not
+ permit
+
+
+ adjust
+ aliens
+
+
+ adjust
+ to
+
+
+ permit
+ adjust
+
+
+ status
+ their
+
+
+ adjust
+ status
+
+
+ apply
+ if
+
+
+ apply
+ they
+
+
+ does
+ apply
+
+
+ do
+ to
+
+
+ apply
+ do
+
+
+ are
+ so
+
+
+ are
+ while
+
+
+ are
+ they
+
+
+ do
+ are
+
+
+ are
+ technically
+
+
+ are
+ ille
+
+
+ status
+ gal
+
+
+ apply
+ status
+
+
+
+
+ ROOT
+ challenged
+
+
+ action
+ This
+
+
+ action
+ administrative
+
+
+ challenged
+ action
+
+
+ challenged
+ could
+
+
+ challenged
+ also
+
+
+ challenged
+ be
+
+
+ does
+ because
+
+
+ law
+ immigration
+
+
+ does
+ law
+
+
+ challenged
+ does
+
+
+ does
+ not
+
+
+ not
+ in
+
+
+ in
+ general
+
+
+ not
+ permit
+
+
+ adjust
+ aliens
+
+
+ adjust
+ to
+
+
+ permit
+ adjust
+
+
+ status
+ their
+
+
+ adjust
+ status
+
+
+ apply
+ if
+
+
+ apply
+ they
+
+
+ does
+ apply
+
+
+ do
+ to
+
+
+ apply
+ do
+
+
+ are
+ so
+
+
+ are
+ while
+
+
+ are
+ they
+
+
+ do
+ are
+
+
+ are
+ technically
+
+
+ are
+ ille
+
+
+ status
+ gal
+
+
+ apply
+ status
+
+
+
+
+
+
+ It
+ it
+ 4479
+ 4481
+ PRP
+ O
+
+
+ is
+ be
+ 4482
+ 4484
+ VBZ
+ O
+
+
+ an
+ a
+ 4485
+ 4487
+ DT
+ O
+
+
+ open
+ open
+ 4488
+ 4492
+ JJ
+ O
+
+
+ question
+ question
+ 4493
+ 4501
+ NN
+ O
+
+
+ whether
+ whether
+ 4503
+ 4510
+ IN
+ O
+
+
+ the
+ the
+ 4511
+ 4514
+ DT
+ O
+
+
+ administration
+ administration
+ 4515
+ 4529
+ NN
+ O
+
+
+ has
+ have
+ 4530
+ 4533
+ VBZ
+ O
+
+
+ the
+ the
+ 4534
+ 4537
+ DT
+ O
+
+
+ authority
+ authority
+ 4539
+ 4548
+ NN
+ O
+
+
+ to
+ to
+ 4549
+ 4551
+ TO
+ O
+
+
+ grant
+ grant
+ 4552
+ 4557
+ VB
+ O
+
+
+ such
+ such
+ 4558
+ 4562
+ PDT
+ O
+
+
+ a
+ a
+ 4563
+ 4564
+ DT
+ O
+
+
+ generalized
+ generalize
+ 4565
+ 4576
+ VBN
+ O
+
+
+ waiver
+ waiver
+ 4578
+ 4584
+ NN
+ O
+
+
+ of
+ of
+ 4585
+ 4587
+ IN
+ O
+
+
+ a
+ a
+ 4588
+ 4589
+ DT
+ O
+
+
+ congressionally
+ congressionally
+ 4590
+ 4605
+ RB
+ O
+
+
+ mandated
+ mandate
+ 4606
+ 4614
+ VBN
+ O
+
+
+ stipulation
+ stipulation
+ 4616
+ 4627
+ NN
+ O
+
+
+ .
+ .
+ 4627
+ 4628
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VBZ is) (NP (DT an) (JJ open) (NN question)) (SBAR (IN whether) (S (NP (DT the) (NN administration)) (VP (VBZ has) (NP (DT the) (NN authority) (S (VP (TO to) (VP (VB grant) (NP (NP (PDT such) (DT a)) (VP (VBN generalized) (NP (NP (NN waiver)) (PP (IN of) (NP (DT a) (ADJP (RB congressionally) (VBN mandated)) (NN stipulation)))))))))))))) (. .)))
+
+
+ ROOT
+ question
+
+
+ question
+ It
+
+
+ question
+ is
+
+
+ question
+ an
+
+
+ question
+ open
+
+
+ has
+ whether
+
+
+ administration
+ the
+
+
+ has
+ administration
+
+
+ question
+ has
+
+
+ authority
+ the
+
+
+ has
+ authority
+
+
+ grant
+ to
+
+
+ authority
+ grant
+
+
+ a
+ such
+
+
+ grant
+ a
+
+
+ a
+ generalized
+
+
+ generalized
+ waiver
+
+
+ waiver
+ of
+
+
+ stipulation
+ a
+
+
+ mandated
+ congressionally
+
+
+ stipulation
+ mandated
+
+
+ of
+ stipulation
+
+
+
+
+ ROOT
+ question
+
+
+ question
+ It
+
+
+ question
+ is
+
+
+ question
+ an
+
+
+ question
+ open
+
+
+ has
+ whether
+
+
+ administration
+ the
+
+
+ has
+ administration
+
+
+ question
+ has
+
+
+ authority
+ the
+
+
+ has
+ authority
+
+
+ grant
+ to
+
+
+ authority
+ grant
+
+
+ a
+ such
+
+
+ grant
+ a
+
+
+ a
+ generalized
+
+
+ generalized
+ waiver
+
+
+ stipulation
+ a
+
+
+ mandated
+ congressionally
+
+
+ stipulation
+ mandated
+
+
+ waiver
+ stipulation
+
+
+
+
+ ROOT
+ question
+
+
+ question
+ It
+
+
+ question
+ is
+
+
+ question
+ an
+
+
+ question
+ open
+
+
+ has
+ whether
+
+
+ administration
+ the
+
+
+ has
+ administration
+
+
+ question
+ has
+
+
+ authority
+ the
+
+
+ has
+ authority
+
+
+ grant
+ to
+
+
+ authority
+ grant
+
+
+ a
+ such
+
+
+ grant
+ a
+
+
+ a
+ generalized
+
+
+ generalized
+ waiver
+
+
+ stipulation
+ a
+
+
+ mandated
+ congressionally
+
+
+ stipulation
+ mandated
+
+
+ waiver
+ stipulation
+
+
+
+
+
+
+ The
+ the
+ 4629
+ 4632
+ DT
+ O
+
+
+ best
+ best
+ 4633
+ 4637
+ JJS
+ O
+
+
+ way
+ way
+ 4638
+ 4641
+ NN
+ O
+
+
+ to
+ to
+ 4642
+ 4644
+ TO
+ O
+
+
+ answer
+ answer
+ 4645
+ 4651
+ VB
+ O
+
+
+ that
+ that
+ 4653
+ 4657
+ DT
+ O
+
+
+ question
+ question
+ 4658
+ 4666
+ NN
+ O
+
+
+ and
+ and
+ 4667
+ 4670
+ CC
+ O
+
+
+ to
+ to
+ 4671
+ 4673
+ TO
+ O
+
+
+ resolve
+ resolve
+ 4674
+ 4681
+ VB
+ O
+
+
+ all
+ all
+ 4682
+ 4685
+ DT
+ O
+
+
+ doubt
+ doubt
+ 4686
+ 4691
+ NN
+ O
+
+
+ is
+ be
+ 4693
+ 4695
+ VBZ
+ O
+
+
+ to
+ to
+ 4696
+ 4698
+ TO
+ O
+
+
+ do
+ do
+ 4699
+ 4701
+ VB
+ O
+
+
+ what
+ what
+ 4702
+ 4706
+ WP
+ O
+
+
+ Congress
+ Congress
+ 4707
+ 4715
+ NNP
+ ORGANIZATION
+
+
+ did
+ do
+ 4716
+ 4719
+ VBD
+ O
+
+
+ last
+ last
+ 4720
+ 4724
+ JJ
+ DATE
+ THIS P1Y OFFSET P-1Y
+
+
+
+ year
+ year
+ 4725
+ 4729
+ NN
+ DATE
+ THIS P1Y OFFSET P-1Y
+
+
+
+ :
+ :
+ 4729
+ 4730
+ :
+ O
+
+
+ Change
+ Change
+ 4732
+ 4738
+ NNP
+ O
+
+
+ the
+ the
+ 4739
+ 4742
+ DT
+ O
+
+
+ law
+ law
+ 4743
+ 4746
+ NN
+ O
+
+
+ .
+ .
+ 4746
+ 4747
+ .
+ O
+
+
+ (ROOT (S (NP (NP (DT The) (JJS best) (NN way)) (SBAR (S (VP (VP (TO to) (VP (VB answer) (NP (DT that) (NN question)))) (CC and) (VP (TO to) (VP (VB resolve) (ADVP (DT all) (NN doubt)))))))) (VP (VBZ is) (S (VP (TO to) (VP (VB do) (NP (SBAR (WHNP (WP what)) (S (NP (NNP Congress)) (VP (VBD did) (NP-TMP (JJ last) (NN year))))) (: :) (NP (NP (NNP Change)) (NP (DT the) (NN law)))))))) (. .)))
+
+
+ ROOT
+ is
+
+
+ way
+ The
+
+
+ way
+ best
+
+
+ is
+ way
+
+
+ answer
+ to
+
+
+ way
+ answer
+
+
+ question
+ that
+
+
+ answer
+ question
+
+
+ answer
+ and
+
+
+ resolve
+ to
+
+
+ answer
+ resolve
+
+
+ doubt
+ all
+
+
+ resolve
+ doubt
+
+
+ do
+ to
+
+
+ is
+ do
+
+
+ did
+ what
+
+
+ did
+ Congress
+
+
+ Change
+ did
+
+
+ year
+ last
+
+
+ did
+ year
+
+
+ do
+ Change
+
+
+ law
+ the
+
+
+ Change
+ law
+
+
+
+
+ ROOT
+ is
+
+
+ way
+ The
+
+
+ way
+ best
+
+
+ is
+ way
+
+
+ answer
+ to
+
+
+ way
+ answer
+
+
+ question
+ that
+
+
+ answer
+ question
+
+
+ resolve
+ to
+
+
+ answer
+ resolve
+
+
+ doubt
+ all
+
+
+ resolve
+ doubt
+
+
+ do
+ to
+
+
+ is
+ do
+
+
+ did
+ what
+
+
+ did
+ Congress
+
+
+ Change
+ did
+
+
+ year
+ last
+
+
+ did
+ year
+
+
+ do
+ Change
+
+
+ law
+ the
+
+
+ Change
+ law
+
+
+
+
+ ROOT
+ is
+
+
+ way
+ The
+
+
+ way
+ best
+
+
+ is
+ way
+
+
+ answer
+ to
+
+
+ way
+ answer
+
+
+ question
+ that
+
+
+ answer
+ question
+
+
+ resolve
+ to
+
+
+ way
+ resolve
+
+
+ answer
+ resolve
+
+
+ doubt
+ all
+
+
+ resolve
+ doubt
+
+
+ do
+ to
+
+
+ is
+ do
+
+
+ did
+ what
+
+
+ did
+ Congress
+
+
+ Change
+ did
+
+
+ year
+ last
+
+
+ did
+ year
+
+
+ do
+ Change
+
+
+ law
+ the
+
+
+ Change
+ law
+
+
+
+
+
+
+ That
+ that
+ 4753
+ 4757
+ DT
+ O
+
+
+ is
+ be
+ 4758
+ 4760
+ VBZ
+ O
+
+
+ why
+ why
+ 4761
+ 4764
+ WRB
+ O
+
+
+ we
+ we
+ 4765
+ 4767
+ PRP
+ O
+
+
+ must
+ must
+ 4768
+ 4772
+ MD
+ O
+
+
+ now
+ now
+ 4773
+ 4776
+ RB
+ DATE
+ PRESENT_REF
+ PRESENT_REF
+
+
+ override
+ override
+ 4777
+ 4785
+ VB
+ O
+
+
+ the
+ the
+ 4787
+ 4790
+ DT
+ O
+
+
+ veto
+ veto
+ 4791
+ 4795
+ NN
+ O
+
+
+ .
+ .
+ 4795
+ 4796
+ .
+ O
+
+
+ (ROOT (S (NP (DT That)) (VP (VBZ is) (SBAR (WHADVP (WRB why)) (S (NP (PRP we)) (VP (MD must) (ADVP (RB now)) (VP (VB override) (NP (DT the) (NN veto))))))) (. .)))
+
+
+ ROOT
+ is
+
+
+ is
+ That
+
+
+ override
+ why
+
+
+ override
+ we
+
+
+ override
+ must
+
+
+ override
+ now
+
+
+ is
+ override
+
+
+ veto
+ the
+
+
+ override
+ veto
+
+
+
+
+ ROOT
+ is
+
+
+ is
+ That
+
+
+ override
+ why
+
+
+ override
+ we
+
+
+ override
+ must
+
+
+ override
+ now
+
+
+ is
+ override
+
+
+ veto
+ the
+
+
+ override
+ veto
+
+
+
+
+ ROOT
+ is
+
+
+ is
+ That
+
+
+ override
+ why
+
+
+ override
+ we
+
+
+ override
+ must
+
+
+ override
+ now
+
+
+ is
+ override
+
+
+ veto
+ the
+
+
+ override
+ veto
+
+
+
+
+
+
+ Equally
+ equally
+ 4800
+ 4807
+ RB
+ O
+
+
+ important
+ important
+ 4808
+ 4817
+ JJ
+ O
+
+
+ ,
+ ,
+ 4817
+ 4818
+ ,
+ O
+
+
+ the
+ the
+ 4819
+ 4822
+ DT
+ O
+
+
+ veto
+ veto
+ 4823
+ 4827
+ NN
+ O
+
+
+ sends
+ send
+ 4828
+ 4833
+ VBZ
+ O
+
+
+ exactly
+ exactly
+ 4835
+ 4842
+ RB
+ O
+
+
+ the
+ the
+ 4843
+ 4846
+ DT
+ O
+
+
+ wrong
+ wrong
+ 4847
+ 4852
+ JJ
+ O
+
+
+ signal
+ signal
+ 4853
+ 4859
+ NN
+ O
+
+
+ .
+ .
+ 4859
+ 4860
+ .
+ O
+
+
+ (ROOT (S (S (ADJP (RB Equally) (JJ important))) (, ,) (NP (DT the) (NN veto)) (VP (VBZ sends) (NP (RB exactly) (DT the) (JJ wrong) (NN signal))) (. .)))
+
+
+ ROOT
+ sends
+
+
+ important
+ Equally
+
+
+ sends
+ important
+
+
+ veto
+ the
+
+
+ sends
+ veto
+
+
+ signal
+ exactly
+
+
+ signal
+ the
+
+
+ signal
+ wrong
+
+
+ sends
+ signal
+
+
+
+
+ ROOT
+ sends
+
+
+ important
+ Equally
+
+
+ sends
+ important
+
+
+ veto
+ the
+
+
+ sends
+ veto
+
+
+ signal
+ exactly
+
+
+ signal
+ the
+
+
+ signal
+ wrong
+
+
+ sends
+ signal
+
+
+
+
+ ROOT
+ sends
+
+
+ important
+ Equally
+
+
+ sends
+ important
+
+
+ veto
+ the
+
+
+ sends
+ veto
+
+
+ signal
+ exactly
+
+
+ signal
+ the
+
+
+ signal
+ wrong
+
+
+ sends
+ signal
+
+
+
+
+
+
+ The
+ the
+ 4864
+ 4867
+ DT
+ O
+
+
+ President
+ President
+ 4868
+ 4877
+ NNP
+ O
+
+
+ says
+ say
+ 4878
+ 4882
+ VBZ
+ O
+
+
+ he
+ he
+ 4883
+ 4885
+ PRP
+ O
+
+
+ does
+ do
+ 4886
+ 4890
+ VBZ
+ O
+
+
+ not
+ not
+ 4891
+ 4894
+ RB
+ O
+
+
+ want
+ want
+ 4895
+ 4899
+ VB
+ O
+
+
+ to
+ to
+ 4901
+ 4903
+ TO
+ O
+
+
+ isolate
+ isolate
+ 4904
+ 4911
+ VB
+ O
+
+
+ the
+ the
+ 4912
+ 4915
+ DT
+ O
+
+
+ Government
+ government
+ 4916
+ 4926
+ NN
+ O
+
+
+ of
+ of
+ 4927
+ 4929
+ IN
+ O
+
+
+ China
+ China
+ 4930
+ 4935
+ NNP
+ LOCATION
+
+
+ .
+ .
+ 4935
+ 4936
+ .
+ O
+
+
+ (ROOT (S (NP (DT The) (NNP President)) (VP (VBZ says) (SBAR (S (NP (PRP he)) (VP (VBZ does) (RB not) (VP (VB want) (S (VP (TO to) (VP (VB isolate) (NP (NP (DT the) (NN Government)) (PP (IN of) (NP (NNP China)))))))))))) (. .)))
+
+
+ ROOT
+ says
+
+
+ President
+ The
+
+
+ says
+ President
+
+
+ want
+ he
+
+
+ want
+ does
+
+
+ want
+ not
+
+
+ says
+ want
+
+
+ isolate
+ to
+
+
+ want
+ isolate
+
+
+ Government
+ the
+
+
+ isolate
+ Government
+
+
+ Government
+ of
+
+
+ of
+ China
+
+
+
+
+ ROOT
+ says
+
+
+ President
+ The
+
+
+ says
+ President
+
+
+ want
+ he
+
+
+ want
+ does
+
+
+ want
+ not
+
+
+ says
+ want
+
+
+ isolate
+ to
+
+
+ want
+ isolate
+
+
+ Government
+ the
+
+
+ isolate
+ Government
+
+
+ Government
+ China
+
+
+
+
+ ROOT
+ says
+
+
+ President
+ The
+
+
+ says
+ President
+
+
+ want
+ he
+
+
+ want
+ does
+
+
+ want
+ not
+
+
+ says
+ want
+
+
+ isolate
+ to
+
+
+ want
+ isolate
+
+
+ Government
+ the
+
+
+ isolate
+ Government
+
+
+ Government
+ China
+
+
+
+
+
+
+ Neither
+ neither
+ 4938
+ 4945
+ DT
+ O
+
+
+ do
+ do
+ 4946
+ 4948
+ VBP
+ O
+
+
+ I.
+ i.
+ 4949
+ 4951
+ NN
+ O
+
+
+ But
+ but
+ 4955
+ 4958
+ CC
+ O
+
+
+ to
+ to
+ 4959
+ 4961
+ TO
+ O
+
+
+ the
+ the
+ 4962
+ 4965
+ DT
+ O
+
+
+ extent
+ extent
+ 4966
+ 4972
+ NN
+ O
+
+
+ that
+ that
+ 4973
+ 4977
+ IN
+ O
+
+
+ it
+ it
+ 4978
+ 4980
+ PRP
+ O
+
+
+ is
+ be
+ 4981
+ 4983
+ VBZ
+ O
+
+
+ isolated
+ isolate
+ 4984
+ 4992
+ VBN
+ O
+
+
+ ,
+ ,
+ 4992
+ 4993
+ ,
+ O
+
+
+ the
+ the
+ 4995
+ 4998
+ DT
+ O
+
+
+ Government
+ government
+ 4999
+ 5009
+ NN
+ O
+
+
+ of
+ of
+ 5010
+ 5012
+ IN
+ O
+
+
+ China
+ China
+ 5013
+ 5018
+ NNP
+ LOCATION
+
+
+ isolated
+ isolate
+ 5019
+ 5027
+ VBD
+ O
+
+
+ itself
+ itself
+ 5029
+ 5035
+ PRP
+ O
+
+
+ .
+ .
+ 5035
+ 5036
+ .
+ O
+
+
+ (ROOT (S (S (NP (DT Neither)) (VP (VBP do) (NP (NN I.)))) (CC But) (S (PP (TO to) (NP (NP (DT the) (NN extent)) (SBAR (IN that) (S (NP (PRP it)) (VP (VBZ is) (ADJP (VBN isolated))))))) (, ,) (NP (NP (DT the) (NN Government)) (PP (IN of) (NP (NNP China)))) (VP (VBD isolated) (NP (PRP itself)))) (. .)))
+
+
+ ROOT
+ do
+
+
+ do
+ Neither
+
+
+ do
+ I.
+
+
+ do
+ But
+
+
+ isolated
+ to
+
+
+ extent
+ the
+
+
+ to
+ extent
+
+
+ isolated
+ that
+
+
+ isolated
+ it
+
+
+ isolated
+ is
+
+
+ extent
+ isolated
+
+
+ Government
+ the
+
+
+ isolated
+ Government
+
+
+ Government
+ of
+
+
+ of
+ China
+
+
+ do
+ isolated
+
+
+ isolated
+ itself
+
+
+
+
+ ROOT
+ do
+
+
+ do
+ Neither
+
+
+ do
+ I.
+
+
+ extent
+ the
+
+
+ isolated
+ extent
+
+
+ isolated
+ that
+
+
+ isolated
+ it
+
+
+ isolated
+ is
+
+
+ extent
+ isolated
+
+
+ Government
+ the
+
+
+ isolated
+ Government
+
+
+ Government
+ China
+
+
+ do
+ isolated
+
+
+ isolated
+ itself
+
+
+
+
+ ROOT
+ do
+
+
+ do
+ Neither
+
+
+ do
+ I.
+
+
+ extent
+ the
+
+
+ isolated
+ extent
+
+
+ isolated
+ that
+
+
+ isolated
+ it
+
+
+ isolated
+ is
+
+
+ extent
+ isolated
+
+
+ Government
+ the
+
+
+ isolated
+ Government
+
+
+ Government
+ China
+
+
+ do
+ isolated
+
+
+ isolated
+ itself
+
+
+
+
+
+
+ It
+ it
+ 5037
+ 5039
+ PRP
+ O
+
+
+ isolated
+ isolate
+ 5040
+ 5048
+ VBD
+ O
+
+
+ itself
+ itself
+ 5049
+ 5055
+ PRP
+ O
+
+
+ from
+ from
+ 5056
+ 5060
+ IN
+ O
+
+
+ its
+ its
+ 5061
+ 5064
+ PRP$
+ O
+
+
+ own
+ own
+ 5065
+ 5068
+ JJ
+ O
+
+
+ people
+ people
+ 5070
+ 5076
+ NNS
+ O
+
+
+ and
+ and
+ 5077
+ 5080
+ CC
+ O
+
+
+ from
+ from
+ 5081
+ 5085
+ IN
+ O
+
+
+ the
+ the
+ 5086
+ 5089
+ DT
+ O
+
+
+ community
+ community
+ 5090
+ 5099
+ NN
+ O
+
+
+ of
+ of
+ 5100
+ 5102
+ IN
+ O
+
+
+ na
+ na
+ 5103
+ 5105
+ TO
+ O
+
+
+ -
+ -
+ 5105
+ 5106
+ :
+ O
+
+
+ tions
+ tion
+ 5108
+ 5113
+ NNS
+ O
+
+
+ by
+ by
+ 5114
+ 5116
+ IN
+ O
+
+
+ murdering
+ murder
+ 5117
+ 5126
+ VBG
+ O
+
+
+ its
+ its
+ 5127
+ 5130
+ PRP$
+ O
+
+
+ own
+ own
+ 5131
+ 5134
+ JJ
+ O
+
+
+ citizens
+ citizen
+ 5135
+ 5143
+ NNS
+ O
+
+
+ ,
+ ,
+ 5143
+ 5144
+ ,
+ O
+
+
+ by
+ by
+ 5145
+ 5147
+ IN
+ O
+
+
+ denying
+ deny
+ 5149
+ 5156
+ VBG
+ O
+
+
+ to
+ to
+ 5157
+ 5159
+ TO
+ O
+
+
+ those
+ those
+ 5160
+ 5165
+ DT
+ O
+
+
+ citizens
+ citizen
+ 5166
+ 5174
+ NNS
+ O
+
+
+ even
+ even
+ 5175
+ 5179
+ RB
+ O
+
+
+ the
+ the
+ 5180
+ 5183
+ DT
+ O
+
+
+ most
+ most
+ 5185
+ 5189
+ JJS
+ O
+
+
+ basic
+ basic
+ 5190
+ 5195
+ JJ
+ O
+
+
+ of
+ of
+ 5196
+ 5198
+ IN
+ O
+
+
+ human
+ human
+ 5199
+ 5204
+ JJ
+ O
+
+
+ rights
+ rights
+ 5205
+ 5211
+ NNS
+ O
+
+
+ .
+ .
+ 5211
+ 5212
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VBD isolated) (NP (PRP itself)) (PP (IN from) (NP (PRP$ its) (NP (NP (JJ own) (NNS people)) (CC and) (PP (IN from) (NP (NP (DT the) (NN community)) (SBAR (IN of) (S (VP (TO na))))) (: -))) (NNS tions))) (PP (IN by) (S (VP (VBG murdering) (NP (PRP$ its) (JJ own) (NNS citizens))))) (, ,) (PP (IN by) (S (VP (VBG denying) (PP (TO to) (NP (DT those) (NNS citizens) (RB even))) (NP (NP (DT the) (JJS most) (JJ basic)) (PP (IN of) (NP (JJ human) (NNS rights)))))))) (. .)))
+
+
+ ROOT
+ isolated
+
+
+ isolated
+ It
+
+
+ isolated
+ itself
+
+
+ isolated
+ from
+
+
+ tions
+ its
+
+
+ people
+ own
+
+
+ tions
+ people
+
+
+ people
+ and
+
+
+ people
+ from
+
+
+ community
+ the
+
+
+ from
+ community
+
+
+ na
+ of
+
+
+ community
+ na
+
+
+ from
+ tions
+
+
+ isolated
+ by
+
+
+ by
+ murdering
+
+
+ citizens
+ its
+
+
+ citizens
+ own
+
+
+ murdering
+ citizens
+
+
+ isolated
+ by
+
+
+ by
+ denying
+
+
+ denying
+ to
+
+
+ citizens
+ those
+
+
+ to
+ citizens
+
+
+ citizens
+ even
+
+
+ basic
+ the
+
+
+ basic
+ most
+
+
+ denying
+ basic
+
+
+ basic
+ of
+
+
+ rights
+ human
+
+
+ of
+ rights
+
+
+
+
+ ROOT
+ isolated
+
+
+ isolated
+ It
+
+
+ isolated
+ itself
+
+
+ tions
+ its
+
+
+ people
+ own
+
+
+ tions
+ people
+
+
+ people
+ from
+
+
+ community
+ the
+
+
+ from
+ community
+
+
+ na
+ of
+
+
+ community
+ na
+
+
+ isolated
+ tions
+
+
+ isolated
+ murdering
+
+
+ citizens
+ its
+
+
+ citizens
+ own
+
+
+ murdering
+ citizens
+
+
+ isolated
+ denying
+
+
+ citizens
+ those
+
+
+ denying
+ citizens
+
+
+ citizens
+ even
+
+
+ basic
+ the
+
+
+ basic
+ most
+
+
+ denying
+ basic
+
+
+ rights
+ human
+
+
+ basic
+ rights
+
+
+
+
+ ROOT
+ isolated
+
+
+ isolated
+ It
+
+
+ isolated
+ itself
+
+
+ tions
+ its
+
+
+ people
+ own
+
+
+ tions
+ people
+
+
+ people
+ from
+
+
+ tions
+ from
+
+
+ community
+ the
+
+
+ from
+ community
+
+
+ na
+ of
+
+
+ community
+ na
+
+
+ isolated
+ tions
+
+
+ isolated
+ murdering
+
+
+ citizens
+ its
+
+
+ citizens
+ own
+
+
+ murdering
+ citizens
+
+
+ isolated
+ denying
+
+
+ citizens
+ those
+
+
+ denying
+ citizens
+
+
+ citizens
+ even
+
+
+ basic
+ the
+
+
+ basic
+ most
+
+
+ denying
+ basic
+
+
+ rights
+ human
+
+
+ basic
+ rights
+
+
+
+
+
+
+ Our
+ we
+ 5213
+ 5216
+ PRP$
+ O
+
+
+ re
+ re
+ 5217
+ 5219
+ SYM
+ O
+
+
+ -
+ -
+ 5219
+ 5220
+ :
+ O
+
+
+ sponse
+ sponse
+ 5222
+ 5228
+ NN
+ O
+
+
+ to
+ to
+ 5229
+ 5231
+ TO
+ O
+
+
+ the
+ the
+ 5232
+ 5235
+ DT
+ O
+
+
+ urgent
+ urgent
+ 5236
+ 5242
+ JJ
+ O
+
+
+ and
+ and
+ 5243
+ 5246
+ CC
+ O
+
+
+ well-founded
+ well-founded
+ 5247
+ 5259
+ JJ
+ O
+
+
+ fears
+ fear
+ 5261
+ 5266
+ NNS
+ O
+
+
+ of
+ of
+ 5267
+ 5269
+ IN
+ O
+
+
+ the
+ the
+ 5270
+ 5273
+ DT
+ O
+
+
+ Chinese
+ chinese
+ 5274
+ 5281
+ JJ
+ MISC
+
+
+ students
+ student
+ 5282
+ 5290
+ NNS
+ O
+
+
+ in
+ in
+ 5291
+ 5293
+ IN
+ O
+
+
+ our
+ we
+ 5294
+ 5297
+ PRP$
+ O
+
+
+ country
+ country
+ 5299
+ 5306
+ NN
+ O
+
+
+ was
+ be
+ 5307
+ 5310
+ VBD
+ O
+
+
+ not
+ not
+ 5311
+ 5314
+ RB
+ O
+
+
+ taken
+ take
+ 5315
+ 5320
+ VBN
+ O
+
+
+ to
+ to
+ 5321
+ 5323
+ TO
+ O
+
+
+ isolate
+ isolate
+ 5324
+ 5331
+ VB
+ O
+
+
+ anyone
+ anyone
+ 5333
+ 5339
+ NN
+ O
+
+
+ :
+ :
+ 5339
+ 5340
+ :
+ O
+
+
+ It
+ it
+ 5341
+ 5343
+ PRP
+ O
+
+
+ was
+ be
+ 5344
+ 5347
+ VBD
+ O
+
+
+ an
+ a
+ 5348
+ 5350
+ DT
+ O
+
+
+ appropriate
+ appropriate
+ 5351
+ 5362
+ JJ
+ O
+
+
+ Ameri
+ Ameri
+ 5363
+ 5368
+ NNP
+ LOCATION
+
+
+ -
+ -
+ 5368
+ 5369
+ :
+ O
+
+
+ can
+ can
+ 5371
+ 5374
+ MD
+ O
+
+
+ response
+ response
+ 5375
+ 5383
+ VB
+ O
+
+
+ to
+ to
+ 5384
+ 5386
+ TO
+ O
+
+
+ the
+ the
+ 5387
+ 5390
+ DT
+ O
+
+
+ victims
+ victim
+ 5391
+ 5398
+ NNS
+ O
+
+
+ of
+ of
+ 5399
+ 5401
+ IN
+ O
+
+
+ murder
+ murder
+ 5402
+ 5408
+ NN
+ O
+
+
+ by
+ by
+ 5410
+ 5412
+ IN
+ O
+
+
+ government
+ government
+ 5413
+ 5423
+ NN
+ O
+
+
+ .
+ .
+ 5423
+ 5424
+ .
+ O
+
+
+ (ROOT (FRAG (NP (NP (PRP$ Our)) (SBAR (S (SBAR (X (SYM re)) (S (NP (NP (: -) (NP (NP (NN sponse)) (PP (TO to) (NP (DT the) (JJ urgent)))) (CC and) (NP (NP (JJ well-founded) (NNS fears)) (PP (IN of) (NP (DT the) (JJ Chinese) (NNS students))))) (PP (IN in) (NP (PRP$ our) (NN country)))) (VP (VBD was) (RB not) (VP (VBN taken) (S (VP (TO to) (VP (VB isolate) (NP (NN anyone))))))))) (: :) (NP (PRP It)) (VP (VBD was) (NP (DT an) (JJ appropriate) (NNP Ameri)))))) (: -) (VP (MD can) (VP (VB response) (PP (TO to) (NP (NP (DT the) (NNS victims)) (PP (IN of) (NP (NN murder))))) (PP (IN by) (NP (NN government))))) (. .)))
+
+
+ ROOT
+ Our
+
+
+ taken
+ re
+
+
+ taken
+ sponse
+
+
+ sponse
+ to
+
+
+ urgent
+ the
+
+
+ to
+ urgent
+
+
+ sponse
+ and
+
+
+ fears
+ well-founded
+
+
+ sponse
+ fears
+
+
+ fears
+ of
+
+
+ students
+ the
+
+
+ students
+ Chinese
+
+
+ of
+ students
+
+
+ sponse
+ in
+
+
+ country
+ our
+
+
+ in
+ country
+
+
+ taken
+ was
+
+
+ taken
+ not
+
+
+ Ameri
+ taken
+
+
+ isolate
+ to
+
+
+ taken
+ isolate
+
+
+ isolate
+ anyone
+
+
+ Ameri
+ It
+
+
+ Ameri
+ was
+
+
+ Ameri
+ an
+
+
+ Ameri
+ appropriate
+
+
+ Our
+ Ameri
+
+
+ response
+ can
+
+
+ Our
+ response
+
+
+ response
+ to
+
+
+ victims
+ the
+
+
+ to
+ victims
+
+
+ victims
+ of
+
+
+ of
+ murder
+
+
+ response
+ by
+
+
+ by
+ government
+
+
+
+
+ ROOT
+ Our
+
+
+ taken
+ re
+
+
+ taken
+ sponse
+
+
+ urgent
+ the
+
+
+ sponse
+ urgent
+
+
+ fears
+ well-founded
+
+
+ sponse
+ fears
+
+
+ students
+ the
+
+
+ students
+ Chinese
+
+
+ fears
+ students
+
+
+ country
+ our
+
+
+ sponse
+ country
+
+
+ taken
+ was
+
+
+ taken
+ not
+
+
+ Ameri
+ taken
+
+
+ isolate
+ to
+
+
+ taken
+ isolate
+
+
+ isolate
+ anyone
+
+
+ Ameri
+ It
+
+
+ Ameri
+ was
+
+
+ Ameri
+ an
+
+
+ Ameri
+ appropriate
+
+
+ Our
+ Ameri
+
+
+ response
+ can
+
+
+ Our
+ response
+
+
+ victims
+ the
+
+
+ response
+ victims
+
+
+ victims
+ murder
+
+
+ response
+ government
+
+
+
+
+ ROOT
+ Our
+
+
+ taken
+ re
+
+
+ taken
+ sponse
+
+
+ urgent
+ the
+
+
+ sponse
+ urgent
+
+
+ fears
+ well-founded
+
+
+ sponse
+ fears
+
+
+ taken
+ fears
+
+
+ students
+ the
+
+
+ students
+ Chinese
+
+
+ fears
+ students
+
+
+ country
+ our
+
+
+ sponse
+ country
+
+
+ taken
+ was
+
+
+ taken
+ not
+
+
+ Ameri
+ taken
+
+
+ isolate
+ to
+
+
+ taken
+ isolate
+
+
+ isolate
+ anyone
+
+
+ Ameri
+ It
+
+
+ Ameri
+ was
+
+
+ Ameri
+ an
+
+
+ Ameri
+ appropriate
+
+
+ Our
+ Ameri
+
+
+ response
+ can
+
+
+ Our
+ response
+
+
+ victims
+ the
+
+
+ response
+ victims
+
+
+ victims
+ murder
+
+
+ response
+ government
+
+
+
+
+
+
+ I
+ I
+ 5428
+ 5429
+ PRP
+ O
+
+
+ hope
+ hope
+ 5430
+ 5434
+ VBP
+ O
+
+
+ my
+ my
+ 5435
+ 5437
+ PRP$
+ O
+
+
+ colleagues
+ colleague
+ 5438
+ 5448
+ NNS
+ O
+
+
+ will
+ will
+ 5449
+ 5453
+ MD
+ O
+
+
+ repeat
+ repeat
+ 5454
+ 5460
+ VB
+ O
+
+
+ their
+ they
+ 5462
+ 5467
+ PRP$
+ O
+
+
+ unanimous
+ unanimous
+ 5468
+ 5477
+ JJ
+ O
+
+
+ approval
+ approval
+ 5478
+ 5486
+ NN
+ O
+
+
+ of
+ of
+ 5487
+ 5489
+ IN
+ O
+
+
+ the
+ the
+ 5490
+ 5493
+ DT
+ O
+
+
+ bill
+ bill
+ 5494
+ 5498
+ NN
+ O
+
+
+ last
+ last
+ 5500
+ 5504
+ JJ
+ DATE
+ THIS P1Y OFFSET P-1Y
+
+
+
+ year
+ year
+ 5505
+ 5509
+ NN
+ DATE
+ THIS P1Y OFFSET P-1Y
+
+
+
+ with
+ with
+ 5510
+ 5514
+ IN
+ O
+
+
+ an
+ a
+ 5515
+ 5517
+ DT
+ O
+
+
+ equally
+ equally
+ 5518
+ 5525
+ RB
+ O
+
+
+ strong
+ strong
+ 5526
+ 5532
+ JJ
+ O
+
+
+ vote
+ vote
+ 5533
+ 5537
+ NN
+ O
+
+
+ to
+ to
+ 5539
+ 5541
+ TO
+ O
+
+
+ override
+ override
+ 5542
+ 5550
+ VB
+ O
+
+
+ the
+ the
+ 5551
+ 5554
+ DT
+ O
+
+
+ veto
+ veto
+ 5555
+ 5559
+ NN
+ O
+
+
+ .
+ .
+ 5559
+ 5560
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (VBP hope) (SBAR (S (NP (PRP$ my) (NNS colleagues)) (VP (MD will) (VP (VB repeat) (NP (NP (PRP$ their) (JJ unanimous) (NN approval)) (PP (IN of) (NP (DT the) (NN bill)))) (NP-TMP (JJ last) (NN year)) (PP (IN with) (NP (DT an) (ADJP (RB equally) (JJ strong)) (NN vote) (S (VP (TO to) (VP (VB override) (NP (DT the) (NN veto)))))))))))) (. .)))
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ colleagues
+ my
+
+
+ repeat
+ colleagues
+
+
+ repeat
+ will
+
+
+ hope
+ repeat
+
+
+ approval
+ their
+
+
+ approval
+ unanimous
+
+
+ repeat
+ approval
+
+
+ approval
+ of
+
+
+ bill
+ the
+
+
+ of
+ bill
+
+
+ year
+ last
+
+
+ repeat
+ year
+
+
+ repeat
+ with
+
+
+ vote
+ an
+
+
+ strong
+ equally
+
+
+ vote
+ strong
+
+
+ with
+ vote
+
+
+ override
+ to
+
+
+ vote
+ override
+
+
+ veto
+ the
+
+
+ override
+ veto
+
+
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ colleagues
+ my
+
+
+ repeat
+ colleagues
+
+
+ repeat
+ will
+
+
+ hope
+ repeat
+
+
+ approval
+ their
+
+
+ approval
+ unanimous
+
+
+ repeat
+ approval
+
+
+ bill
+ the
+
+
+ approval
+ bill
+
+
+ year
+ last
+
+
+ repeat
+ year
+
+
+ vote
+ an
+
+
+ strong
+ equally
+
+
+ vote
+ strong
+
+
+ repeat
+ vote
+
+
+ override
+ to
+
+
+ vote
+ override
+
+
+ veto
+ the
+
+
+ override
+ veto
+
+
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ colleagues
+ my
+
+
+ repeat
+ colleagues
+
+
+ repeat
+ will
+
+
+ hope
+ repeat
+
+
+ approval
+ their
+
+
+ approval
+ unanimous
+
+
+ repeat
+ approval
+
+
+ bill
+ the
+
+
+ approval
+ bill
+
+
+ year
+ last
+
+
+ repeat
+ year
+
+
+ vote
+ an
+
+
+ strong
+ equally
+
+
+ vote
+ strong
+
+
+ repeat
+ vote
+
+
+ override
+ to
+
+
+ vote
+ override
+
+
+ veto
+ the
+
+
+ override
+ veto
+
+
+
+
+
+
+ It
+ it
+ 5561
+ 5563
+ PRP
+ O
+
+
+ is
+ be
+ 5564
+ 5566
+ VBZ
+ O
+
+
+ the
+ the
+ 5567
+ 5570
+ DT
+ O
+
+
+ right
+ right
+ 5571
+ 5576
+ JJ
+ O
+
+
+ thing
+ thing
+ 5578
+ 5583
+ NN
+ O
+
+
+ to
+ to
+ 5584
+ 5586
+ TO
+ O
+
+
+ do
+ do
+ 5587
+ 5589
+ VB
+ O
+
+
+ .
+ .
+ 5589
+ 5590
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VBZ is) (NP (DT the) (JJ right) (NN thing) (S (VP (TO to) (VP (VB do)))))) (. .)))
+
+
+ ROOT
+ thing
+
+
+ thing
+ It
+
+
+ thing
+ is
+
+
+ thing
+ the
+
+
+ thing
+ right
+
+
+ do
+ to
+
+
+ thing
+ do
+
+
+
+
+ ROOT
+ thing
+
+
+ thing
+ It
+
+
+ thing
+ is
+
+
+ thing
+ the
+
+
+ thing
+ right
+
+
+ do
+ to
+
+
+ thing
+ do
+
+
+
+
+ ROOT
+ thing
+
+
+ thing
+ It
+
+
+ thing
+ is
+
+
+ thing
+ the
+
+
+ thing
+ right
+
+
+ do
+ to
+
+
+ thing
+ do
+
+
+
+
+
+
+ It
+ it
+ 5594
+ 5596
+ PRP
+ O
+
+
+ is
+ be
+ 5597
+ 5599
+ VBZ
+ O
+
+
+ my
+ my
+ 5600
+ 5602
+ PRP$
+ O
+
+
+ intention
+ intention
+ 5603
+ 5612
+ NN
+ O
+
+
+ to
+ to
+ 5613
+ 5615
+ TO
+ O
+
+
+ proceed
+ proceed
+ 5616
+ 5623
+ VB
+ O
+
+
+ to
+ to
+ 5624
+ 5626
+ TO
+ O
+
+
+ the
+ the
+ 5627
+ 5630
+ DT
+ O
+
+
+ crime
+ crime
+ 5632
+ 5637
+ NN
+ O
+
+
+ legislation
+ legislation
+ 5638
+ 5649
+ NN
+ O
+
+
+ on
+ on
+ 5650
+ 5652
+ IN
+ O
+
+
+ or
+ or
+ 5653
+ 5655
+ CC
+ O
+
+
+ about
+ about
+ 5656
+ 5661
+ IN
+ DATE
+ XXXX-02-07
+ XXXX-02-07
+
+
+ February
+ February
+ 5662
+ 5670
+ NNP
+ DATE
+ XXXX-02-07
+ XXXX-02-07
+
+
+ 7
+ 7
+ 5672
+ 5673
+ CD
+ DATE
+ XXXX-02-07
+ XXXX-02-07
+
+
+ ,
+ ,
+ 5673
+ 5674
+ ,
+ O
+
+
+ as
+ as
+ 5675
+ 5677
+ IN
+ O
+
+
+ provided
+ provide
+ 5678
+ 5686
+ VBN
+ O
+
+
+ in
+ in
+ 5687
+ 5689
+ IN
+ O
+
+
+ the
+ the
+ 5690
+ 5693
+ DT
+ O
+
+
+ agreement
+ agreement
+ 5694
+ 5703
+ NN
+ O
+
+
+ we
+ we
+ 5704
+ 5706
+ PRP
+ O
+
+
+ reached
+ reach
+ 5708
+ 5715
+ VBD
+ O
+
+
+ last
+ last
+ 5716
+ 5720
+ JJ
+ DATE
+ THIS P1Y OFFSET P-1Y
+
+
+
+ year
+ year
+ 5721
+ 5725
+ NN
+ DATE
+ THIS P1Y OFFSET P-1Y
+
+
+
+ .
+ .
+ 5725
+ 5726
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VBZ is) (NP (PRP$ my) (NN intention) (S (VP (TO to) (VP (VB proceed) (PP (TO to) (NP (DT the) (NN crime) (NN legislation))) (PP (IN on) (CC or) (IN about) (NP (NNP February) (CD 7))) (, ,) (SBAR (IN as) (S (PP (VBN provided) (PP (IN in) (NP (DT the) (NN agreement)))) (NP (PRP we)) (VP (VBD reached) (NP-TMP (JJ last) (NN year)))))))))) (. .)))
+
+
+ ROOT
+ intention
+
+
+ intention
+ It
+
+
+ intention
+ is
+
+
+ intention
+ my
+
+
+ proceed
+ to
+
+
+ intention
+ proceed
+
+
+ proceed
+ to
+
+
+ legislation
+ the
+
+
+ legislation
+ crime
+
+
+ to
+ legislation
+
+
+ proceed
+ on
+
+
+ on
+ or
+
+
+ on
+ about
+
+
+ on
+ February
+
+
+ February
+ 7
+
+
+ reached
+ as
+
+
+ reached
+ provided
+
+
+ provided
+ in
+
+
+ agreement
+ the
+
+
+ in
+ agreement
+
+
+ reached
+ we
+
+
+ proceed
+ reached
+
+
+ year
+ last
+
+
+ reached
+ year
+
+
+
+
+ ROOT
+ intention
+
+
+ intention
+ It
+
+
+ intention
+ is
+
+
+ intention
+ my
+
+
+ proceed
+ to
+
+
+ intention
+ proceed
+
+
+ proceed
+ proceed
+
+
+ legislation
+ the
+
+
+ legislation
+ crime
+
+
+ proceed
+ legislation
+
+
+ proceed
+ February
+
+
+ proceed
+ February
+
+
+ February
+ 7
+
+
+ reached
+ as
+
+
+ reached
+ provided
+
+
+ provided
+ in
+
+
+ agreement
+ the
+
+
+ in
+ agreement
+
+
+ reached
+ we
+
+
+ proceed
+ reached
+
+
+ year
+ last
+
+
+ reached
+ year
+
+
+
+
+ ROOT
+ intention
+
+
+ intention
+ It
+
+
+ intention
+ is
+
+
+ intention
+ my
+
+
+ proceed
+ to
+
+
+ intention
+ proceed
+
+
+ intention
+ proceed
+
+
+ proceed
+ proceed
+
+
+ legislation
+ the
+
+
+ legislation
+ crime
+
+
+ proceed
+ legislation
+
+
+ proceed
+ February
+
+
+ proceed
+ February
+
+
+ February
+ 7
+
+
+ reached
+ as
+
+
+ reached
+ provided
+
+
+ provided
+ in
+
+
+ agreement
+ the
+
+
+ in
+ agreement
+
+
+ reached
+ we
+
+
+ proceed
+ reached
+
+
+ year
+ last
+
+
+ reached
+ year
+
+
+
+
+
+
+ Senator
+ Senator
+ 5730
+ 5737
+ NNP
+ O
+
+
+ BIDEN
+ BIDEN
+ 5738
+ 5743
+ NNP
+ PERSON
+
+
+ ,
+ ,
+ 5743
+ 5744
+ ,
+ O
+
+
+ the
+ the
+ 5745
+ 5748
+ DT
+ O
+
+
+ chairman
+ chairman
+ 5749
+ 5757
+ NN
+ O
+
+
+ of
+ of
+ 5758
+ 5760
+ IN
+ O
+
+
+ the
+ the
+ 5761
+ 5764
+ DT
+ O
+
+
+ Judiciary
+ Judiciary
+ 5766
+ 5775
+ NNP
+ ORGANIZATION
+
+
+ Committee
+ Committee
+ 5776
+ 5785
+ NNP
+ ORGANIZATION
+
+
+ ,
+ ,
+ 5785
+ 5786
+ ,
+ O
+
+
+ has
+ have
+ 5787
+ 5790
+ VBZ
+ O
+
+
+ proposed
+ propose
+ 5791
+ 5799
+ VBN
+ O
+
+
+ a
+ a
+ 5800
+ 5801
+ DT
+ O
+
+
+ vehicle
+ vehicle
+ 5803
+ 5810
+ NN
+ O
+
+
+ which
+ which
+ 5811
+ 5816
+ WDT
+ O
+
+
+ incorporates
+ incorporate
+ 5817
+ 5829
+ VBZ
+ O
+
+
+ the
+ the
+ 5830
+ 5833
+ DT
+ O
+
+
+ three
+ three
+ 5834
+ 5839
+ CD
+ NUMBER
+ 3.0
+
+
+ uncompleted
+ uncompleted
+ 5841
+ 5852
+ JJ
+ O
+
+
+ items
+ item
+ 5856
+ 5861
+ NNS
+ O
+
+
+ of
+ of
+ 5863
+ 5865
+ IN
+ O
+
+
+ the
+ the
+ 5867
+ 5870
+ DT
+ O
+
+
+ Bush
+ Bush
+ 5872
+ 5876
+ NNP
+ PERSON
+
+
+ agenda-another
+ agenda-another
+ 5878
+ 5892
+ JJ
+ O
+
+
+ Federal
+ Federal
+ 5893
+ 5900
+ NNP
+ O
+
+
+ death
+ death
+ 5901
+ 5906
+ NN
+ O
+
+
+ penal
+ penal
+ 5907
+ 5912
+ NN
+ O
+
+
+ -
+ -
+ 5912
+ 5913
+ :
+ O
+
+
+ ty
+ ty
+ 5915
+ 5917
+ NN
+ O
+
+
+ ,
+ ,
+ 5917
+ 5918
+ ,
+ O
+
+
+ habeus
+ habeus
+ 5919
+ 5925
+ NN
+ O
+
+
+ corpus
+ corpus
+ 5926
+ 5932
+ NN
+ O
+
+
+ reform
+ reform
+ 5933
+ 5939
+ NN
+ O
+
+
+ ,
+ ,
+ 5939
+ 5940
+ ,
+ O
+
+
+ and
+ and
+ 5941
+ 5944
+ CC
+ O
+
+
+ exclu
+ exclu
+ 5945
+ 5950
+ NN
+ O
+
+
+ -
+ -
+ 5950
+ 5951
+ :
+ O
+
+
+ sionary
+ sionary
+ 5953
+ 5960
+ JJ
+ O
+
+
+ rule
+ rule
+ 5961
+ 5965
+ NN
+ O
+
+
+ changes-along
+ changes-along
+ 5966
+ 5979
+ NN
+ O
+
+
+ with
+ with
+ 5980
+ 5984
+ IN
+ O
+
+
+ some
+ some
+ 5985
+ 5989
+ DT
+ O
+
+
+ important
+ important
+ 5991
+ 6000
+ JJ
+ O
+
+
+ additional
+ additional
+ 6001
+ 6011
+ JJ
+ O
+
+
+ elements
+ element
+ 6012
+ 6020
+ NNS
+ O
+
+
+ to
+ to
+ 6021
+ 6023
+ TO
+ O
+
+
+ curb
+ curb
+ 6024
+ 6028
+ VB
+ O
+
+
+ drug
+ drug
+ 6030
+ 6034
+ NN
+ O
+
+
+ money-laundering
+ money-laundering
+ 6035
+ 6051
+ NN
+ O
+
+
+ ,
+ ,
+ 6051
+ 6052
+ ,
+ O
+
+
+ the
+ the
+ 6053
+ 6056
+ DT
+ O
+
+
+ DeConcini
+ DeConcini
+ 6057
+ 6066
+ NNP
+ PERSON
+
+
+ assault
+ assault
+ 6068
+ 6075
+ NN
+ O
+
+
+ weapons
+ weapon
+ 6076
+ 6083
+ NNS
+ O
+
+
+ bill
+ bill
+ 6084
+ 6088
+ NN
+ O
+
+
+ ,
+ ,
+ 6088
+ 6089
+ ,
+ O
+
+
+ language
+ language
+ 6090
+ 6098
+ NN
+ O
+
+
+ to
+ to
+ 6099
+ 6101
+ TO
+ O
+
+
+ curb
+ curb
+ 6102
+ 6106
+ VB
+ O
+
+
+ the
+ the
+ 6108
+ 6111
+ DT
+ O
+
+
+ export
+ export
+ 6112
+ 6118
+ NN
+ O
+
+
+ of
+ of
+ 6119
+ 6121
+ IN
+ O
+
+
+ assault
+ assault
+ 6122
+ 6129
+ NN
+ O
+
+
+ weapons
+ weapon
+ 6130
+ 6137
+ NNS
+ O
+
+
+ to
+ to
+ 6138
+ 6140
+ TO
+ O
+
+
+ drug
+ drug
+ 6141
+ 6145
+ NN
+ O
+
+
+ dealers
+ dealer
+ 6147
+ 6154
+ NNS
+ O
+
+
+ in
+ in
+ 6155
+ 6157
+ IN
+ O
+
+
+ Latin
+ Latin
+ 6158
+ 6163
+ NNP
+ LOCATION
+
+
+ America
+ America
+ 6164
+ 6171
+ NNP
+ LOCATION
+
+
+ ,
+ ,
+ 6171
+ 6172
+ ,
+ O
+
+
+ as
+ as
+ 6173
+ 6175
+ RB
+ O
+
+
+ well
+ well
+ 6176
+ 6180
+ RB
+ O
+
+
+ as
+ as
+ 6181
+ 6183
+ IN
+ O
+
+
+ ad
+ ad
+ 6184
+ 6186
+ NN
+ O
+
+
+ -
+ -
+ 6186
+ 6187
+ :
+ O
+
+
+ ditional
+ ditional
+ 6189
+ 6197
+ JJ
+ O
+
+
+ funding
+ funding
+ 6198
+ 6205
+ NN
+ O
+
+
+ for
+ for
+ 6206
+ 6209
+ IN
+ O
+
+
+ law
+ law
+ 6210
+ 6213
+ NN
+ O
+
+
+ enforcement
+ enforcement
+ 6214
+ 6225
+ NN
+ O
+
+
+ personnel
+ personnel
+ 6227
+ 6236
+ NNS
+ O
+
+
+ and
+ and
+ 6237
+ 6240
+ CC
+ O
+
+
+ other
+ other
+ 6241
+ 6246
+ JJ
+ O
+
+
+ matters
+ matter
+ 6247
+ 6254
+ NNS
+ O
+
+
+ .
+ .
+ 6254
+ 6255
+ .
+ O
+
+
+ (ROOT (S (NP (NP (NNP Senator) (NNP BIDEN)) (, ,) (NP (NP (DT the) (NN chairman)) (PP (IN of) (NP (DT the) (NNP Judiciary) (NNP Committee)))) (, ,)) (VP (VBZ has) (VP (VBN proposed) (NP (NP (NP (DT a) (NN vehicle)) (SBAR (WHNP (WDT which)) (S (VP (VBZ incorporates) (S (NP (NP (DT the) (CD three) (JJ uncompleted) (NNS items)) (PP (IN of) (NP (NP (DT the) (NNP Bush)) (NP (NP (NP (JJ agenda-another) (NNP Federal)) (NP (NN death) (NN penal))) (: -) (NP (NP (NN ty)) (, ,) (NP (NN habeus) (NN corpus) (NN reform)) (, ,) (CC and) (NP (NN exclu))) (: -) (NP (NP (JJ sionary) (NN rule) (NN changes-along)) (PP (IN with) (NP (DT some) (JJ important) (JJ additional) (NNS elements)))))))) (VP (TO to) (VP (VB curb) (NP (NP (NP (NN drug) (NN money-laundering)) (, ,) (NP (DT the) (NNP DeConcini) (NN assault) (NNS weapons) (NN bill)) (, ,) (NP (NN language) (S (VP (TO to) (VP (VB curb) (NP (NP (DT the) (NN export)) (PP (IN of) (NP (NN assault) (NNS weapons)))) (PP (TO to) (NP (NP (NN drug) (NNS dealers)) (PP (IN in) (NP (NNP Latin) (NNP America)))))))))) (, ,) (CONJP (RB as) (RB well) (IN as)) (NP (NN ad)))))))))) (: -) (NP (NP (JJ ditional) (NN funding)) (PP (IN for) (NP (NN law) (NN enforcement) (NNS personnel)))) (CC and) (NP (JJ other) (NNS matters))))) (. .)))
+
+
+ ROOT
+ proposed
+
+
+ BIDEN
+ Senator
+
+
+ proposed
+ BIDEN
+
+
+ chairman
+ the
+
+
+ BIDEN
+ chairman
+
+
+ chairman
+ of
+
+
+ Committee
+ the
+
+
+ Committee
+ Judiciary
+
+
+ of
+ Committee
+
+
+ proposed
+ has
+
+
+ vehicle
+ a
+
+
+ proposed
+ vehicle
+
+
+ incorporates
+ which
+
+
+ vehicle
+ incorporates
+
+
+ items
+ the
+
+
+ items
+ three
+
+
+ items
+ uncompleted
+
+
+ curb
+ items
+
+
+ items
+ of
+
+
+ Bush
+ the
+
+
+ of
+ Bush
+
+
+ Federal
+ agenda-another
+
+
+ Bush
+ Federal
+
+
+ penal
+ death
+
+
+ Federal
+ penal
+
+
+ Federal
+ ty
+
+
+ reform
+ habeus
+
+
+ reform
+ corpus
+
+
+ ty
+ reform
+
+
+ ty
+ and
+
+
+ ty
+ exclu
+
+
+ changes-along
+ sionary
+
+
+ changes-along
+ rule
+
+
+ Federal
+ changes-along
+
+
+ changes-along
+ with
+
+
+ elements
+ some
+
+
+ elements
+ important
+
+
+ elements
+ additional
+
+
+ with
+ elements
+
+
+ curb
+ to
+
+
+ incorporates
+ curb
+
+
+ money-laundering
+ drug
+
+
+ curb
+ money-laundering
+
+
+ bill
+ the
+
+
+ bill
+ DeConcini
+
+
+ bill
+ assault
+
+
+ bill
+ weapons
+
+
+ money-laundering
+ bill
+
+
+ money-laundering
+ language
+
+
+ curb
+ to
+
+
+ language
+ curb
+
+
+ export
+ the
+
+
+ curb
+ export
+
+
+ export
+ of
+
+
+ weapons
+ assault
+
+
+ of
+ weapons
+
+
+ curb
+ to
+
+
+ dealers
+ drug
+
+
+ to
+ dealers
+
+
+ dealers
+ in
+
+
+ America
+ Latin
+
+
+ in
+ America
+
+
+ well
+ as
+
+
+ money-laundering
+ well
+
+
+ well
+ as
+
+
+ money-laundering
+ ad
+
+
+ funding
+ ditional
+
+
+ vehicle
+ funding
+
+
+ funding
+ for
+
+
+ personnel
+ law
+
+
+ personnel
+ enforcement
+
+
+ for
+ personnel
+
+
+ vehicle
+ and
+
+
+ matters
+ other
+
+
+ vehicle
+ matters
+
+
+
+
+ ROOT
+ proposed
+
+
+ BIDEN
+ Senator
+
+
+ proposed
+ BIDEN
+
+
+ chairman
+ the
+
+
+ BIDEN
+ chairman
+
+
+ Committee
+ the
+
+
+ Committee
+ Judiciary
+
+
+ chairman
+ Committee
+
+
+ proposed
+ has
+
+
+ vehicle
+ a
+
+
+ proposed
+ vehicle
+
+
+ incorporates
+ which
+
+
+ vehicle
+ incorporates
+
+
+ items
+ the
+
+
+ items
+ three
+
+
+ items
+ uncompleted
+
+
+ curb
+ items
+
+
+ Bush
+ the
+
+
+ items
+ Bush
+
+
+ Federal
+ agenda-another
+
+
+ Bush
+ Federal
+
+
+ penal
+ death
+
+
+ Federal
+ penal
+
+
+ Federal
+ ty
+
+
+ reform
+ habeus
+
+
+ reform
+ corpus
+
+
+ ty
+ reform
+
+
+ ty
+ exclu
+
+
+ changes-along
+ sionary
+
+
+ changes-along
+ rule
+
+
+ Federal
+ changes-along
+
+
+ elements
+ some
+
+
+ elements
+ important
+
+
+ elements
+ additional
+
+
+ changes-along
+ elements
+
+
+ curb
+ to
+
+
+ incorporates
+ curb
+
+
+ money-laundering
+ drug
+
+
+ curb
+ money-laundering
+
+
+ bill
+ the
+
+
+ bill
+ DeConcini
+
+
+ bill
+ assault
+
+
+ bill
+ weapons
+
+
+ money-laundering
+ bill
+
+
+ money-laundering
+ language
+
+
+ curb
+ to
+
+
+ language
+ curb
+
+
+ export
+ the
+
+
+ curb
+ export
+
+
+ weapons
+ assault
+
+
+ export
+ weapons
+
+
+ dealers
+ drug
+
+
+ curb
+ dealers
+
+
+ America
+ Latin
+
+
+ dealers
+ America
+
+
+ money-laundering
+ ad
+
+
+ funding
+ ditional
+
+
+ vehicle
+ funding
+
+
+ personnel
+ law
+
+
+ personnel
+ enforcement
+
+
+ funding
+ personnel
+
+
+ matters
+ other
+
+
+ vehicle
+ matters
+
+
+
+
+ ROOT
+ proposed
+
+
+ BIDEN
+ Senator
+
+
+ proposed
+ BIDEN
+
+
+ chairman
+ the
+
+
+ BIDEN
+ chairman
+
+
+ Committee
+ the
+
+
+ Committee
+ Judiciary
+
+
+ chairman
+ Committee
+
+
+ proposed
+ has
+
+
+ vehicle
+ a
+
+
+ proposed
+ vehicle
+
+
+ incorporates
+ which
+
+
+ vehicle
+ incorporates
+
+
+ items
+ the
+
+
+ items
+ three
+
+
+ items
+ uncompleted
+
+
+ curb
+ items
+
+
+ Bush
+ the
+
+
+ items
+ Bush
+
+
+ Federal
+ agenda-another
+
+
+ Bush
+ Federal
+
+
+ penal
+ death
+
+
+ Federal
+ penal
+
+
+ Federal
+ ty
+
+
+ reform
+ habeus
+
+
+ reform
+ corpus
+
+
+ Federal
+ reform
+
+
+ ty
+ reform
+
+
+ Federal
+ exclu
+
+
+ ty
+ exclu
+
+
+ changes-along
+ sionary
+
+
+ changes-along
+ rule
+
+
+ Federal
+ changes-along
+
+
+ elements
+ some
+
+
+ elements
+ important
+
+
+ elements
+ additional
+
+
+ changes-along
+ elements
+
+
+ curb
+ to
+
+
+ incorporates
+ curb
+
+
+ money-laundering
+ drug
+
+
+ curb
+ money-laundering
+
+
+ bill
+ the
+
+
+ bill
+ DeConcini
+
+
+ bill
+ assault
+
+
+ bill
+ weapons
+
+
+ money-laundering
+ bill
+
+
+ money-laundering
+ language
+
+
+ curb
+ to
+
+
+ language
+ curb
+
+
+ export
+ the
+
+
+ curb
+ export
+
+
+ weapons
+ assault
+
+
+ export
+ weapons
+
+
+ dealers
+ drug
+
+
+ curb
+ dealers
+
+
+ America
+ Latin
+
+
+ dealers
+ America
+
+
+ curb
+ ad
+
+
+ money-laundering
+ ad
+
+
+ funding
+ ditional
+
+
+ proposed
+ funding
+
+
+ vehicle
+ funding
+
+
+ personnel
+ law
+
+
+ personnel
+ enforcement
+
+
+ funding
+ personnel
+
+
+ matters
+ other
+
+
+ proposed
+ matters
+
+
+ vehicle
+ matters
+
+
+
+
+
+
+ I
+ I
+ 6259
+ 6260
+ PRP
+ O
+
+
+ know
+ know
+ 6261
+ 6265
+ VBP
+ O
+
+
+ other
+ other
+ 6266
+ 6271
+ JJ
+ O
+
+
+ Senators
+ senator
+ 6272
+ 6280
+ NNS
+ O
+
+
+ have
+ have
+ 6281
+ 6285
+ VBP
+ O
+
+
+ propos
+ propo
+ 6286
+ 6292
+ NNS
+ O
+
+
+ -
+ -
+ 6292
+ 6293
+ :
+ O
+
+
+ als
+ al
+ 6295
+ 6298
+ NNS
+ O
+
+
+ in
+ in
+ 6299
+ 6301
+ IN
+ O
+
+
+ this
+ this
+ 6302
+ 6306
+ DT
+ O
+
+
+ field
+ field
+ 6307
+ 6312
+ NN
+ O
+
+
+ as
+ as
+ 6313
+ 6315
+ RB
+ O
+
+
+ well
+ well
+ 6316
+ 6320
+ RB
+ O
+
+
+ .
+ .
+ 6320
+ 6321
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (VBP know) (SBAR (S (NP (JJ other) (NNS Senators)) (VP (VBP have) (NP (NP (NNS propos)) (: -) (NP (NP (NNS als)) (PP (IN in) (NP (NP (DT this) (NN field)) (ADVP (RB as) (RB well)))))))))) (. .)))
+
+
+ ROOT
+ know
+
+
+ know
+ I
+
+
+ Senators
+ other
+
+
+ have
+ Senators
+
+
+ know
+ have
+
+
+ have
+ propos
+
+
+ propos
+ als
+
+
+ als
+ in
+
+
+ field
+ this
+
+
+ in
+ field
+
+
+ well
+ as
+
+
+ field
+ well
+
+
+
+
+ ROOT
+ know
+
+
+ know
+ I
+
+
+ Senators
+ other
+
+
+ have
+ Senators
+
+
+ know
+ have
+
+
+ have
+ propos
+
+
+ propos
+ als
+
+
+ field
+ this
+
+
+ als
+ field
+
+
+ well
+ as
+
+
+ field
+ well
+
+
+
+
+ ROOT
+ know
+
+
+ know
+ I
+
+
+ Senators
+ other
+
+
+ have
+ Senators
+
+
+ know
+ have
+
+
+ have
+ propos
+
+
+ propos
+ als
+
+
+ field
+ this
+
+
+ als
+ field
+
+
+ well
+ as
+
+
+ field
+ well
+
+
+
+
+
+
+ The
+ the
+ 6325
+ 6328
+ DT
+ O
+
+
+ most
+ most
+ 6329
+ 6333
+ RBS
+ O
+
+
+ effective
+ effective
+ 6334
+ 6343
+ JJ
+ O
+
+
+ direct
+ direct
+ 6344
+ 6350
+ JJ
+ O
+
+
+ assistance
+ assistance
+ 6351
+ 6361
+ NN
+ O
+
+
+ the
+ the
+ 6363
+ 6366
+ DT
+ O
+
+
+ Federal
+ Federal
+ 6367
+ 6374
+ NNP
+ O
+
+
+ Government
+ Government
+ 6375
+ 6385
+ NNP
+ O
+
+
+ can
+ can
+ 6386
+ 6389
+ MD
+ O
+
+
+ provide
+ provide
+ 6390
+ 6397
+ VB
+ O
+
+
+ to
+ to
+ 6399
+ 6401
+ TO
+ O
+
+
+ States
+ States
+ 6402
+ 6408
+ NNPS
+ LOCATION
+
+
+ for
+ for
+ 6409
+ 6412
+ IN
+ O
+
+
+ the
+ the
+ 6413
+ 6416
+ DT
+ O
+
+
+ purpose
+ purpose
+ 6417
+ 6424
+ NN
+ O
+
+
+ of
+ of
+ 6425
+ 6427
+ IN
+ O
+
+
+ curbing
+ curb
+ 6428
+ 6435
+ VBG
+ O
+
+
+ violent
+ violent
+ 6437
+ 6444
+ JJ
+ O
+
+
+ crime
+ crime
+ 6445
+ 6450
+ NN
+ O
+
+
+ is
+ be
+ 6451
+ 6453
+ VBZ
+ O
+
+
+ additional
+ additional
+ 6454
+ 6464
+ JJ
+ O
+
+
+ resources
+ resource
+ 6465
+ 6474
+ NNS
+ O
+
+
+ for
+ for
+ 6476
+ 6479
+ IN
+ O
+
+
+ law
+ law
+ 6480
+ 6483
+ NN
+ O
+
+
+ enforcement
+ enforcement
+ 6484
+ 6495
+ NN
+ O
+
+
+ ,
+ ,
+ 6495
+ 6496
+ ,
+ O
+
+
+ prosecution
+ prosecution
+ 6497
+ 6508
+ NN
+ O
+
+
+ ,
+ ,
+ 6508
+ 6509
+ ,
+ O
+
+
+ and
+ and
+ 6510
+ 6513
+ CC
+ O
+
+
+ detention
+ detention
+ 6515
+ 6524
+ NN
+ O
+
+
+ .
+ .
+ 6524
+ 6525
+ .
+ O
+
+
+ (ROOT (S (NP (NP (DT The) (ADJP (RBS most) (JJ effective)) (JJ direct) (NN assistance)) (SBAR (S (NP (DT the) (NNP Federal) (NNP Government)) (VP (MD can) (VP (VB provide) (PP (TO to) (NP (NNPS States))) (PP (IN for) (NP (NP (DT the) (NN purpose)) (PP (IN of) (S (VP (VBG curbing) (NP (JJ violent) (NN crime)))))))))))) (VP (VBZ is) (NP (NP (JJ additional) (NNS resources)) (PP (IN for) (NP (NP (NN law) (NN enforcement)) (, ,) (NP (NN prosecution)) (, ,) (CC and) (NP (NN detention)))))) (. .)))
+
+
+ ROOT
+ resources
+
+
+ assistance
+ The
+
+
+ effective
+ most
+
+
+ assistance
+ effective
+
+
+ assistance
+ direct
+
+
+ resources
+ assistance
+
+
+ Government
+ the
+
+
+ Government
+ Federal
+
+
+ provide
+ Government
+
+
+ provide
+ can
+
+
+ assistance
+ provide
+
+
+ provide
+ to
+
+
+ to
+ States
+
+
+ provide
+ for
+
+
+ purpose
+ the
+
+
+ for
+ purpose
+
+
+ purpose
+ of
+
+
+ of
+ curbing
+
+
+ crime
+ violent
+
+
+ curbing
+ crime
+
+
+ resources
+ is
+
+
+ resources
+ additional
+
+
+ resources
+ for
+
+
+ enforcement
+ law
+
+
+ for
+ enforcement
+
+
+ enforcement
+ prosecution
+
+
+ enforcement
+ and
+
+
+ enforcement
+ detention
+
+
+
+
+ ROOT
+ resources
+
+
+ assistance
+ The
+
+
+ effective
+ most
+
+
+ assistance
+ effective
+
+
+ assistance
+ direct
+
+
+ resources
+ assistance
+
+
+ Government
+ the
+
+
+ Government
+ Federal
+
+
+ provide
+ Government
+
+
+ provide
+ can
+
+
+ assistance
+ provide
+
+
+ provide
+ States
+
+
+ purpose
+ the
+
+
+ provide
+ purpose
+
+
+ purpose
+ curbing
+
+
+ crime
+ violent
+
+
+ curbing
+ crime
+
+
+ resources
+ is
+
+
+ resources
+ additional
+
+
+ enforcement
+ law
+
+
+ resources
+ enforcement
+
+
+ enforcement
+ prosecution
+
+
+ enforcement
+ detention
+
+
+
+
+ ROOT
+ resources
+
+
+ assistance
+ The
+
+
+ effective
+ most
+
+
+ assistance
+ effective
+
+
+ assistance
+ direct
+
+
+ resources
+ assistance
+
+
+ Government
+ the
+
+
+ Government
+ Federal
+
+
+ provide
+ Government
+
+
+ provide
+ can
+
+
+ assistance
+ provide
+
+
+ provide
+ States
+
+
+ purpose
+ the
+
+
+ provide
+ purpose
+
+
+ purpose
+ curbing
+
+
+ crime
+ violent
+
+
+ curbing
+ crime
+
+
+ resources
+ is
+
+
+ resources
+ additional
+
+
+ enforcement
+ law
+
+
+ resources
+ enforcement
+
+
+ resources
+ prosecution
+
+
+ enforcement
+ prosecution
+
+
+ resources
+ detention
+
+
+ enforcement
+ detention
+
+
+
+
+
+
+ We
+ we
+ 6526
+ 6528
+ PRP
+ O
+
+
+ made
+ make
+ 6529
+ 6533
+ VBD
+ O
+
+
+ a
+ a
+ 6534
+ 6535
+ DT
+ O
+
+
+ good
+ good
+ 6536
+ 6540
+ JJ
+ O
+
+
+ start
+ start
+ 6541
+ 6546
+ NN
+ O
+
+
+ on
+ on
+ 6547
+ 6549
+ IN
+ O
+
+
+ fi
+ fi
+ 6550
+ 6552
+ SYM
+ O
+
+
+ -
+ -
+ 6552
+ 6553
+ :
+ O
+
+
+ nancing
+ nancing
+ 6555
+ 6562
+ NN
+ O
+
+
+ that
+ that
+ 6563
+ 6567
+ WDT
+ O
+
+
+ assistance
+ assistance
+ 6568
+ 6578
+ NN
+ O
+
+
+ last
+ last
+ 6579
+ 6583
+ JJ
+ DATE
+ THIS P1Y OFFSET P-1Y
+
+
+
+ year
+ year
+ 6584
+ 6588
+ NN
+ DATE
+ THIS P1Y OFFSET P-1Y
+
+
+
+ .
+ .
+ 6588
+ 6589
+ .
+ O
+
+
+ (ROOT (S (NP (PRP We)) (VP (VBD made) (NP (DT a) (JJ good) (NN start)) (PP (PP (IN on) (FRAG (X (SYM fi)) (: -) (NP (NN nancing)))) (NP (WDT that) (NN assistance))) (NP-TMP (JJ last) (NN year))) (. .)))
+
+
+ ROOT
+ made
+
+
+ made
+ We
+
+
+ start
+ a
+
+
+ start
+ good
+
+
+ made
+ start
+
+
+ made
+ on
+
+
+ nancing
+ fi
+
+
+ on
+ nancing
+
+
+ assistance
+ that
+
+
+ on
+ assistance
+
+
+ year
+ last
+
+
+ made
+ year
+
+
+
+
+ ROOT
+ made
+
+
+ made
+ We
+
+
+ start
+ a
+
+
+ start
+ good
+
+
+ made
+ start
+
+
+ made
+ on
+
+
+ nancing
+ fi
+
+
+ on
+ nancing
+
+
+ assistance
+ that
+
+
+ on
+ assistance
+
+
+ year
+ last
+
+
+ made
+ year
+
+
+
+
+ ROOT
+ made
+
+
+ made
+ We
+
+
+ start
+ a
+
+
+ start
+ good
+
+
+ made
+ start
+
+
+ made
+ on
+
+
+ nancing
+ fi
+
+
+ on
+ nancing
+
+
+ assistance
+ that
+
+
+ on
+ assistance
+
+
+ year
+ last
+
+
+ made
+ year
+
+
+
+
+
+
+ I
+ I
+ 6590
+ 6591
+ PRP
+ O
+
+
+ hope
+ hope
+ 6593
+ 6597
+ VBP
+ O
+
+
+ the
+ the
+ 6598
+ 6601
+ DT
+ O
+
+
+ President
+ President
+ 6602
+ 6611
+ NNP
+ O
+
+
+ 's
+ 's
+ 6611
+ 6613
+ POS
+ O
+
+
+ budget
+ budget
+ 6614
+ 6620
+ NN
+ O
+
+
+ for
+ for
+ 6621
+ 6624
+ IN
+ O
+
+
+ 1991
+ 1991
+ 6625
+ 6629
+ CD
+ DATE
+ 1991
+
+
+ builds
+ build
+ 6631
+ 6637
+ NNS
+ O
+
+
+ on
+ on
+ 6638
+ 6640
+ IN
+ O
+
+
+ that
+ that
+ 6641
+ 6645
+ DT
+ O
+
+
+ beginning
+ beginning
+ 6646
+ 6655
+ NN
+ O
+
+
+ .
+ .
+ 6655
+ 6656
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (VBP hope) (NP (NP (NP (DT the) (NNP President) (POS 's)) (NN budget)) (PP (IN for) (NP (NP (CD 1991) (NNS builds)) (PP (IN on) (NP (DT that) (NN beginning))))))) (. .)))
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ President
+ the
+
+
+ budget
+ President
+
+
+ President
+ 's
+
+
+ hope
+ budget
+
+
+ budget
+ for
+
+
+ builds
+ 1991
+
+
+ for
+ builds
+
+
+ builds
+ on
+
+
+ beginning
+ that
+
+
+ on
+ beginning
+
+
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ President
+ the
+
+
+ budget
+ President
+
+
+ hope
+ budget
+
+
+ builds
+ 1991
+
+
+ budget
+ builds
+
+
+ beginning
+ that
+
+
+ builds
+ beginning
+
+
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ President
+ the
+
+
+ budget
+ President
+
+
+ hope
+ budget
+
+
+ builds
+ 1991
+
+
+ budget
+ builds
+
+
+ beginning
+ that
+
+
+ builds
+ beginning
+
+
+
+
+
+
+ Following
+ follow
+ 6660
+ 6669
+ VBG
+ O
+
+
+ passage
+ passage
+ 6670
+ 6677
+ NN
+ O
+
+
+ of
+ of
+ 6678
+ 6680
+ IN
+ O
+
+
+ clean
+ clean
+ 6681
+ 6686
+ JJ
+ O
+
+
+ air
+ air
+ 6687
+ 6690
+ NN
+ O
+
+
+ legis
+ legi
+ 6691
+ 6696
+ NN
+ O
+
+
+ -
+ -
+ 6696
+ 6697
+ :
+ O
+
+
+ lation
+ lation
+ 6699
+ 6705
+ NN
+ O
+
+
+ ,
+ ,
+ 6705
+ 6706
+ ,
+ O
+
+
+ we
+ we
+ 6707
+ 6709
+ PRP
+ O
+
+
+ will
+ will
+ 6710
+ 6714
+ MD
+ O
+
+
+ consider
+ consider
+ 6715
+ 6723
+ VB
+ O
+
+
+ national
+ national
+ 6724
+ 6732
+ JJ
+ O
+
+
+ serv
+ serv
+ 6733
+ 6737
+ NN
+ O
+
+
+ -
+ -
+ 6737
+ 6738
+ :
+ O
+
+
+ ice
+ ice
+ 6740
+ 6743
+ NN
+ O
+
+
+ legislation
+ legislation
+ 6744
+ 6755
+ NN
+ O
+
+
+ .
+ .
+ 6755
+ 6756
+ .
+ O
+
+
+ (ROOT (S (PP (VBG Following) (NP (NP (NP (NN passage)) (PP (IN of) (NP (JJ clean) (NN air) (NN legis)))) (: -) (NP (NN lation)))) (, ,) (NP (PRP we)) (VP (MD will) (VP (VB consider) (NP (NP (JJ national) (NN serv)) (: -) (NP (NN ice) (NN legislation))))) (. .)))
+
+
+ ROOT
+ consider
+
+
+ consider
+ Following
+
+
+ Following
+ passage
+
+
+ passage
+ of
+
+
+ legis
+ clean
+
+
+ legis
+ air
+
+
+ of
+ legis
+
+
+ passage
+ lation
+
+
+ consider
+ we
+
+
+ consider
+ will
+
+
+ serv
+ national
+
+
+ consider
+ serv
+
+
+ legislation
+ ice
+
+
+ serv
+ legislation
+
+
+
+
+ ROOT
+ consider
+
+
+ consider
+ passage
+
+
+ legis
+ clean
+
+
+ legis
+ air
+
+
+ passage
+ legis
+
+
+ passage
+ lation
+
+
+ consider
+ we
+
+
+ consider
+ will
+
+
+ serv
+ national
+
+
+ consider
+ serv
+
+
+ legislation
+ ice
+
+
+ serv
+ legislation
+
+
+
+
+ ROOT
+ consider
+
+
+ consider
+ passage
+
+
+ legis
+ clean
+
+
+ legis
+ air
+
+
+ passage
+ legis
+
+
+ passage
+ lation
+
+
+ consider
+ we
+
+
+ consider
+ will
+
+
+ serv
+ national
+
+
+ consider
+ serv
+
+
+ legislation
+ ice
+
+
+ serv
+ legislation
+
+
+
+
+
+
+ The
+ the
+ 6760
+ 6763
+ DT
+ O
+
+
+ national
+ national
+ 6764
+ 6772
+ JJ
+ O
+
+
+ 3ervice
+ 3ervice
+ 6773
+ 6780
+ NN
+ O
+
+
+ concept
+ concept
+ 6781
+ 6788
+ NN
+ O
+
+
+ seeks
+ seek
+ 6789
+ 6794
+ VBZ
+ O
+
+
+ to
+ to
+ 6796
+ 6798
+ TO
+ O
+
+
+ reinstate
+ reinstate
+ 6799
+ 6808
+ VB
+ O
+
+
+ at
+ at
+ 6809
+ 6811
+ IN
+ O
+
+
+ a
+ a
+ 6812
+ 6813
+ DT
+ O
+
+
+ national
+ national
+ 6814
+ 6822
+ JJ
+ O
+
+
+ level
+ level
+ 6823
+ 6828
+ NN
+ O
+
+
+ the
+ the
+ 6829
+ 6832
+ DT
+ O
+
+
+ sense
+ sense
+ 6834
+ 6839
+ NN
+ O
+
+
+ of
+ of
+ 6840
+ 6842
+ IN
+ O
+
+
+ community
+ community
+ 6843
+ 6852
+ NN
+ O
+
+
+ ,
+ ,
+ 6852
+ 6853
+ ,
+ O
+
+
+ participation
+ participation
+ 6854
+ 6867
+ NN
+ O
+
+
+ ,
+ ,
+ 6867
+ 6868
+ ,
+ O
+
+
+ and
+ and
+ 6869
+ 6872
+ CC
+ O
+
+
+ self-help
+ self-help
+ 6874
+ 6883
+ NN
+ O
+
+
+ that
+ that
+ 6884
+ 6888
+ WDT
+ O
+
+
+ are
+ be
+ 6889
+ 6892
+ VBP
+ O
+
+
+ all
+ all
+ 6893
+ 6896
+ DT
+ O
+
+
+ part
+ part
+ 6897
+ 6901
+ NN
+ O
+
+
+ of
+ of
+ 6902
+ 6904
+ IN
+ O
+
+
+ the
+ the
+ 6905
+ 6908
+ DT
+ O
+
+
+ Amer
+ Amer
+ 6909
+ 6913
+ NNP
+ O
+
+
+ -
+ -
+ 6913
+ 6914
+ :
+ O
+
+
+ ican
+ ican
+ 6916
+ 6920
+ JJ
+ O
+
+
+ tradition
+ tradition
+ 6921
+ 6930
+ NN
+ O
+
+
+ .
+ .
+ 6930
+ 6931
+ .
+ O
+
+
+ (ROOT (S (NP (DT The) (JJ national) (NN 3ervice) (NN concept)) (VP (VBZ seeks) (S (VP (TO to) (VP (VB reinstate) (PP (IN at) (NP (DT a) (JJ national) (NN level))) (NP (NP (DT the) (NN sense)) (PP (IN of) (NP (NP (NN community) (, ,) (NN participation) (, ,) (CC and) (NN self-help)) (SBAR (WHNP (WDT that)) (S (VP (VBP are) (NP (NP (NP (DT all) (NN part)) (PP (IN of) (NP (DT the) (NNP Amer)))) (: -) (NP (JJ ican) (NN tradition))))))))))))) (. .)))
+
+
+ ROOT
+ seeks
+
+
+ concept
+ The
+
+
+ concept
+ national
+
+
+ concept
+ 3ervice
+
+
+ seeks
+ concept
+
+
+ reinstate
+ to
+
+
+ seeks
+ reinstate
+
+
+ reinstate
+ at
+
+
+ level
+ a
+
+
+ level
+ national
+
+
+ at
+ level
+
+
+ sense
+ the
+
+
+ reinstate
+ sense
+
+
+ sense
+ of
+
+
+ of
+ community
+
+
+ community
+ participation
+
+
+ community
+ and
+
+
+ community
+ self-help
+
+
+ part
+ that
+
+
+ part
+ are
+
+
+ part
+ all
+
+
+ community
+ part
+
+
+ part
+ of
+
+
+ Amer
+ the
+
+
+ of
+ Amer
+
+
+ tradition
+ ican
+
+
+ part
+ tradition
+
+
+
+
+ ROOT
+ seeks
+
+
+ concept
+ The
+
+
+ concept
+ national
+
+
+ concept
+ 3ervice
+
+
+ seeks
+ concept
+
+
+ reinstate
+ to
+
+
+ seeks
+ reinstate
+
+
+ level
+ a
+
+
+ level
+ national
+
+
+ reinstate
+ level
+
+
+ sense
+ the
+
+
+ reinstate
+ sense
+
+
+ sense
+ community
+
+
+ community
+ participation
+
+
+ community
+ self-help
+
+
+ part
+ that
+
+
+ part
+ are
+
+
+ part
+ all
+
+
+ community
+ part
+
+
+ Amer
+ the
+
+
+ part
+ Amer
+
+
+ tradition
+ ican
+
+
+ part
+ tradition
+
+
+
+
+ ROOT
+ seeks
+
+
+ concept
+ The
+
+
+ concept
+ national
+
+
+ concept
+ 3ervice
+
+
+ seeks
+ concept
+
+
+ reinstate
+ to
+
+
+ seeks
+ reinstate
+
+
+ level
+ a
+
+
+ level
+ national
+
+
+ reinstate
+ level
+
+
+ sense
+ the
+
+
+ reinstate
+ sense
+
+
+ sense
+ community
+
+
+ sense
+ participation
+
+
+ community
+ participation
+
+
+ sense
+ self-help
+
+
+ community
+ self-help
+
+
+ part
+ that
+
+
+ part
+ are
+
+
+ part
+ all
+
+
+ community
+ part
+
+
+ Amer
+ the
+
+
+ part
+ Amer
+
+
+ tradition
+ ican
+
+
+ part
+ tradition
+
+
+
+
+
+
+ National
+ National
+ 6935
+ 6943
+ NNP
+ O
+
+
+ service
+ service
+ 6944
+ 6951
+ NN
+ O
+
+
+ will
+ will
+ 6952
+ 6956
+ MD
+ O
+
+
+ give
+ give
+ 6957
+ 6961
+ VB
+ O
+
+
+ our
+ we
+ 6962
+ 6965
+ PRP$
+ O
+
+
+ young
+ young
+ 6966
+ 6971
+ JJ
+ O
+
+
+ people
+ people
+ 6973
+ 6979
+ NNS
+ O
+
+
+ an
+ a
+ 6980
+ 6982
+ DT
+ O
+
+
+ opportunity
+ opportunity
+ 6983
+ 6994
+ NN
+ O
+
+
+ to
+ to
+ 6995
+ 6997
+ TO
+ O
+
+
+ use
+ use
+ 6998
+ 7001
+ VB
+ O
+
+
+ their
+ they
+ 7002
+ 7007
+ PRP$
+ O
+
+
+ energy
+ energy
+ 7009
+ 7015
+ NN
+ O
+
+
+ and
+ and
+ 7016
+ 7019
+ CC
+ O
+
+
+ ideals
+ ideal
+ 7020
+ 7026
+ NNS
+ O
+
+
+ to
+ to
+ 7027
+ 7029
+ TO
+ O
+
+
+ help
+ help
+ 7030
+ 7034
+ VB
+ O
+
+
+ the
+ the
+ 7035
+ 7038
+ DT
+ O
+
+
+ larger
+ larger
+ 7039
+ 7045
+ JJR
+ O
+
+
+ so
+ so
+ 7046
+ 7048
+ IN
+ O
+
+
+ -
+ -
+ 7048
+ 7049
+ :
+ O
+
+
+ ciety
+ ciety
+ 7051
+ 7056
+ NN
+ O
+
+
+ .
+ .
+ 7056
+ 7057
+ .
+ O
+
+
+ (ROOT (S (NP (NNP National) (NN service)) (VP (MD will) (VP (VB give) (NP (PRP$ our) (JJ young) (NNS people)) (NP (DT an) (NN opportunity) (S (VP (TO to) (VP (VB use) (S (NP (PRP$ their) (NN energy) (CC and) (NNS ideals)) (VP (TO to) (VP (VB help) (NP (DT the) (JJR larger)) (ADVP (IN so)) (: -) (FRAG (NP (NN ciety)))))))))))) (. .)))
+
+
+ ROOT
+ give
+
+
+ service
+ National
+
+
+ give
+ service
+
+
+ give
+ will
+
+
+ people
+ our
+
+
+ people
+ young
+
+
+ give
+ people
+
+
+ opportunity
+ an
+
+
+ give
+ opportunity
+
+
+ use
+ to
+
+
+ opportunity
+ use
+
+
+ energy
+ their
+
+
+ help
+ energy
+
+
+ energy
+ and
+
+
+ energy
+ ideals
+
+
+ help
+ to
+
+
+ use
+ help
+
+
+ larger
+ the
+
+
+ help
+ larger
+
+
+ help
+ so
+
+
+ help
+ ciety
+
+
+
+
+ ROOT
+ give
+
+
+ service
+ National
+
+
+ give
+ service
+
+
+ give
+ will
+
+
+ people
+ our
+
+
+ people
+ young
+
+
+ give
+ people
+
+
+ opportunity
+ an
+
+
+ give
+ opportunity
+
+
+ use
+ to
+
+
+ opportunity
+ use
+
+
+ energy
+ their
+
+
+ help
+ energy
+
+
+ energy
+ ideals
+
+
+ help
+ to
+
+
+ use
+ help
+
+
+ larger
+ the
+
+
+ help
+ larger
+
+
+ help
+ so
+
+
+ help
+ ciety
+
+
+
+
+ ROOT
+ give
+
+
+ service
+ National
+
+
+ give
+ service
+
+
+ give
+ will
+
+
+ people
+ our
+
+
+ people
+ young
+
+
+ give
+ people
+
+
+ opportunity
+ an
+
+
+ give
+ opportunity
+
+
+ use
+ to
+
+
+ opportunity
+ use
+
+
+ energy
+ their
+
+
+ help
+ energy
+
+
+ energy
+ ideals
+
+
+ help
+ ideals
+
+
+ help
+ to
+
+
+ use
+ help
+
+
+ larger
+ the
+
+
+ help
+ larger
+
+
+ help
+ so
+
+
+ help
+ ciety
+
+
+
+
+
+
+ It
+ it
+ 7058
+ 7060
+ PRP
+ O
+
+
+ can
+ can
+ 7061
+ 7064
+ MD
+ O
+
+
+ give
+ give
+ 7065
+ 7069
+ VB
+ O
+
+
+ an
+ a
+ 7070
+ 7072
+ DT
+ O
+
+
+ alternative
+ alternative
+ 7073
+ 7084
+ JJ
+ O
+
+
+ to
+ to
+ 7085
+ 7087
+ TO
+ O
+
+
+ that
+ that
+ 7088
+ 7092
+ DT
+ O
+
+
+ half
+ half
+ 7094
+ 7098
+ NN
+ O
+
+
+ of
+ of
+ 7099
+ 7101
+ IN
+ O
+
+
+ our
+ we
+ 7102
+ 7105
+ PRP$
+ O
+
+
+ young
+ young
+ 7106
+ 7111
+ JJ
+ O
+
+
+ people
+ people
+ 7112
+ 7118
+ NNS
+ O
+
+
+ who
+ who
+ 7119
+ 7122
+ WP
+ O
+
+
+ do
+ do
+ 7123
+ 7125
+ VBP
+ O
+
+
+ not
+ not
+ 7126
+ 7129
+ RB
+ O
+
+
+ go
+ go
+ 7131
+ 7133
+ VB
+ O
+
+
+ to
+ to
+ 7134
+ 7136
+ TO
+ O
+
+
+ college
+ college
+ 7137
+ 7144
+ NN
+ O
+
+
+ .
+ .
+ 7144
+ 7145
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (MD can) (VP (VB give) (NP (DT an) (JJ alternative)) (PP (TO to) (NP (NP (DT that) (NN half)) (PP (IN of) (NP (PRP$ our) (JJ young) (NNS people))) (SBAR (WHNP (WP who)) (S (VP (VBP do) (RB not) (VP (VB go) (PP (TO to) (NP (NN college))))))))))) (. .)))
+
+
+ ROOT
+ give
+
+
+ give
+ It
+
+
+ give
+ can
+
+
+ alternative
+ an
+
+
+ give
+ alternative
+
+
+ give
+ to
+
+
+ half
+ that
+
+
+ to
+ half
+
+
+ half
+ of
+
+
+ people
+ our
+
+
+ people
+ young
+
+
+ of
+ people
+
+
+ go
+ who
+
+
+ go
+ do
+
+
+ go
+ not
+
+
+ half
+ go
+
+
+ go
+ to
+
+
+ to
+ college
+
+
+
+
+ ROOT
+ give
+
+
+ give
+ It
+
+
+ give
+ can
+
+
+ alternative
+ an
+
+
+ give
+ alternative
+
+
+ half
+ that
+
+
+ give
+ half
+
+
+ people
+ our
+
+
+ people
+ young
+
+
+ half
+ people
+
+
+ go
+ who
+
+
+ go
+ do
+
+
+ go
+ not
+
+
+ half
+ go
+
+
+ go
+ college
+
+
+
+
+ ROOT
+ give
+
+
+ give
+ It
+
+
+ give
+ can
+
+
+ alternative
+ an
+
+
+ give
+ alternative
+
+
+ half
+ that
+
+
+ give
+ half
+
+
+ people
+ our
+
+
+ people
+ young
+
+
+ half
+ people
+
+
+ go
+ who
+
+
+ go
+ do
+
+
+ go
+ not
+
+
+ half
+ go
+
+
+ go
+ college
+
+
+
+
+
+
+ It
+ it
+ 7146
+ 7148
+ PRP
+ O
+
+
+ will
+ will
+ 7149
+ 7153
+ MD
+ O
+
+
+ give
+ give
+ 7154
+ 7158
+ VB
+ O
+
+
+ them
+ they
+ 7159
+ 7163
+ PRP
+ O
+
+
+ a
+ a
+ 7164
+ 7165
+ DT
+ O
+
+
+ way
+ way
+ 7166
+ 7169
+ NN
+ O
+
+
+ to
+ to
+ 7171
+ 7173
+ TO
+ O
+
+
+ make
+ make
+ 7174
+ 7178
+ VB
+ O
+
+
+ a
+ a
+ 7179
+ 7180
+ DT
+ O
+
+
+ contribution
+ contribution
+ 7181
+ 7193
+ NN
+ O
+
+
+ and
+ and
+ 7194
+ 7197
+ CC
+ O
+
+
+ ,
+ ,
+ 7197
+ 7198
+ ,
+ O
+
+
+ at
+ at
+ 7199
+ 7201
+ IN
+ O
+
+
+ the
+ the
+ 7202
+ 7205
+ DT
+ O
+
+
+ same
+ same
+ 7207
+ 7211
+ JJ
+ O
+
+
+ time
+ time
+ 7212
+ 7216
+ NN
+ O
+
+
+ ,
+ ,
+ 7216
+ 7217
+ ,
+ O
+
+
+ earn
+ earn
+ 7218
+ 7222
+ VBP
+ O
+
+
+ a
+ a
+ 7223
+ 7224
+ DT
+ O
+
+
+ stake
+ stake
+ 7225
+ 7230
+ NN
+ O
+
+
+ in
+ in
+ 7231
+ 7233
+ IN
+ O
+
+
+ their
+ they
+ 7234
+ 7239
+ PRP$
+ O
+
+
+ own
+ own
+ 7240
+ 7243
+ JJ
+ O
+
+
+ education
+ education
+ 7245
+ 7254
+ NN
+ O
+
+
+ or
+ or
+ 7255
+ 7257
+ CC
+ O
+
+
+ their
+ they
+ 7258
+ 7263
+ PRP$
+ O
+
+
+ first
+ first
+ 7264
+ 7269
+ JJ
+ ORDINAL
+ 1.0
+
+
+ home
+ home
+ 7270
+ 7274
+ NN
+ O
+
+
+ .
+ .
+ 7274
+ 7275
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VP (MD will) (VP (VB give) (NP (PRP them)) (NP (DT a) (NN way) (S (VP (TO to) (VP (VB make) (NP (DT a) (NN contribution)))))))) (CC and) (PRN (, ,) (PP (IN at) (NP (DT the) (JJ same) (NN time))) (, ,)) (VP (VBP earn) (NP (DT a) (NN stake)) (PP (IN in) (NP (NP (PRP$ their) (JJ own) (NN education)) (CC or) (NP (PRP$ their) (JJ first) (NN home)))))) (. .)))
+
+
+ ROOT
+ give
+
+
+ give
+ It
+
+
+ give
+ will
+
+
+ give
+ them
+
+
+ way
+ a
+
+
+ give
+ way
+
+
+ make
+ to
+
+
+ way
+ make
+
+
+ contribution
+ a
+
+
+ make
+ contribution
+
+
+ give
+ and
+
+
+ give
+ at
+
+
+ time
+ the
+
+
+ time
+ same
+
+
+ at
+ time
+
+
+ give
+ earn
+
+
+ stake
+ a
+
+
+ earn
+ stake
+
+
+ earn
+ in
+
+
+ education
+ their
+
+
+ education
+ own
+
+
+ in
+ education
+
+
+ education
+ or
+
+
+ home
+ their
+
+
+ home
+ first
+
+
+ education
+ home
+
+
+
+
+ ROOT
+ give
+
+
+ give
+ It
+
+
+ give
+ will
+
+
+ give
+ them
+
+
+ way
+ a
+
+
+ give
+ way
+
+
+ make
+ to
+
+
+ way
+ make
+
+
+ contribution
+ a
+
+
+ make
+ contribution
+
+
+ give
+ at
+
+
+ time
+ the
+
+
+ time
+ same
+
+
+ at
+ time
+
+
+ give
+ earn
+
+
+ stake
+ a
+
+
+ earn
+ stake
+
+
+ education
+ their
+
+
+ education
+ own
+
+
+ earn
+ education
+
+
+ home
+ their
+
+
+ home
+ first
+
+
+ education
+ home
+
+
+
+
+ ROOT
+ give
+
+
+ give
+ It
+
+
+ earn
+ It
+
+
+ give
+ will
+
+
+ give
+ them
+
+
+ way
+ a
+
+
+ give
+ way
+
+
+ make
+ to
+
+
+ way
+ make
+
+
+ contribution
+ a
+
+
+ make
+ contribution
+
+
+ give
+ at
+
+
+ time
+ the
+
+
+ time
+ same
+
+
+ at
+ time
+
+
+ give
+ earn
+
+
+ stake
+ a
+
+
+ earn
+ stake
+
+
+ education
+ their
+
+
+ education
+ own
+
+
+ earn
+ education
+
+
+ home
+ their
+
+
+ home
+ first
+
+
+ earn
+ home
+
+
+ education
+ home
+
+
+
+
+
+
+ For
+ for
+ 7279
+ 7282
+ IN
+ O
+
+
+ the
+ the
+ 7283
+ 7286
+ DT
+ O
+
+
+ many
+ many
+ 7287
+ 7291
+ JJ
+ O
+
+
+ young
+ young
+ 7292
+ 7297
+ JJ
+ O
+
+
+ people
+ people
+ 7298
+ 7304
+ NNS
+ O
+
+
+ who
+ who
+ 7305
+ 7308
+ WP
+ O
+
+
+ know
+ know
+ 7310
+ 7314
+ VBP
+ O
+
+
+ that
+ that
+ 7315
+ 7319
+ IN
+ O
+
+
+ their
+ they
+ 7320
+ 7325
+ PRP$
+ O
+
+
+ desire
+ desire
+ 7326
+ 7332
+ NN
+ O
+
+
+ to
+ to
+ 7333
+ 7335
+ TO
+ O
+
+
+ attend
+ attend
+ 7336
+ 7342
+ VB
+ O
+
+
+ col
+ col
+ 7343
+ 7346
+ NN
+ O
+
+
+ -
+ -
+ 7346
+ 7347
+ :
+ O
+
+
+ lege
+ lege
+ 7349
+ 7353
+ NN
+ O
+
+
+ poses
+ pose
+ 7354
+ 7359
+ VBZ
+ O
+
+
+ an
+ a
+ 7360
+ 7362
+ DT
+ O
+
+
+ enormous
+ enormous
+ 7363
+ 7371
+ JJ
+ O
+
+
+ financial
+ financial
+ 7372
+ 7381
+ JJ
+ O
+
+
+ sacri
+ sacrus
+ 7382
+ 7387
+ NN
+ O
+
+
+ -
+ -
+ 7387
+ 7388
+ :
+ O
+
+
+ fice
+ fice
+ 7390
+ 7394
+ NN
+ O
+
+
+ to
+ to
+ 7395
+ 7397
+ TO
+ O
+
+
+ their
+ they
+ 7398
+ 7403
+ PRP$
+ O
+
+
+ parents
+ parent
+ 7404
+ 7411
+ NNS
+ O
+
+
+ ,
+ ,
+ 7411
+ 7412
+ ,
+ O
+
+
+ national
+ national
+ 7413
+ 7421
+ JJ
+ O
+
+
+ service
+ service
+ 7422
+ 7429
+ NN
+ O
+
+
+ can
+ can
+ 7433
+ 7436
+ MD
+ O
+
+
+ be
+ be
+ 7437
+ 7439
+ VB
+ O
+
+
+ a
+ a
+ 7440
+ 7441
+ DT
+ O
+
+
+ way
+ way
+ 7442
+ 7445
+ NN
+ O
+
+
+ to
+ to
+ 7446
+ 7448
+ TO
+ O
+
+
+ help
+ help
+ 7449
+ 7453
+ VB
+ O
+
+
+ themselves
+ themselves
+ 7454
+ 7464
+ PRP
+ O
+
+
+ ,
+ ,
+ 7464
+ 7465
+ ,
+ O
+
+
+ by
+ by
+ 7466
+ 7468
+ IN
+ O
+
+
+ earning
+ earn
+ 7470
+ 7477
+ VBG
+ O
+
+
+ their
+ they
+ 7478
+ 7483
+ PRP$
+ O
+
+
+ tuition
+ tuition
+ 7484
+ 7491
+ NN
+ O
+
+
+ costs
+ cost
+ 7492
+ 7497
+ NNS
+ O
+
+
+ in
+ in
+ 7498
+ 7500
+ IN
+ O
+
+
+ advance
+ advance
+ 7501
+ 7508
+ NN
+ O
+
+
+ of
+ of
+ 7510
+ 7512
+ IN
+ O
+
+
+ school
+ school
+ 7513
+ 7519
+ NN
+ O
+
+
+ ,
+ ,
+ 7519
+ 7520
+ ,
+ O
+
+
+ rather
+ rather
+ 7521
+ 7527
+ RB
+ O
+
+
+ than
+ than
+ 7528
+ 7532
+ IN
+ O
+
+
+ graduating
+ graduate
+ 7533
+ 7543
+ VBG
+ O
+
+
+ with
+ with
+ 7544
+ 7548
+ IN
+ O
+
+
+ an
+ a
+ 7550
+ 7552
+ DT
+ O
+
+
+ enormous
+ enormous
+ 7553
+ 7561
+ JJ
+ O
+
+
+ debt
+ debt
+ 7562
+ 7566
+ NN
+ O
+
+
+ load
+ load
+ 7567
+ 7571
+ NN
+ O
+
+
+ .
+ .
+ 7571
+ 7572
+ .
+ O
+
+
+ (ROOT (S (PP (IN For) (NP (NP (NP (DT the) (JJ many) (JJ young) (NNS people)) (SBAR (WHNP (WP who)) (S (VP (VBP know) (SBAR (IN that) (S (NP (PRP$ their) (NN desire)) (VP (TO to) (VP (VB attend) (NP (NN col)))))))))) (: -) (NP (NP (NN lege)) (VP (VBZ poses) (NP (DT an) (JJ enormous) (JJ financial) (NN sacri)))) (: -) (NP (NP (NN fice)) (PP (TO to) (NP (PRP$ their) (NNS parents)))))) (, ,) (NP (JJ national) (NN service)) (VP (MD can) (VP (VB be) (NP (DT a) (NN way) (S (VP (TO to) (VP (VB help) (NP (PRP themselves)))))) (, ,) (PP (IN by) (S (VP (VP (VBG earning) (NP (PRP$ their) (NN tuition) (NNS costs)) (PP (IN in) (NP (NP (NN advance)) (PP (IN of) (NP (NN school)))))) (, ,) (CONJP (RB rather) (IN than)) (VP (VBG graduating) (PP (IN with) (NP (DT an) (JJ enormous) (NN debt) (NN load))))))))) (. .)))
+
+
+ ROOT
+ way
+
+
+ way
+ For
+
+
+ people
+ the
+
+
+ people
+ many
+
+
+ people
+ young
+
+
+ For
+ people
+
+
+ know
+ who
+
+
+ people
+ know
+
+
+ attend
+ that
+
+
+ desire
+ their
+
+
+ attend
+ desire
+
+
+ attend
+ to
+
+
+ know
+ attend
+
+
+ attend
+ col
+
+
+ people
+ lege
+
+
+ lege
+ poses
+
+
+ sacri
+ an
+
+
+ sacri
+ enormous
+
+
+ sacri
+ financial
+
+
+ poses
+ sacri
+
+
+ people
+ fice
+
+
+ fice
+ to
+
+
+ parents
+ their
+
+
+ to
+ parents
+
+
+ service
+ national
+
+
+ way
+ service
+
+
+ way
+ can
+
+
+ way
+ be
+
+
+ way
+ a
+
+
+ help
+ to
+
+
+ way
+ help
+
+
+ help
+ themselves
+
+
+ way
+ by
+
+
+ by
+ earning
+
+
+ costs
+ their
+
+
+ costs
+ tuition
+
+
+ earning
+ costs
+
+
+ earning
+ in
+
+
+ in
+ advance
+
+
+ advance
+ of
+
+
+ of
+ school
+
+
+ earning
+ rather
+
+
+ rather
+ than
+
+
+ earning
+ graduating
+
+
+ graduating
+ with
+
+
+ load
+ an
+
+
+ load
+ enormous
+
+
+ load
+ debt
+
+
+ with
+ load
+
+
+
+
+ ROOT
+ way
+
+
+ people
+ the
+
+
+ people
+ many
+
+
+ people
+ young
+
+
+ way
+ people
+
+
+ know
+ who
+
+
+ people
+ know
+
+
+ attend
+ that
+
+
+ desire
+ their
+
+
+ attend
+ desire
+
+
+ attend
+ to
+
+
+ know
+ attend
+
+
+ attend
+ col
+
+
+ people
+ lege
+
+
+ lege
+ poses
+
+
+ sacri
+ an
+
+
+ sacri
+ enormous
+
+
+ sacri
+ financial
+
+
+ poses
+ sacri
+
+
+ people
+ fice
+
+
+ parents
+ their
+
+
+ fice
+ parents
+
+
+ service
+ national
+
+
+ way
+ service
+
+
+ way
+ can
+
+
+ way
+ be
+
+
+ way
+ a
+
+
+ help
+ to
+
+
+ way
+ help
+
+
+ help
+ themselves
+
+
+ way
+ earning
+
+
+ costs
+ their
+
+
+ costs
+ tuition
+
+
+ earning
+ costs
+
+
+ earning
+ advance
+
+
+ advance
+ school
+
+
+ earning
+ graduating
+
+
+ load
+ an
+
+
+ load
+ enormous
+
+
+ load
+ debt
+
+
+ graduating
+ load
+
+
+
+
+ ROOT
+ way
+
+
+ people
+ the
+
+
+ people
+ many
+
+
+ people
+ young
+
+
+ way
+ people
+
+
+ know
+ who
+
+
+ people
+ know
+
+
+ attend
+ that
+
+
+ desire
+ their
+
+
+ attend
+ desire
+
+
+ attend
+ to
+
+
+ know
+ attend
+
+
+ attend
+ col
+
+
+ people
+ lege
+
+
+ lege
+ poses
+
+
+ sacri
+ an
+
+
+ sacri
+ enormous
+
+
+ sacri
+ financial
+
+
+ poses
+ sacri
+
+
+ people
+ fice
+
+
+ parents
+ their
+
+
+ fice
+ parents
+
+
+ service
+ national
+
+
+ way
+ service
+
+
+ way
+ can
+
+
+ way
+ be
+
+
+ way
+ a
+
+
+ help
+ to
+
+
+ way
+ help
+
+
+ help
+ themselves
+
+
+ way
+ earning
+
+
+ costs
+ their
+
+
+ costs
+ tuition
+
+
+ earning
+ costs
+
+
+ earning
+ advance
+
+
+ advance
+ school
+
+
+ way
+ graduating
+
+
+ earning
+ graduating
+
+
+ load
+ an
+
+
+ load
+ enormous
+
+
+ load
+ debt
+
+
+ graduating
+ load
+
+
+
+
+
+
+ Most
+ most
+ 7576
+ 7580
+ RBS
+ O
+
+
+ important
+ important
+ 7581
+ 7590
+ JJ
+ O
+
+
+ ,
+ ,
+ 7590
+ 7591
+ ,
+ O
+
+
+ national
+ national
+ 7592
+ 7600
+ JJ
+ O
+
+
+ service
+ service
+ 7601
+ 7608
+ NN
+ O
+
+
+ will
+ will
+ 7609
+ 7613
+ MD
+ O
+
+
+ show
+ show
+ 7615
+ 7619
+ VB
+ O
+
+
+ young
+ young
+ 7620
+ 7625
+ JJ
+ O
+
+
+ people
+ people
+ 7626
+ 7632
+ NNS
+ O
+
+
+ in
+ in
+ 7633
+ 7635
+ IN
+ O
+
+
+ very
+ very
+ 7636
+ 7640
+ RB
+ O
+
+
+ direct
+ direct
+ 7641
+ 7647
+ JJ
+ O
+
+
+ and
+ and
+ 7648
+ 7651
+ CC
+ O
+
+
+ practical
+ practical
+ 7653
+ 7662
+ JJ
+ O
+
+
+ terms
+ term
+ 7663
+ 7668
+ NNS
+ O
+
+
+ that
+ that
+ 7669
+ 7673
+ IN
+ O
+
+
+ their
+ they
+ 7674
+ 7679
+ PRP$
+ O
+
+
+ efforts
+ effort
+ 7680
+ 7687
+ NNS
+ O
+
+
+ ,
+ ,
+ 7687
+ 7688
+ ,
+ O
+
+
+ their
+ they
+ 7689
+ 7694
+ PRP$
+ O
+
+
+ talents
+ talent
+ 7696
+ 7703
+ NNS
+ O
+
+
+ and
+ and
+ 7704
+ 7707
+ CC
+ O
+
+
+ their
+ they
+ 7708
+ 7713
+ PRP$
+ O
+
+
+ ideals
+ ideal
+ 7714
+ 7720
+ NNS
+ O
+
+
+ are
+ be
+ 7721
+ 7724
+ VBP
+ O
+
+
+ valued
+ value
+ 7725
+ 7731
+ VBN
+ O
+
+
+ by
+ by
+ 7732
+ 7734
+ IN
+ O
+
+
+ their
+ they
+ 7736
+ 7741
+ PRP$
+ O
+
+
+ society
+ society
+ 7742
+ 7749
+ NN
+ O
+
+
+ and
+ and
+ 7750
+ 7753
+ CC
+ O
+
+
+ needed
+ need
+ 7754
+ 7760
+ VBN
+ O
+
+
+ by
+ by
+ 7761
+ 7763
+ IN
+ O
+
+
+ many
+ many
+ 7764
+ 7768
+ JJ
+ O
+
+
+ mil
+ mil
+ 7769
+ 7772
+ NN
+ O
+
+
+ -
+ -
+ 7772
+ 7773
+ :
+ O
+
+
+ lions
+ lion
+ 7775
+ 7780
+ NNS
+ O
+
+
+ of
+ of
+ 7781
+ 7783
+ IN
+ O
+
+
+ their
+ they
+ 7784
+ 7789
+ PRP$
+ O
+
+
+ fellow
+ fellow
+ 7790
+ 7796
+ JJ
+ O
+
+
+ citizens
+ citizen
+ 7797
+ 7805
+ NNS
+ O
+
+
+ .
+ .
+ 7805
+ 7806
+ .
+ O
+
+
+ (ROOT (S (ADVP (RBS Most) (JJ important)) (, ,) (NP (JJ national) (NN service)) (VP (MD will) (VP (VB show) (NP (JJ young) (NNS people)) (PP (IN in) (NP (ADJP (RB very) (JJ direct) (CC and) (JJ practical)) (NNS terms))) (SBAR (IN that) (S (NP (NP (PRP$ their) (NNS efforts)) (, ,) (NP (PRP$ their) (NNS talents)) (CC and) (NP (PRP$ their) (NNS ideals))) (VP (VBP are) (VP (VP (VBN valued) (PP (IN by) (NP (PRP$ their) (NN society)))) (CC and) (VP (VBN needed) (PP (IN by) (NP (NP (JJ many) (NN mil)) (: -) (NP (NP (NNS lions)) (PP (IN of) (NP (PRP$ their) (JJ fellow) (NNS citizens))))))))))))) (. .)))
+
+
+ ROOT
+ show
+
+
+ important
+ Most
+
+
+ show
+ important
+
+
+ service
+ national
+
+
+ show
+ service
+
+
+ show
+ will
+
+
+ people
+ young
+
+
+ show
+ people
+
+
+ show
+ in
+
+
+ direct
+ very
+
+
+ terms
+ direct
+
+
+ direct
+ and
+
+
+ direct
+ practical
+
+
+ in
+ terms
+
+
+ valued
+ that
+
+
+ efforts
+ their
+
+
+ valued
+ efforts
+
+
+ talents
+ their
+
+
+ efforts
+ talents
+
+
+ efforts
+ and
+
+
+ ideals
+ their
+
+
+ efforts
+ ideals
+
+
+ valued
+ are
+
+
+ show
+ valued
+
+
+ valued
+ by
+
+
+ society
+ their
+
+
+ by
+ society
+
+
+ valued
+ and
+
+
+ valued
+ needed
+
+
+ needed
+ by
+
+
+ mil
+ many
+
+
+ by
+ mil
+
+
+ mil
+ lions
+
+
+ lions
+ of
+
+
+ citizens
+ their
+
+
+ citizens
+ fellow
+
+
+ of
+ citizens
+
+
+
+
+ ROOT
+ show
+
+
+ important
+ Most
+
+
+ show
+ important
+
+
+ service
+ national
+
+
+ show
+ service
+
+
+ show
+ will
+
+
+ people
+ young
+
+
+ show
+ people
+
+
+ direct
+ very
+
+
+ terms
+ direct
+
+
+ direct
+ practical
+
+
+ show
+ terms
+
+
+ valued
+ that
+
+
+ efforts
+ their
+
+
+ valued
+ efforts
+
+
+ talents
+ their
+
+
+ efforts
+ talents
+
+
+ ideals
+ their
+
+
+ efforts
+ ideals
+
+
+ valued
+ are
+
+
+ show
+ valued
+
+
+ society
+ their
+
+
+ valued
+ society
+
+
+ valued
+ needed
+
+
+ mil
+ many
+
+
+ needed
+ mil
+
+
+ mil
+ lions
+
+
+ citizens
+ their
+
+
+ citizens
+ fellow
+
+
+ lions
+ citizens
+
+
+
+
+ ROOT
+ show
+
+
+ important
+ Most
+
+
+ show
+ important
+
+
+ service
+ national
+
+
+ show
+ service
+
+
+ show
+ will
+
+
+ people
+ young
+
+
+ show
+ people
+
+
+ direct
+ very
+
+
+ terms
+ direct
+
+
+ direct
+ practical
+
+
+ terms
+ practical
+
+
+ show
+ terms
+
+
+ valued
+ that
+
+
+ efforts
+ their
+
+
+ valued
+ efforts
+
+
+ needed
+ efforts
+
+
+ talents
+ their
+
+
+ efforts
+ talents
+
+
+ valued
+ talents
+
+
+ ideals
+ their
+
+
+ efforts
+ ideals
+
+
+ valued
+ ideals
+
+
+ valued
+ are
+
+
+ show
+ valued
+
+
+ society
+ their
+
+
+ valued
+ society
+
+
+ show
+ needed
+
+
+ valued
+ needed
+
+
+ mil
+ many
+
+
+ needed
+ mil
+
+
+ mil
+ lions
+
+
+ citizens
+ their
+
+
+ citizens
+ fellow
+
+
+ lions
+ citizens
+
+
+
+
+
+
+ The
+ the
+ 7810
+ 7813
+ DT
+ O
+
+
+ bill
+ bill
+ 7814
+ 7818
+ NN
+ O
+
+
+ we
+ we
+ 7819
+ 7821
+ PRP
+ O
+
+
+ will
+ will
+ 7822
+ 7826
+ MD
+ O
+
+
+ debate
+ debate
+ 7827
+ 7833
+ VB
+ O
+
+
+ includes
+ include
+ 7834
+ 7842
+ VBZ
+ O
+
+
+ a
+ a
+ 7843
+ 7844
+ DT
+ O
+
+
+ voluntary
+ voluntary
+ 7846
+ 7855
+ JJ
+ O
+
+
+ service
+ service
+ 7856
+ 7863
+ NN
+ O
+
+
+ component
+ component
+ 7864
+ 7873
+ NN
+ O
+
+
+ ,
+ ,
+ 7873
+ 7874
+ ,
+ O
+
+
+ a
+ a
+ 7875
+ 7876
+ DT
+ O
+
+
+ conser
+ conser
+ 7877
+ 7883
+ NN
+ O
+
+
+ -
+ -
+ 7883
+ 7884
+ :
+ O
+
+
+ vation
+ vation
+ 7886
+ 7892
+ NN
+ O
+
+
+ component
+ component
+ 7893
+ 7902
+ NN
+ O
+
+
+ ,
+ ,
+ 7902
+ 7903
+ ,
+ O
+
+
+ and
+ and
+ 7904
+ 7907
+ CC
+ O
+
+
+ a
+ a
+ 7908
+ 7909
+ DT
+ O
+
+
+ pilot
+ pilot
+ 7910
+ 7915
+ NN
+ O
+
+
+ program
+ program
+ 7916
+ 7923
+ NN
+ O
+
+
+ for
+ for
+ 7925
+ 7928
+ IN
+ O
+
+
+ the
+ the
+ 7929
+ 7932
+ DT
+ O
+
+
+ core
+ core
+ 7933
+ 7937
+ NN
+ O
+
+
+ idea
+ idea
+ 7938
+ 7942
+ NN
+ O
+
+
+ of
+ of
+ 7943
+ 7945
+ IN
+ O
+
+
+ national
+ national
+ 7946
+ 7954
+ JJ
+ O
+
+
+ service
+ service
+ 7955
+ 7962
+ NN
+ O
+
+
+ in
+ in
+ 7963
+ 7965
+ IN
+ O
+
+
+ exchange
+ exchange
+ 7967
+ 7975
+ NN
+ O
+
+
+ for
+ for
+ 7976
+ 7979
+ IN
+ O
+
+
+ education
+ education
+ 7980
+ 7989
+ NN
+ O
+
+
+ or
+ or
+ 7990
+ 7992
+ CC
+ O
+
+
+ home
+ home
+ 7993
+ 7997
+ NN
+ O
+
+
+ own
+ own
+ 7998
+ 8001
+ JJ
+ O
+
+
+ -
+ -
+ 8001
+ 8002
+ :
+ O
+
+
+ ership
+ ership
+ 8004
+ 8010
+ NN
+ O
+
+
+ credits
+ credit
+ 8011
+ 8018
+ NNS
+ O
+
+
+ .
+ .
+ 8018
+ 8019
+ .
+ O
+
+
+ (ROOT (S (NP (NP (DT The) (NN bill)) (SBAR (S (NP (PRP we)) (VP (MD will) (VP (VB debate)))))) (VP (VBZ includes) (NP (NP (DT a) (JJ voluntary) (NN service) (NN component)) (, ,) (NP (NP (DT a) (NN conser)) (: -) (NP (NN vation) (NN component))) (, ,) (CC and) (NP (NP (DT a) (NN pilot) (NN program)) (PP (IN for) (NP (NP (DT the) (NN core) (NN idea)) (PP (IN of) (NP (JJ national) (NN service))))))) (PP (IN in) (NP (NP (NP (NP (NN exchange)) (PP (IN for) (NP (NN education) (CC or) (NN home)))) (JJ own)) (: -) (NP (NN ership) (NNS credits))))) (. .)))
+
+
+ ROOT
+ includes
+
+
+ bill
+ The
+
+
+ includes
+ bill
+
+
+ debate
+ we
+
+
+ debate
+ will
+
+
+ bill
+ debate
+
+
+ component
+ a
+
+
+ component
+ voluntary
+
+
+ component
+ service
+
+
+ includes
+ component
+
+
+ conser
+ a
+
+
+ component
+ conser
+
+
+ component
+ vation
+
+
+ conser
+ component
+
+
+ component
+ and
+
+
+ program
+ a
+
+
+ program
+ pilot
+
+
+ component
+ program
+
+
+ program
+ for
+
+
+ idea
+ the
+
+
+ idea
+ core
+
+
+ for
+ idea
+
+
+ idea
+ of
+
+
+ service
+ national
+
+
+ of
+ service
+
+
+ includes
+ in
+
+
+ in
+ exchange
+
+
+ exchange
+ for
+
+
+ for
+ education
+
+
+ education
+ or
+
+
+ education
+ home
+
+
+ exchange
+ own
+
+
+ credits
+ ership
+
+
+ exchange
+ credits
+
+
+
+
+ ROOT
+ includes
+
+
+ bill
+ The
+
+
+ includes
+ bill
+
+
+ debate
+ we
+
+
+ debate
+ will
+
+
+ bill
+ debate
+
+
+ component
+ a
+
+
+ component
+ voluntary
+
+
+ component
+ service
+
+
+ includes
+ component
+
+
+ conser
+ a
+
+
+ component
+ conser
+
+
+ component
+ vation
+
+
+ conser
+ component
+
+
+ program
+ a
+
+
+ program
+ pilot
+
+
+ component
+ program
+
+
+ idea
+ the
+
+
+ idea
+ core
+
+
+ program
+ idea
+
+
+ service
+ national
+
+
+ idea
+ service
+
+
+ includes
+ exchange
+
+
+ exchange
+ education
+
+
+ education
+ home
+
+
+ exchange
+ own
+
+
+ credits
+ ership
+
+
+ exchange
+ credits
+
+
+
+
+ ROOT
+ includes
+
+
+ bill
+ The
+
+
+ includes
+ bill
+
+
+ debate
+ we
+
+
+ debate
+ will
+
+
+ bill
+ debate
+
+
+ component
+ a
+
+
+ component
+ voluntary
+
+
+ component
+ service
+
+
+ includes
+ component
+
+
+ conser
+ a
+
+
+ includes
+ conser
+
+
+ component
+ conser
+
+
+ component
+ vation
+
+
+ conser
+ component
+
+
+ program
+ a
+
+
+ program
+ pilot
+
+
+ includes
+ program
+
+
+ component
+ program
+
+
+ idea
+ the
+
+
+ idea
+ core
+
+
+ program
+ idea
+
+
+ service
+ national
+
+
+ idea
+ service
+
+
+ includes
+ exchange
+
+
+ exchange
+ education
+
+
+ exchange
+ home
+
+
+ education
+ home
+
+
+ exchange
+ own
+
+
+ credits
+ ership
+
+
+ exchange
+ credits
+
+
+
+
+
+
+ It
+ it
+ 8023
+ 8025
+ PRP
+ O
+
+
+ is
+ be
+ 8026
+ 8028
+ VBZ
+ O
+
+
+ my
+ my
+ 8029
+ 8031
+ PRP$
+ O
+
+
+ intention
+ intention
+ 8032
+ 8041
+ NN
+ O
+
+
+ also
+ also
+ 8042
+ 8046
+ RB
+ O
+
+
+ to
+ to
+ 8047
+ 8049
+ TO
+ O
+
+
+ move
+ move
+ 8050
+ 8054
+ VB
+ O
+
+
+ promptly
+ promptly
+ 8056
+ 8064
+ RB
+ O
+
+
+ to
+ to
+ 8065
+ 8067
+ TO
+ O
+
+
+ address
+ address
+ 8068
+ 8075
+ VB
+ O
+
+
+ the
+ the
+ 8076
+ 8079
+ DT
+ O
+
+
+ Nation
+ Nation
+ 8080
+ 8086
+ NNP
+ O
+
+
+ 's
+ 's
+ 8086
+ 8088
+ POS
+ O
+
+
+ key
+ key
+ 8089
+ 8092
+ JJ
+ O
+
+
+ education
+ education
+ 8094
+ 8103
+ NN
+ O
+
+
+ needs
+ need
+ 8104
+ 8109
+ NNS
+ O
+
+
+ .
+ .
+ 8109
+ 8110
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VBZ is) (NP (PRP$ my) (NN intention)) (ADVP (RB also)) (S (VP (TO to) (VP (VB move) (ADVP (RB promptly)) (S (VP (TO to) (VP (VB address) (NP (NP (DT the) (NNP Nation) (POS 's)) (JJ key) (NN education) (NNS needs))))))))) (. .)))
+
+
+ ROOT
+ intention
+
+
+ intention
+ It
+
+
+ intention
+ is
+
+
+ intention
+ my
+
+
+ intention
+ also
+
+
+ move
+ to
+
+
+ intention
+ move
+
+
+ move
+ promptly
+
+
+ address
+ to
+
+
+ move
+ address
+
+
+ Nation
+ the
+
+
+ needs
+ Nation
+
+
+ Nation
+ 's
+
+
+ needs
+ key
+
+
+ needs
+ education
+
+
+ address
+ needs
+
+
+
+
+ ROOT
+ intention
+
+
+ intention
+ It
+
+
+ intention
+ is
+
+
+ intention
+ my
+
+
+ intention
+ also
+
+
+ move
+ to
+
+
+ intention
+ move
+
+
+ move
+ promptly
+
+
+ address
+ to
+
+
+ move
+ address
+
+
+ Nation
+ the
+
+
+ needs
+ Nation
+
+
+ needs
+ key
+
+
+ needs
+ education
+
+
+ address
+ needs
+
+
+
+
+ ROOT
+ intention
+
+
+ intention
+ It
+
+
+ intention
+ is
+
+
+ intention
+ my
+
+
+ intention
+ also
+
+
+ move
+ to
+
+
+ intention
+ move
+
+
+ move
+ promptly
+
+
+ address
+ to
+
+
+ move
+ address
+
+
+ Nation
+ the
+
+
+ needs
+ Nation
+
+
+ needs
+ key
+
+
+ needs
+ education
+
+
+ address
+ needs
+
+
+
+
+
+
+ Our
+ we
+ 8114
+ 8117
+ PRP$
+ O
+
+
+ higher
+ higher
+ 8118
+ 8124
+ JJR
+ O
+
+
+ education
+ education
+ 8125
+ 8134
+ NN
+ O
+
+
+ system
+ system
+ 8135
+ 8141
+ NN
+ O
+
+
+ is
+ be
+ 8142
+ 8144
+ VBZ
+ O
+
+
+ among
+ among
+ 8146
+ 8151
+ IN
+ O
+
+
+ the
+ the
+ 8152
+ 8155
+ DT
+ O
+
+
+ finest
+ finest
+ 8156
+ 8162
+ JJS
+ O
+
+
+ in
+ in
+ 8163
+ 8165
+ IN
+ O
+
+
+ the
+ the
+ 8166
+ 8169
+ DT
+ O
+
+
+ world
+ world
+ 8170
+ 8175
+ NN
+ O
+
+
+ .
+ .
+ 8175
+ 8176
+ .
+ O
+
+
+ (ROOT (S (NP (NP (PRP$ Our) (JJR higher) (NN education)) (NP (NN system))) (VP (VBZ is) (PP (IN among) (NP (NP (DT the) (JJS finest)) (PP (IN in) (NP (DT the) (NN world)))))) (. .)))
+
+
+ ROOT
+ is
+
+
+ education
+ Our
+
+
+ education
+ higher
+
+
+ is
+ education
+
+
+ education
+ system
+
+
+ is
+ among
+
+
+ finest
+ the
+
+
+ among
+ finest
+
+
+ finest
+ in
+
+
+ world
+ the
+
+
+ in
+ world
+
+
+
+
+ ROOT
+ is
+
+
+ education
+ Our
+
+
+ education
+ higher
+
+
+ is
+ education
+
+
+ education
+ system
+
+
+ finest
+ the
+
+
+ is
+ finest
+
+
+ world
+ the
+
+
+ finest
+ world
+
+
+
+
+ ROOT
+ is
+
+
+ education
+ Our
+
+
+ education
+ higher
+
+
+ is
+ education
+
+
+ education
+ system
+
+
+ finest
+ the
+
+
+ is
+ finest
+
+
+ world
+ the
+
+
+ finest
+ world
+
+
+
+
+
+
+ But
+ but
+ 8177
+ 8180
+ CC
+ O
+
+
+ half
+ half
+ 8182
+ 8186
+ PDT
+ O
+
+
+ our
+ we
+ 8187
+ 8190
+ PRP$
+ O
+
+
+ students
+ student
+ 8191
+ 8199
+ NNS
+ O
+
+
+ do
+ do
+ 8200
+ 8202
+ VBP
+ O
+
+
+ not
+ not
+ 8203
+ 8206
+ RB
+ O
+
+
+ go
+ go
+ 8207
+ 8209
+ VB
+ O
+
+
+ on
+ on
+ 8210
+ 8212
+ IN
+ O
+
+
+ to
+ to
+ 8213
+ 8215
+ TO
+ O
+
+
+ higher
+ higher
+ 8217
+ 8223
+ JJR
+ O
+
+
+ education
+ education
+ 8224
+ 8233
+ NN
+ O
+
+
+ .
+ .
+ 8233
+ 8234
+ .
+ O
+
+
+ (ROOT (S (CC But) (NP (PDT half) (PRP$ our) (NNS students)) (VP (VBP do) (RB not) (VP (VB go) (PP (IN on) (PP (TO to) (NP (JJR higher) (NN education)))))) (. .)))
+
+
+ ROOT
+ go
+
+
+ go
+ But
+
+
+ students
+ half
+
+
+ students
+ our
+
+
+ go
+ students
+
+
+ go
+ do
+
+
+ go
+ not
+
+
+ go
+ on
+
+
+ on
+ to
+
+
+ education
+ higher
+
+
+ to
+ education
+
+
+
+
+ ROOT
+ go
+
+
+ go
+ But
+
+
+ students
+ half
+
+
+ students
+ our
+
+
+ go
+ students
+
+
+ go
+ do
+
+
+ go
+ not
+
+
+ go
+ on
+
+
+ on
+ to
+
+
+ education
+ higher
+
+
+ to
+ education
+
+
+
+
+ ROOT
+ go
+
+
+ go
+ But
+
+
+ students
+ half
+
+
+ students
+ our
+
+
+ go
+ students
+
+
+ go
+ do
+
+
+ go
+ not
+
+
+ go
+ on
+
+
+ on
+ to
+
+
+ education
+ higher
+
+
+ to
+ education
+
+
+
+
+
+
+ The
+ the
+ 8235
+ 8238
+ DT
+ O
+
+
+ education
+ education
+ 8239
+ 8248
+ NN
+ O
+
+
+ crisis
+ crisis
+ 8249
+ 8255
+ NN
+ O
+
+
+ is
+ be
+ 8257
+ 8259
+ VBZ
+ O
+
+
+ not
+ not
+ 8260
+ 8263
+ RB
+ O
+
+
+ at
+ at
+ 8264
+ 8266
+ IN
+ O
+
+
+ the
+ the
+ 8267
+ 8270
+ DT
+ O
+
+
+ college
+ college
+ 8271
+ 8278
+ NN
+ O
+
+
+ level
+ level
+ 8279
+ 8284
+ NN
+ O
+
+
+ ;
+ ;
+ 8284
+ 8285
+ :
+ O
+
+
+ it
+ it
+ 8286
+ 8288
+ PRP
+ O
+
+
+ is
+ be
+ 8289
+ 8291
+ VBZ
+ O
+
+
+ at
+ at
+ 8292
+ 8294
+ IN
+ O
+
+
+ the
+ the
+ 8295
+ 8298
+ DT
+ O
+
+
+ elementary
+ elementary
+ 8300
+ 8310
+ JJ
+ O
+
+
+ and
+ and
+ 8313
+ 8316
+ CC
+ O
+
+
+ secondary
+ secondary
+ 8319
+ 8328
+ JJ
+ O
+
+
+ levels
+ level
+ 8331
+ 8337
+ NNS
+ O
+
+
+ ,
+ ,
+ 8337
+ 8338
+ ,
+ O
+
+
+ where
+ where
+ 8340
+ 8345
+ WRB
+ O
+
+
+ the
+ the
+ 8346
+ 8349
+ DT
+ O
+
+
+ basic
+ basic
+ 8350
+ 8355
+ JJ
+ O
+
+
+ foundations
+ foundation
+ 8356
+ 8367
+ NNS
+ O
+
+
+ of
+ of
+ 8368
+ 8370
+ IN
+ O
+
+
+ liter
+ liter
+ 8371
+ 8376
+ NN
+ O
+
+
+ -
+ -
+ 8376
+ 8377
+ :
+ O
+
+
+ acy
+ acy
+ 8379
+ 8382
+ NN
+ O
+
+
+ ,
+ ,
+ 8382
+ 8383
+ ,
+ O
+
+
+ mathematical
+ mathematical
+ 8384
+ 8396
+ JJ
+ O
+
+
+ skills
+ skill
+ 8397
+ 8403
+ NNS
+ O
+
+
+ ,
+ ,
+ 8403
+ 8404
+ ,
+ O
+
+
+ and
+ and
+ 8405
+ 8408
+ CC
+ O
+
+
+ learning
+ learn
+ 8409
+ 8417
+ VBG
+ O
+
+
+ skills
+ skill
+ 8419
+ 8425
+ NNS
+ O
+
+
+ are
+ be
+ 8426
+ 8429
+ VBP
+ O
+
+
+ established
+ establish
+ 8430
+ 8441
+ VBN
+ O
+
+
+ .
+ .
+ 8441
+ 8442
+ .
+ O
+
+
+ (ROOT (S (S (NP (DT The) (NN education) (NN crisis)) (VP (VBZ is) (RB not) (PP (IN at) (NP (DT the) (NN college) (NN level))))) (: ;) (S (NP (PRP it)) (VP (VBZ is) (PP (IN at) (NP (DT the) (ADJP (JJ elementary) (CC and) (JJ secondary)) (NNS levels))) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (NP (DT the) (JJ basic) (NNS foundations)) (PP (IN of) (NP (NP (NN liter)) (: -) (NP (NP (NN acy)) (, ,) (NP (NP (JJ mathematical) (NNS skills)) (, ,) (CC and) (VP (VBG learning) (NP (NNS skills)))))))) (VP (VBP are) (VP (VBN established))))))) (. .)))
+
+
+ ROOT
+ is
+
+
+ crisis
+ The
+
+
+ crisis
+ education
+
+
+ is
+ crisis
+
+
+ is
+ not
+
+
+ is
+ at
+
+
+ level
+ the
+
+
+ level
+ college
+
+
+ at
+ level
+
+
+ is
+ it
+
+
+ is
+ is
+
+
+ is
+ at
+
+
+ levels
+ the
+
+
+ levels
+ elementary
+
+
+ elementary
+ and
+
+
+ elementary
+ secondary
+
+
+ at
+ levels
+
+
+ established
+ where
+
+
+ foundations
+ the
+
+
+ foundations
+ basic
+
+
+ established
+ foundations
+
+
+ foundations
+ of
+
+
+ of
+ liter
+
+
+ liter
+ acy
+
+
+ skills
+ mathematical
+
+
+ acy
+ skills
+
+
+ skills
+ and
+
+
+ skills
+ learning
+
+
+ learning
+ skills
+
+
+ established
+ are
+
+
+ is
+ established
+
+
+
+
+ ROOT
+ is
+
+
+ crisis
+ The
+
+
+ crisis
+ education
+
+
+ is
+ crisis
+
+
+ is
+ not
+
+
+ level
+ the
+
+
+ level
+ college
+
+
+ is
+ level
+
+
+ is
+ it
+
+
+ is
+ is
+
+
+ levels
+ the
+
+
+ levels
+ elementary
+
+
+ elementary
+ secondary
+
+
+ is
+ levels
+
+
+ established
+ where
+
+
+ foundations
+ the
+
+
+ foundations
+ basic
+
+
+ established
+ foundations
+
+
+ foundations
+ liter
+
+
+ liter
+ acy
+
+
+ skills
+ mathematical
+
+
+ acy
+ skills
+
+
+ skills
+ learning
+
+
+ learning
+ skills
+
+
+ established
+ are
+
+
+ is
+ established
+
+
+
+
+ ROOT
+ is
+
+
+ crisis
+ The
+
+
+ crisis
+ education
+
+
+ is
+ crisis
+
+
+ is
+ not
+
+
+ level
+ the
+
+
+ level
+ college
+
+
+ is
+ level
+
+
+ is
+ it
+
+
+ is
+ is
+
+
+ levels
+ the
+
+
+ levels
+ elementary
+
+
+ elementary
+ secondary
+
+
+ levels
+ secondary
+
+
+ is
+ levels
+
+
+ established
+ where
+
+
+ foundations
+ the
+
+
+ foundations
+ basic
+
+
+ established
+ foundations
+
+
+ foundations
+ liter
+
+
+ liter
+ acy
+
+
+ skills
+ mathematical
+
+
+ acy
+ skills
+
+
+ acy
+ learning
+
+
+ skills
+ learning
+
+
+ learning
+ skills
+
+
+ established
+ are
+
+
+ is
+ established
+
+
+
+
+
+
+ We
+ we
+ 8446
+ 8448
+ PRP
+ O
+
+
+ will
+ will
+ 8449
+ 8453
+ MD
+ O
+
+
+ debate
+ debate
+ 8454
+ 8460
+ VB
+ O
+
+
+ the
+ the
+ 8461
+ 8464
+ DT
+ O
+
+
+ Educational
+ Educational
+ 8465
+ 8476
+ NNP
+ O
+
+
+ Ex
+ ex
+ 8477
+ 8479
+ FW
+ O
+
+
+ -
+ -
+ 8479
+ 8480
+ :
+ O
+
+
+ cellence
+ cellence
+ 8482
+ 8490
+ NN
+ O
+
+
+ Act
+ act
+ 8491
+ 8494
+ NN
+ O
+
+
+ ,
+ ,
+ 8494
+ 8495
+ ,
+ O
+
+
+ which
+ which
+ 8496
+ 8501
+ WDT
+ O
+
+
+ contains
+ contain
+ 8502
+ 8510
+ VBZ
+ O
+
+
+ the
+ the
+ 8511
+ 8514
+ DT
+ O
+
+
+ Presi
+ Presi
+ 8515
+ 8520
+ NNP
+ ORGANIZATION
+
+
+ -
+ -
+ 8520
+ 8521
+ :
+ O
+
+
+ dent
+ dent
+ 8523
+ 8527
+ NN
+ O
+
+
+ 's
+ 's
+ 8527
+ 8529
+ POS
+ O
+
+
+ proposals
+ proposal
+ 8530
+ 8539
+ NNS
+ O
+
+
+ to
+ to
+ 8540
+ 8542
+ TO
+ O
+
+
+ give
+ give
+ 8543
+ 8547
+ VB
+ O
+
+
+ awards
+ award
+ 8548
+ 8554
+ NNS
+ O
+
+
+ to
+ to
+ 8555
+ 8557
+ TO
+ O
+
+
+ schools
+ school
+ 8559
+ 8566
+ NNS
+ O
+
+
+ and
+ and
+ 8567
+ 8570
+ CC
+ O
+
+
+ teachers
+ teacher
+ 8571
+ 8579
+ NNS
+ O
+
+
+ for
+ for
+ 8580
+ 8583
+ IN
+ O
+
+
+ excellence
+ excellence
+ 8584
+ 8594
+ NN
+ O
+
+
+ ,
+ ,
+ 8594
+ 8595
+ ,
+ O
+
+
+ encourage
+ encourage
+ 8597
+ 8606
+ VBP
+ O
+
+
+ Innovative
+ innovative
+ 8607
+ 8617
+ JJ
+ MISC
+
+
+ teaching
+ teaching
+ 8618
+ 8626
+ NN
+ O
+
+
+ meth
+ meth
+ 8627
+ 8631
+ NN
+ O
+
+
+ -
+ -
+ 8631
+ 8632
+ :
+ O
+
+
+ ods
+ od
+ 8634
+ 8637
+ NNS
+ O
+
+
+ ,
+ ,
+ 8637
+ 8638
+ ,
+ O
+
+
+ and
+ and
+ 8639
+ 8642
+ CC
+ O
+
+
+ reduce
+ reduce
+ 8643
+ 8649
+ VB
+ O
+
+
+ student
+ student
+ 8650
+ 8657
+ NN
+ O
+
+
+ loan
+ loan
+ 8658
+ 8662
+ NN
+ O
+
+
+ defaults
+ default
+ 8663
+ 8671
+ NNS
+ O
+
+
+ .
+ .
+ 8671
+ 8672
+ .
+ O
+
+
+ (ROOT (S (NP (PRP We)) (VP (MD will) (VP (VP (VB debate) (NP (NP (NP (DT the) (NNP Educational)) (NP (FW Ex))) (: -) (S (NP (NP (NN cellence) (NN Act)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBZ contains) (NP (DT the) (NNP Presi)) (: -) (S (NP (NP (NN dent) (POS 's)) (NNS proposals)) (VP (TO to) (VP (VB give) (NP (NNS awards)) (PP (TO to) (NP (NP (NNS schools) (CC and) (NNS teachers)) (PP (IN for) (NP (NN excellence))))))))))) (, ,)) (VP (VBP encourage) (NP (JJ Innovative) (NN teaching) (NN meth)) (: -) (NP (NNS ods)))))) (, ,) (CC and) (VP (VB reduce) (NP (NN student) (NN loan) (NNS defaults))))) (. .)))
+
+
+ ROOT
+ debate
+
+
+ debate
+ We
+
+
+ debate
+ will
+
+
+ Educational
+ the
+
+
+ debate
+ Educational
+
+
+ Educational
+ Ex
+
+
+ Act
+ cellence
+
+
+ encourage
+ Act
+
+
+ contains
+ which
+
+
+ Act
+ contains
+
+
+ Presi
+ the
+
+
+ contains
+ Presi
+
+
+ proposals
+ dent
+
+
+ dent
+ 's
+
+
+ give
+ proposals
+
+
+ give
+ to
+
+
+ contains
+ give
+
+
+ give
+ awards
+
+
+ give
+ to
+
+
+ to
+ schools
+
+
+ schools
+ and
+
+
+ schools
+ teachers
+
+
+ schools
+ for
+
+
+ for
+ excellence
+
+
+ Educational
+ encourage
+
+
+ meth
+ Innovative
+
+
+ meth
+ teaching
+
+
+ encourage
+ meth
+
+
+ encourage
+ ods
+
+
+ debate
+ and
+
+
+ debate
+ reduce
+
+
+ defaults
+ student
+
+
+ defaults
+ loan
+
+
+ reduce
+ defaults
+
+
+
+
+ ROOT
+ debate
+
+
+ debate
+ We
+
+
+ debate
+ will
+
+
+ Educational
+ the
+
+
+ debate
+ Educational
+
+
+ Educational
+ Ex
+
+
+ Act
+ cellence
+
+
+ encourage
+ Act
+
+
+ contains
+ which
+
+
+ Act
+ contains
+
+
+ Presi
+ the
+
+
+ contains
+ Presi
+
+
+ proposals
+ dent
+
+
+ give
+ proposals
+
+
+ give
+ to
+
+
+ contains
+ give
+
+
+ give
+ awards
+
+
+ give
+ schools
+
+
+ schools
+ teachers
+
+
+ schools
+ excellence
+
+
+ Educational
+ encourage
+
+
+ meth
+ Innovative
+
+
+ meth
+ teaching
+
+
+ encourage
+ meth
+
+
+ encourage
+ ods
+
+
+ debate
+ reduce
+
+
+ defaults
+ student
+
+
+ defaults
+ loan
+
+
+ reduce
+ defaults
+
+
+
+
+ ROOT
+ debate
+
+
+ debate
+ We
+
+
+ reduce
+ We
+
+
+ debate
+ will
+
+
+ Educational
+ the
+
+
+ debate
+ Educational
+
+
+ Educational
+ Ex
+
+
+ Act
+ cellence
+
+
+ encourage
+ Act
+
+
+ contains
+ which
+
+
+ Act
+ contains
+
+
+ Presi
+ the
+
+
+ contains
+ Presi
+
+
+ proposals
+ dent
+
+
+ give
+ proposals
+
+
+ give
+ to
+
+
+ contains
+ give
+
+
+ give
+ awards
+
+
+ give
+ schools
+
+
+ give
+ teachers
+
+
+ schools
+ teachers
+
+
+ schools
+ excellence
+
+
+ Educational
+ encourage
+
+
+ meth
+ Innovative
+
+
+ meth
+ teaching
+
+
+ encourage
+ meth
+
+
+ encourage
+ ods
+
+
+ debate
+ reduce
+
+
+ defaults
+ student
+
+
+ defaults
+ loan
+
+
+ reduce
+ defaults
+
+
+
+
+
+
+ I
+ I
+ 8676
+ 8677
+ PRP
+ O
+
+
+ also
+ also
+ 8678
+ 8682
+ RB
+ O
+
+
+ want
+ want
+ 8683
+ 8687
+ VBP
+ O
+
+
+ to
+ to
+ 8688
+ 8690
+ TO
+ O
+
+
+ consider
+ consider
+ 8691
+ 8699
+ VB
+ O
+
+
+ the
+ the
+ 8700
+ 8703
+ DT
+ O
+
+
+ National
+ National
+ 8704
+ 8712
+ NNP
+ O
+
+
+ Literacy
+ literacy
+ 8714
+ 8722
+ NN
+ O
+
+
+ Act
+ Act
+ 8723
+ 8726
+ NNP
+ O
+
+
+ ,
+ ,
+ 8726
+ 8727
+ ,
+ O
+
+
+ which
+ which
+ 8728
+ 8733
+ WDT
+ O
+
+
+ is
+ be
+ 8734
+ 8736
+ VBZ
+ O
+
+
+ designed
+ design
+ 8737
+ 8745
+ VBN
+ O
+
+
+ to
+ to
+ 8746
+ 8748
+ TO
+ O
+
+
+ eliminate
+ eliminate
+ 8750
+ 8759
+ VB
+ O
+
+
+ illiteracy
+ illiteracy
+ 8760
+ 8770
+ NN
+ O
+
+
+ in
+ in
+ 8771
+ 8773
+ IN
+ O
+
+
+ this
+ this
+ 8774
+ 8778
+ DT
+ O
+
+
+ Nation
+ nation
+ 8779
+ 8785
+ NN
+ O
+
+
+ by
+ by
+ 8786
+ 8788
+ IN
+ O
+
+
+ the
+ the
+ 8790
+ 8793
+ DT
+ DATE
+ 2000
+ 2000
+
+
+ year
+ year
+ 8794
+ 8798
+ NN
+ DATE
+ 2000
+ 2000
+
+
+ 2000
+ 2000
+ 8799
+ 8803
+ CD
+ DATE
+ 2000
+ 2000
+
+
+ .
+ .
+ 8803
+ 8804
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (ADVP (RB also)) (VP (VBP want) (S (VP (TO to) (VP (VB consider) (NP (DT the) (NNP National) (NN Literacy))))) (NP-TMP (NP (NNP Act)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBZ is) (VP (VBN designed) (S (VP (TO to) (VP (VB eliminate) (NP (NP (NN illiteracy)) (PP (IN in) (NP (DT this) (NN Nation)))) (PP (IN by) (NP (DT the) (NN year) (CD 2000)))))))))))) (. .)))
+
+
+ ROOT
+ want
+
+
+ want
+ I
+
+
+ want
+ also
+
+
+ consider
+ to
+
+
+ want
+ consider
+
+
+ Literacy
+ the
+
+
+ Literacy
+ National
+
+
+ consider
+ Literacy
+
+
+ want
+ Act
+
+
+ designed
+ which
+
+
+ designed
+ is
+
+
+ Act
+ designed
+
+
+ eliminate
+ to
+
+
+ designed
+ eliminate
+
+
+ eliminate
+ illiteracy
+
+
+ illiteracy
+ in
+
+
+ Nation
+ this
+
+
+ in
+ Nation
+
+
+ eliminate
+ by
+
+
+ year
+ the
+
+
+ by
+ year
+
+
+ year
+ 2000
+
+
+
+
+ ROOT
+ want
+
+
+ want
+ I
+
+
+ want
+ also
+
+
+ consider
+ to
+
+
+ want
+ consider
+
+
+ Literacy
+ the
+
+
+ Literacy
+ National
+
+
+ consider
+ Literacy
+
+
+ want
+ Act
+
+
+ designed
+ which
+
+
+ designed
+ is
+
+
+ Act
+ designed
+
+
+ eliminate
+ to
+
+
+ designed
+ eliminate
+
+
+ eliminate
+ illiteracy
+
+
+ Nation
+ this
+
+
+ illiteracy
+ Nation
+
+
+ year
+ the
+
+
+ eliminate
+ year
+
+
+ year
+ 2000
+
+
+
+
+ ROOT
+ want
+
+
+ want
+ I
+
+
+ want
+ also
+
+
+ consider
+ to
+
+
+ want
+ consider
+
+
+ Literacy
+ the
+
+
+ Literacy
+ National
+
+
+ consider
+ Literacy
+
+
+ want
+ Act
+
+
+ designed
+ which
+
+
+ designed
+ is
+
+
+ Act
+ designed
+
+
+ eliminate
+ to
+
+
+ designed
+ eliminate
+
+
+ eliminate
+ illiteracy
+
+
+ Nation
+ this
+
+
+ illiteracy
+ Nation
+
+
+ year
+ the
+
+
+ eliminate
+ year
+
+
+ year
+ 2000
+
+
+
+
+
+
+ No
+ no
+ 8805
+ 8807
+ DT
+ O
+
+
+ single
+ single
+ 8808
+ 8814
+ JJ
+ O
+
+
+ action
+ action
+ 8815
+ 8821
+ NN
+ O
+
+
+ is
+ be
+ 8822
+ 8824
+ VBZ
+ O
+
+
+ more
+ more
+ 8825
+ 8829
+ RBR
+ O
+
+
+ critical
+ critical
+ 8831
+ 8839
+ JJ
+ O
+
+
+ to
+ to
+ 8840
+ 8842
+ TO
+ O
+
+
+ our
+ we
+ 8843
+ 8846
+ PRP$
+ O
+
+
+ future
+ future
+ 8847
+ 8853
+ JJ
+ DATE
+ FUTURE_REF
+ FUTURE_REF
+
+
+ economic
+ economic
+ 8854
+ 8862
+ JJ
+ O
+
+
+ securi
+ securus
+ 8863
+ 8869
+ NN
+ O
+
+
+ -
+ -
+ 8869
+ 8870
+ :
+ O
+
+
+ ty
+ ty
+ 8872
+ 8874
+ NN
+ O
+
+
+ .
+ .
+ 8874
+ 8875
+ .
+ O
+
+
+ (ROOT (S (NP (DT No) (JJ single) (NN action)) (VP (VBZ is) (ADJP (RBR more) (JJ critical) (PP (TO to) (NP (PRP$ our) (JJ future) (JJ economic) (NN securi) (: -) (NN ty))))) (. .)))
+
+
+ ROOT
+ critical
+
+
+ action
+ No
+
+
+ action
+ single
+
+
+ critical
+ action
+
+
+ critical
+ is
+
+
+ critical
+ more
+
+
+ critical
+ to
+
+
+ ty
+ our
+
+
+ ty
+ future
+
+
+ ty
+ economic
+
+
+ ty
+ securi
+
+
+ to
+ ty
+
+
+
+
+ ROOT
+ critical
+
+
+ action
+ No
+
+
+ action
+ single
+
+
+ critical
+ action
+
+
+ critical
+ is
+
+
+ critical
+ more
+
+
+ ty
+ our
+
+
+ ty
+ future
+
+
+ ty
+ economic
+
+
+ ty
+ securi
+
+
+ critical
+ ty
+
+
+
+
+ ROOT
+ critical
+
+
+ action
+ No
+
+
+ action
+ single
+
+
+ critical
+ action
+
+
+ critical
+ is
+
+
+ critical
+ more
+
+
+ ty
+ our
+
+
+ ty
+ future
+
+
+ ty
+ economic
+
+
+ ty
+ securi
+
+
+ critical
+ ty
+
+
+
+
+
+
+ By
+ by
+ 8876
+ 8878
+ IN
+ O
+
+
+ the
+ the
+ 8879
+ 8882
+ DT
+ DATE
+ THIS P100Y
+
+
+
+ end
+ end
+ 8883
+ 8886
+ NN
+ DATE
+ THIS P100Y
+
+
+
+ of
+ of
+ 8887
+ 8889
+ IN
+ DATE
+ THIS P100Y
+
+
+
+ the
+ the
+ 8890
+ 8893
+ DT
+ DATE
+ THIS P100Y
+
+
+
+ century
+ century
+ 8894
+ 8901
+ NN
+ DATE
+ THIS P100Y
+
+
+
+ ,
+ ,
+ 8901
+ 8902
+ ,
+ O
+
+
+ ade
+ ade
+ 8903
+ 8906
+ SYM
+ O
+
+
+ -
+ -
+ 8906
+ 8907
+ :
+ O
+
+
+ quate
+ quate
+ 8909
+ 8914
+ NN
+ O
+
+
+ literacy
+ literacy
+ 8915
+ 8923
+ NN
+ O
+
+
+ will
+ will
+ 8924
+ 8928
+ MD
+ O
+
+
+ be
+ be
+ 8929
+ 8931
+ VB
+ O
+
+
+ an
+ a
+ 8932
+ 8934
+ DT
+ O
+
+
+ essential
+ essential
+ 8935
+ 8944
+ JJ
+ O
+
+
+ pre
+ pre
+ 8945
+ 8948
+ JJ
+ O
+
+
+ -
+ -
+ 8948
+ 8949
+ :
+ O
+
+
+ condition
+ condition
+ 8951
+ 8960
+ NN
+ O
+
+
+ to
+ to
+ 8961
+ 8963
+ TO
+ O
+
+
+ living
+ live
+ 8964
+ 8970
+ VBG
+ O
+
+
+ in
+ in
+ 8971
+ 8973
+ IN
+ O
+
+
+ our
+ we
+ 8974
+ 8977
+ PRP$
+ O
+
+
+ society
+ society
+ 8978
+ 8985
+ NN
+ O
+
+
+ .
+ .
+ 8985
+ 8986
+ .
+ O
+
+
+ (ROOT (S (PP (IN By) (NP (NP (DT the) (NN end)) (PP (IN of) (NP (DT the) (NN century))) (, ,) (X (SYM ade)))) (: -) (NP (NN quate) (NN literacy)) (VP (MD will) (VP (VB be) (NP (NP (DT an) (ADJP (JJ essential) (JJ pre))) (: -) (NP (NP (NN condition)) (PP (TO to) (S (VP (VBG living) (PP (IN in) (NP (PRP$ our) (NN society)))))))))) (. .)))
+
+
+ ROOT
+ pre
+
+
+ pre
+ By
+
+
+ end
+ the
+
+
+ By
+ end
+
+
+ end
+ of
+
+
+ century
+ the
+
+
+ of
+ century
+
+
+ end
+ ade
+
+
+ literacy
+ quate
+
+
+ pre
+ literacy
+
+
+ pre
+ will
+
+
+ pre
+ be
+
+
+ pre
+ an
+
+
+ pre
+ essential
+
+
+ pre
+ condition
+
+
+ condition
+ to
+
+
+ to
+ living
+
+
+ living
+ in
+
+
+ society
+ our
+
+
+ in
+ society
+
+
+
+
+ ROOT
+ pre
+
+
+ end
+ the
+
+
+ pre
+ end
+
+
+ century
+ the
+
+
+ end
+ century
+
+
+ end
+ ade
+
+
+ literacy
+ quate
+
+
+ pre
+ literacy
+
+
+ pre
+ will
+
+
+ pre
+ be
+
+
+ pre
+ an
+
+
+ pre
+ essential
+
+
+ pre
+ condition
+
+
+ condition
+ living
+
+
+ society
+ our
+
+
+ living
+ society
+
+
+
+
+ ROOT
+ pre
+
+
+ end
+ the
+
+
+ pre
+ end
+
+
+ century
+ the
+
+
+ end
+ century
+
+
+ end
+ ade
+
+
+ literacy
+ quate
+
+
+ pre
+ literacy
+
+
+ pre
+ will
+
+
+ pre
+ be
+
+
+ pre
+ an
+
+
+ pre
+ essential
+
+
+ pre
+ condition
+
+
+ condition
+ living
+
+
+ society
+ our
+
+
+ living
+ society
+
+
+
+
+
+
+ Only
+ only
+ 8990
+ 8994
+ RB
+ O
+
+
+ 14
+ 14
+ 8995
+ 8997
+ CD
+ PERCENT
+ %14.0
+
+
+ percent
+ percent
+ 8998
+ 9005
+ NN
+ PERCENT
+ %14.0
+
+
+ of
+ of
+ 9006
+ 9008
+ IN
+ O
+
+
+ the
+ the
+ 9009
+ 9012
+ DT
+ O
+
+
+ jobs
+ job
+ 9013
+ 9017
+ NNS
+ O
+
+
+ available
+ available
+ 9018
+ 9027
+ JJ
+ O
+
+
+ then
+ then
+ 9029
+ 9033
+ RB
+ O
+
+
+ will
+ will
+ 9034
+ 9038
+ MD
+ O
+
+
+ be
+ be
+ 9039
+ 9041
+ VB
+ O
+
+
+ adequately
+ adequately
+ 9042
+ 9052
+ RB
+ O
+
+
+ performed
+ perform
+ 9053
+ 9062
+ VBN
+ O
+
+
+ by
+ by
+ 9063
+ 9065
+ IN
+ O
+
+
+ high
+ high
+ 9067
+ 9071
+ JJ
+ O
+
+
+ school
+ school
+ 9072
+ 9078
+ NN
+ O
+
+
+ graduates
+ graduate
+ 9079
+ 9088
+ NNS
+ O
+
+
+ .
+ .
+ 9088
+ 9089
+ .
+ O
+
+
+ (ROOT (S (NP (NP (RB Only) (CD 14) (NN percent)) (PP (IN of) (NP (NP (DT the) (NNS jobs)) (ADJP (JJ available))))) (ADVP (RB then)) (VP (MD will) (VP (VB be) (VP (ADVP (RB adequately)) (VBN performed) (PP (IN by) (NP (JJ high) (NN school) (NNS graduates)))))) (. .)))
+
+
+ ROOT
+ performed
+
+
+ percent
+ Only
+
+
+ percent
+ 14
+
+
+ performed
+ percent
+
+
+ percent
+ of
+
+
+ jobs
+ the
+
+
+ of
+ jobs
+
+
+ jobs
+ available
+
+
+ performed
+ then
+
+
+ performed
+ will
+
+
+ performed
+ be
+
+
+ performed
+ adequately
+
+
+ performed
+ by
+
+
+ graduates
+ high
+
+
+ graduates
+ school
+
+
+ by
+ graduates
+
+
+
+
+ ROOT
+ performed
+
+
+ percent
+ Only
+
+
+ percent
+ 14
+
+
+ performed
+ percent
+
+
+ jobs
+ the
+
+
+ percent
+ jobs
+
+
+ jobs
+ available
+
+
+ performed
+ then
+
+
+ performed
+ will
+
+
+ performed
+ be
+
+
+ performed
+ adequately
+
+
+ graduates
+ high
+
+
+ graduates
+ school
+
+
+ performed
+ graduates
+
+
+
+
+ ROOT
+ performed
+
+
+ percent
+ Only
+
+
+ percent
+ 14
+
+
+ performed
+ percent
+
+
+ jobs
+ the
+
+
+ percent
+ jobs
+
+
+ jobs
+ available
+
+
+ performed
+ then
+
+
+ performed
+ will
+
+
+ performed
+ be
+
+
+ performed
+ adequately
+
+
+ graduates
+ high
+
+
+ graduates
+ school
+
+
+ performed
+ graduates
+
+
+
+
+
+
+ Most
+ most
+ 9090
+ 9094
+ JJS
+ O
+
+
+ Jobs
+ Jobs
+ 9095
+ 9099
+ NNP
+ O
+
+
+ will
+ will
+ 9100
+ 9104
+ MD
+ O
+
+
+ need
+ need
+ 9106
+ 9110
+ VB
+ O
+
+
+ higher
+ higher
+ 9111
+ 9117
+ JJR
+ O
+
+
+ skills
+ skill
+ 9118
+ 9124
+ NNS
+ O
+
+
+ .
+ .
+ 9124
+ 9125
+ .
+ O
+
+
+ (ROOT (S (NP (NP (JJS Most)) (NP (NNP Jobs))) (VP (MD will) (VP (VB need) (NP (JJR higher) (NNS skills)))) (. .)))
+
+
+ ROOT
+ need
+
+
+ need
+ Most
+
+
+ Most
+ Jobs
+
+
+ need
+ will
+
+
+ skills
+ higher
+
+
+ need
+ skills
+
+
+
+
+ ROOT
+ need
+
+
+ need
+ Most
+
+
+ Most
+ Jobs
+
+
+ need
+ will
+
+
+ skills
+ higher
+
+
+ need
+ skills
+
+
+
+
+ ROOT
+ need
+
+
+ need
+ Most
+
+
+ Most
+ Jobs
+
+
+ need
+ will
+
+
+ skills
+ higher
+
+
+ need
+ skills
+
+
+
+
+
+
+ Brt
+ Brt
+ 9126
+ 9129
+ NNP
+ O
+
+
+ 80
+ 80
+ 9130
+ 9132
+ CD
+ PERCENT
+ %80.0
+
+
+ percent
+ percent
+ 9133
+ 9140
+ NN
+ PERCENT
+ %80.0
+
+
+ of
+ of
+ 9141
+ 9143
+ IN
+ O
+
+
+ new
+ new
+ 9145
+ 9148
+ JJ
+ O
+
+
+ job
+ job
+ 9149
+ 9152
+ NN
+ O
+
+
+ seekers
+ seeker
+ 9153
+ 9160
+ NNS
+ O
+
+
+ at
+ at
+ 9161
+ 9163
+ IN
+ O
+
+
+ that
+ that
+ 9164
+ 9168
+ DT
+ O
+
+
+ time
+ time
+ 9169
+ 9173
+ NN
+ O
+
+
+ will
+ will
+ 9174
+ 9178
+ MD
+ O
+
+
+ be
+ be
+ 9179
+ 9181
+ VB
+ O
+
+
+ minorities
+ minority
+ 9183
+ 9193
+ NNS
+ O
+
+
+ ,
+ ,
+ 9193
+ 9194
+ ,
+ O
+
+
+ immigrants
+ immigrant
+ 9195
+ 9205
+ NNS
+ O
+
+
+ ,
+ ,
+ 9205
+ 9206
+ ,
+ O
+
+
+ and
+ and
+ 9207
+ 9210
+ CC
+ O
+
+
+ women
+ woman
+ 9211
+ 9216
+ NNS
+ O
+
+
+ .
+ .
+ 9216
+ 9217
+ .
+ O
+
+
+ (ROOT (S (NP (NP (NNP Brt) (CD 80) (NN percent)) (PP (IN of) (NP (NP (JJ new) (NN job) (NNS seekers)) (PP (IN at) (NP (DT that) (NN time)))))) (VP (MD will) (VP (VB be) (NP (NP (NNS minorities)) (, ,) (NP (NNS immigrants)) (, ,) (CC and) (NP (NNS women))))) (. .)))
+
+
+ ROOT
+ minorities
+
+
+ percent
+ Brt
+
+
+ percent
+ 80
+
+
+ minorities
+ percent
+
+
+ percent
+ of
+
+
+ seekers
+ new
+
+
+ seekers
+ job
+
+
+ of
+ seekers
+
+
+ seekers
+ at
+
+
+ time
+ that
+
+
+ at
+ time
+
+
+ minorities
+ will
+
+
+ minorities
+ be
+
+
+ minorities
+ immigrants
+
+
+ minorities
+ and
+
+
+ minorities
+ women
+
+
+
+
+ ROOT
+ minorities
+
+
+ percent
+ Brt
+
+
+ percent
+ 80
+
+
+ minorities
+ percent
+
+
+ seekers
+ new
+
+
+ seekers
+ job
+
+
+ percent
+ seekers
+
+
+ time
+ that
+
+
+ seekers
+ time
+
+
+ minorities
+ will
+
+
+ minorities
+ be
+
+
+ minorities
+ immigrants
+
+
+ minorities
+ women
+
+
+
+
+ ROOT
+ minorities
+
+
+ percent
+ Brt
+
+
+ percent
+ 80
+
+
+ minorities
+ percent
+
+
+ seekers
+ new
+
+
+ seekers
+ job
+
+
+ percent
+ seekers
+
+
+ time
+ that
+
+
+ seekers
+ time
+
+
+ minorities
+ will
+
+
+ minorities
+ be
+
+
+ minorities
+ immigrants
+
+
+ minorities
+ women
+
+
+
+
+
+
+ If
+ if
+ 9218
+ 9220
+ IN
+ O
+
+
+ we
+ we
+ 9222
+ 9224
+ PRP
+ O
+
+
+ have
+ have
+ 9225
+ 9229
+ VBP
+ O
+
+
+ not
+ not
+ 9230
+ 9233
+ RB
+ O
+
+
+ substantially
+ substantially
+ 9234
+ 9247
+ RB
+ O
+
+
+ improved
+ improve
+ 9248
+ 9256
+ VBN
+ O
+
+
+ our
+ we
+ 9258
+ 9261
+ PRP$
+ O
+
+
+ literacy
+ literacy
+ 9262
+ 9270
+ NN
+ O
+
+
+ levels
+ level
+ 9271
+ 9277
+ NNS
+ O
+
+
+ by
+ by
+ 9278
+ 9280
+ IN
+ O
+
+
+ that
+ that
+ 9281
+ 9285
+ DT
+ O
+
+
+ time
+ time
+ 9286
+ 9290
+ NN
+ O
+
+
+ ,
+ ,
+ 9290
+ 9291
+ ,
+ O
+
+
+ we
+ we
+ 9292
+ 9294
+ PRP
+ O
+
+
+ risk
+ risk
+ 9296
+ 9300
+ VBP
+ O
+
+
+ seeing
+ see
+ 9301
+ 9307
+ VBG
+ O
+
+
+ those
+ those
+ 9308
+ 9313
+ DT
+ O
+
+
+ jobs
+ job
+ 9314
+ 9318
+ NNS
+ O
+
+
+ exported
+ export
+ 9319
+ 9327
+ VBN
+ O
+
+
+ over
+ over
+ 9328
+ 9332
+ IN
+ O
+
+
+ -
+ -
+ 9332
+ 9333
+ :
+ O
+
+
+ seas
+ sea
+ 9335
+ 9339
+ NNS
+ O
+
+
+ .
+ .
+ 9339
+ 9340
+ .
+ O
+
+
+ (ROOT (S (SBAR (IN If) (S (NP (PRP we)) (VP (VBP have) (RB not) (ADVP (RB substantially)) (VP (VBN improved) (NP (PRP$ our) (NN literacy) (NNS levels)) (PP (IN by) (NP (DT that) (NN time))))))) (, ,) (NP (PRP we)) (VP (VBP risk) (S (VP (VBG seeing) (NP (NP (DT those) (NNS jobs)) (VP (VBN exported) (PP (IN over))) (: -) (NP (NNS seas)))))) (. .)))
+
+
+ ROOT
+ risk
+
+
+ improved
+ If
+
+
+ improved
+ we
+
+
+ improved
+ have
+
+
+ improved
+ not
+
+
+ improved
+ substantially
+
+
+ risk
+ improved
+
+
+ levels
+ our
+
+
+ levels
+ literacy
+
+
+ improved
+ levels
+
+
+ improved
+ by
+
+
+ time
+ that
+
+
+ by
+ time
+
+
+ risk
+ we
+
+
+ risk
+ seeing
+
+
+ jobs
+ those
+
+
+ seeing
+ jobs
+
+
+ jobs
+ exported
+
+
+ exported
+ over
+
+
+ jobs
+ seas
+
+
+
+
+ ROOT
+ risk
+
+
+ improved
+ If
+
+
+ improved
+ we
+
+
+ improved
+ have
+
+
+ improved
+ not
+
+
+ improved
+ substantially
+
+
+ risk
+ improved
+
+
+ levels
+ our
+
+
+ levels
+ literacy
+
+
+ improved
+ levels
+
+
+ time
+ that
+
+
+ improved
+ time
+
+
+ risk
+ we
+
+
+ risk
+ seeing
+
+
+ jobs
+ those
+
+
+ seeing
+ jobs
+
+
+ jobs
+ exported
+
+
+ exported
+ over
+
+
+ jobs
+ seas
+
+
+
+
+ ROOT
+ risk
+
+
+ improved
+ If
+
+
+ improved
+ we
+
+
+ improved
+ have
+
+
+ improved
+ not
+
+
+ improved
+ substantially
+
+
+ risk
+ improved
+
+
+ levels
+ our
+
+
+ levels
+ literacy
+
+
+ improved
+ levels
+
+
+ time
+ that
+
+
+ improved
+ time
+
+
+ risk
+ we
+
+
+ risk
+ seeing
+
+
+ jobs
+ those
+
+
+ seeing
+ jobs
+
+
+ jobs
+ exported
+
+
+ exported
+ over
+
+
+ jobs
+ seas
+
+
+
+
+
+
+ For
+ for
+ 9344
+ 9347
+ IN
+ O
+
+
+ the
+ the
+ 9348
+ 9351
+ DT
+ DATE
+ PREV_IMMEDIATE P10Y
+
+
+
+ last
+ last
+ 9352
+ 9356
+ JJ
+ DATE
+ PREV_IMMEDIATE P10Y
+
+
+
+ decade
+ decade
+ 9357
+ 9363
+ NN
+ DATE
+ PREV_IMMEDIATE P10Y
+
+
+
+ ,
+ ,
+ 9363
+ 9364
+ ,
+ O
+
+
+ we
+ we
+ 9365
+ 9367
+ PRP
+ O
+
+
+ have
+ have
+ 9368
+ 9372
+ VBP
+ O
+
+
+ read
+ read
+ 9373
+ 9377
+ VBN
+ O
+
+
+ re
+ re
+ 9378
+ 9380
+ SYM
+ O
+
+
+ -
+ -
+ 9380
+ 9381
+ :
+ O
+
+
+ ports
+ port
+ 9383
+ 9388
+ NNS
+ O
+
+
+ and
+ and
+ 9389
+ 9392
+ CC
+ O
+
+
+ analyses
+ analysis
+ 9393
+ 9401
+ NNS
+ O
+
+
+ of
+ of
+ 9402
+ 9404
+ IN
+ O
+
+
+ the
+ the
+ 9405
+ 9408
+ DT
+ O
+
+
+ shortcom
+ shortcom
+ 9409
+ 9417
+ NN
+ O
+
+
+ -
+ -
+ 9417
+ 9418
+ :
+ O
+
+
+ ings
+ ing
+ 9420
+ 9424
+ NNS
+ O
+
+
+ in
+ in
+ 9425
+ 9427
+ IN
+ O
+
+
+ basic
+ basic
+ 9428
+ 9433
+ JJ
+ O
+
+
+ educational
+ educational
+ 9434
+ 9445
+ JJ
+ O
+
+
+ achievement
+ achievement
+ 9446
+ 9457
+ NN
+ O
+
+
+ in
+ in
+ 9459
+ 9461
+ IN
+ O
+
+
+ our
+ we
+ 9462
+ 9465
+ PRP$
+ O
+
+
+ country
+ country
+ 9466
+ 9473
+ NN
+ O
+
+
+ .
+ .
+ 9473
+ 9474
+ .
+ O
+
+
+ (ROOT (S (PP (IN For) (NP (DT the) (JJ last) (NN decade))) (, ,) (NP (PRP we)) (VP (VBP have) (VP (VBN read) (FRAG (PP (X (SYM re)) (: -) (PP (NP (NNS ports) (CC and) (NNS analyses)) (IN of) (NP (NP (DT the) (NN shortcom)) (: -) (NP (NP (NNS ings)) (PP (IN in) (NP (NP (JJ basic) (JJ educational) (NN achievement)) (PP (IN in) (NP (PRP$ our) (NN country)))))))) (. .)))))))
+
+
+ ROOT
+ read
+
+
+ read
+ For
+
+
+ decade
+ the
+
+
+ decade
+ last
+
+
+ For
+ decade
+
+
+ read
+ we
+
+
+ read
+ have
+
+
+ of
+ re
+
+
+ of
+ ports
+
+
+ ports
+ and
+
+
+ ports
+ analyses
+
+
+ read
+ of
+
+
+ shortcom
+ the
+
+
+ of
+ shortcom
+
+
+ shortcom
+ ings
+
+
+ ings
+ in
+
+
+ achievement
+ basic
+
+
+ achievement
+ educational
+
+
+ in
+ achievement
+
+
+ achievement
+ in
+
+
+ country
+ our
+
+
+ in
+ country
+
+
+
+
+ ROOT
+ read
+
+
+ decade
+ the
+
+
+ decade
+ last
+
+
+ read
+ decade
+
+
+ read
+ we
+
+
+ read
+ have
+
+
+ of
+ re
+
+
+ of
+ ports
+
+
+ ports
+ analyses
+
+
+ read
+ of
+
+
+ shortcom
+ the
+
+
+ of
+ shortcom
+
+
+ shortcom
+ ings
+
+
+ achievement
+ basic
+
+
+ achievement
+ educational
+
+
+ ings
+ achievement
+
+
+ country
+ our
+
+
+ achievement
+ country
+
+
+
+
+ ROOT
+ read
+
+
+ decade
+ the
+
+
+ decade
+ last
+
+
+ read
+ decade
+
+
+ read
+ we
+
+
+ read
+ have
+
+
+ of
+ re
+
+
+ of
+ ports
+
+
+ ports
+ analyses
+
+
+ of
+ analyses
+
+
+ read
+ of
+
+
+ shortcom
+ the
+
+
+ of
+ shortcom
+
+
+ shortcom
+ ings
+
+
+ achievement
+ basic
+
+
+ achievement
+ educational
+
+
+ ings
+ achievement
+
+
+ country
+ our
+
+
+ achievement
+ country
+
+
+
+
+
+
+ It
+ it
+ 9475
+ 9477
+ PRP
+ O
+
+
+ is
+ be
+ 9478
+ 9480
+ VBZ
+ O
+
+
+ time
+ time
+ 9481
+ 9485
+ NN
+ O
+
+
+ to
+ to
+ 9486
+ 9488
+ TO
+ O
+
+
+ act
+ act
+ 9489
+ 9492
+ VB
+ O
+
+
+ on
+ on
+ 9493
+ 9495
+ IN
+ O
+
+
+ what
+ what
+ 9497
+ 9501
+ WP
+ O
+
+
+ we
+ we
+ 9502
+ 9504
+ PRP
+ O
+
+
+ know
+ know
+ 9505
+ 9509
+ VBP
+ O
+
+
+ ,
+ ,
+ 9509
+ 9510
+ ,
+ O
+
+
+ both
+ both
+ 9511
+ 9515
+ CC
+ O
+
+
+ as
+ as
+ 9516
+ 9518
+ IN
+ O
+
+
+ to
+ to
+ 9519
+ 9521
+ TO
+ O
+
+
+ shortcom
+ shortcom
+ 9522
+ 9530
+ VB
+ O
+
+
+ -
+ -
+ 9530
+ 9531
+ :
+ O
+
+
+ ings
+ ing
+ 9533
+ 9537
+ NNS
+ O
+
+
+ and
+ and
+ 9538
+ 9541
+ CC
+ O
+
+
+ the
+ the
+ 9542
+ 9545
+ DT
+ O
+
+
+ best
+ best
+ 9546
+ 9550
+ JJS
+ O
+
+
+ way
+ way
+ 9551
+ 9554
+ NN
+ O
+
+
+ to
+ to
+ 9555
+ 9557
+ TO
+ O
+
+
+ correct
+ correct
+ 9558
+ 9565
+ VB
+ O
+
+
+ them
+ they
+ 9566
+ 9570
+ PRP
+ O
+
+
+ .
+ .
+ 9570
+ 9571
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VBZ is) (NP (NN time) (S (VP (TO to) (VP (VB act) (SBAR (SBAR (WHPP (IN on) (WHNP (WP what))) (S (NP (PRP we)) (VP (VBP know)))) (, ,) (CC both) (SBAR (IN as) (S (VP (TO to) (VP (VB shortcom) (: -) (S (NP (NP (NNS ings)) (CC and) (NP (DT the) (JJS best) (NN way))) (VP (TO to) (VP (VB correct) (NP (PRP them))))))))))))))) (. .)))
+
+
+ ROOT
+ time
+
+
+ time
+ It
+
+
+ time
+ is
+
+
+ act
+ to
+
+
+ time
+ act
+
+
+ know
+ on
+
+
+ on
+ what
+
+
+ know
+ we
+
+
+ act
+ know
+
+
+ know
+ both
+
+
+ shortcom
+ as
+
+
+ shortcom
+ to
+
+
+ know
+ shortcom
+
+
+ correct
+ ings
+
+
+ ings
+ and
+
+
+ way
+ the
+
+
+ way
+ best
+
+
+ ings
+ way
+
+
+ correct
+ to
+
+
+ shortcom
+ correct
+
+
+ correct
+ them
+
+
+
+
+ ROOT
+ time
+
+
+ time
+ It
+
+
+ time
+ is
+
+
+ act
+ to
+
+
+ time
+ act
+
+
+ know
+ what
+
+
+ know
+ we
+
+
+ act
+ know
+
+
+ know
+ both
+
+
+ shortcom
+ as
+
+
+ shortcom
+ to
+
+
+ know
+ shortcom
+
+
+ correct
+ ings
+
+
+ way
+ the
+
+
+ way
+ best
+
+
+ ings
+ way
+
+
+ correct
+ to
+
+
+ shortcom
+ correct
+
+
+ correct
+ them
+
+
+
+
+ ROOT
+ time
+
+
+ time
+ It
+
+
+ time
+ is
+
+
+ act
+ to
+
+
+ time
+ act
+
+
+ know
+ what
+
+
+ know
+ we
+
+
+ act
+ know
+
+
+ know
+ both
+
+
+ shortcom
+ as
+
+
+ shortcom
+ to
+
+
+ know
+ shortcom
+
+
+ correct
+ ings
+
+
+ way
+ the
+
+
+ way
+ best
+
+
+ ings
+ way
+
+
+ correct
+ way
+
+
+ correct
+ to
+
+
+ shortcom
+ correct
+
+
+ correct
+ them
+
+
+
+
+
+
+ We
+ we
+ 9575
+ 9577
+ PRP
+ O
+
+
+ know
+ know
+ 9578
+ 9582
+ VBP
+ O
+
+
+ that
+ that
+ 9583
+ 9587
+ IN
+ O
+
+
+ a
+ a
+ 9588
+ 9589
+ DT
+ O
+
+
+ third
+ third
+ 9590
+ 9595
+ JJ
+ ORDINAL
+ 3.0
+
+
+ of
+ of
+ 9596
+ 9598
+ IN
+ O
+
+
+ our
+ we
+ 9599
+ 9602
+ PRP$
+ O
+
+
+ math
+ math
+ 9603
+ 9607
+ NN
+ O
+
+
+ and
+ and
+ 9609
+ 9612
+ CC
+ O
+
+
+ science
+ science
+ 9613
+ 9620
+ NN
+ O
+
+
+ teachers
+ teacher
+ 9621
+ 9629
+ NNS
+ O
+
+
+ today
+ today
+ 9630
+ 9635
+ NN
+ DATE
+ THIS P1D
+
+
+
+ are
+ be
+ 9636
+ 9639
+ VBP
+ O
+
+
+ un
+ un
+ 9640
+ 9642
+ SYM
+ O
+
+
+ -
+ -
+ 9642
+ 9643
+ :
+ O
+
+
+ qualified
+ qualify
+ 9645
+ 9654
+ VBN
+ O
+
+
+ to
+ to
+ 9655
+ 9657
+ TO
+ O
+
+
+ teach
+ teach
+ 9658
+ 9663
+ VB
+ O
+
+
+ in
+ in
+ 9664
+ 9666
+ IN
+ O
+
+
+ those
+ those
+ 9667
+ 9672
+ DT
+ O
+
+
+ subjects
+ subject
+ 9673
+ 9681
+ NNS
+ O
+
+
+ ;
+ ;
+ 9681
+ 9682
+ :
+ O
+
+
+ we
+ we
+ 9683
+ 9685
+ PRP
+ O
+
+
+ know
+ know
+ 9687
+ 9691
+ VBP
+ O
+
+
+ we
+ we
+ 9692
+ 9694
+ PRP
+ O
+
+
+ face
+ face
+ 9695
+ 9699
+ VBP
+ O
+
+
+ a
+ a
+ 9700
+ 9701
+ DT
+ O
+
+
+ shortfall
+ shortfall
+ 9702
+ 9711
+ NN
+ O
+
+
+ of
+ of
+ 9712
+ 9714
+ IN
+ O
+
+
+ teachers
+ teacher
+ 9715
+ 9723
+ NNS
+ O
+
+
+ in
+ in
+ 9724
+ 9726
+ IN
+ O
+
+
+ the
+ the
+ 9728
+ 9731
+ DT
+ DATE
+ NEXT_IMMEDIATE P10Y
+
+
+
+ next
+ next
+ 9732
+ 9736
+ JJ
+ DATE
+ NEXT_IMMEDIATE P10Y
+
+
+
+ decade
+ decade
+ 9737
+ 9743
+ NN
+ DATE
+ NEXT_IMMEDIATE P10Y
+
+
+
+ that
+ that
+ 9744
+ 9748
+ WDT
+ O
+
+
+ could
+ could
+ 9749
+ 9754
+ MD
+ O
+
+
+ reach
+ reach
+ 9755
+ 9760
+ VB
+ O
+
+
+ 2
+ 2
+ 9761
+ 9762
+ CD
+ MONEY
+ $2000000.0
+
+
+ million
+ million
+ 9764
+ 9771
+ CD
+ MONEY
+ $2000000.0
+
+
+ ,
+ ,
+ 9771
+ 9772
+ ,
+ O
+
+
+ we
+ we
+ 9773
+ 9775
+ PRP
+ O
+
+
+ know
+ know
+ 9776
+ 9780
+ VBP
+ O
+
+
+ American
+ american
+ 9781
+ 9789
+ JJ
+ LOCATION
+
+
+ children
+ child
+ 9790
+ 9798
+ NNS
+ O
+
+
+ score
+ score
+ 9800
+ 9805
+ VBP
+ NUMBER
+ 20.0
+
+
+ consistently
+ consistently
+ 9806
+ 9818
+ RB
+ O
+
+
+ lower
+ lower
+ 9819
+ 9824
+ JJR
+ O
+
+
+ on
+ on
+ 9825
+ 9827
+ IN
+ O
+
+
+ math
+ math
+ 9828
+ 9832
+ NN
+ O
+
+
+ and
+ and
+ 9833
+ 9836
+ CC
+ O
+
+
+ science
+ science
+ 9838
+ 9845
+ NN
+ O
+
+
+ tests
+ test
+ 9846
+ 9851
+ NNS
+ O
+
+
+ than
+ than
+ 9852
+ 9856
+ IN
+ O
+
+
+ children
+ child
+ 9857
+ 9865
+ NNS
+ O
+
+
+ from
+ from
+ 9866
+ 9870
+ IN
+ O
+
+
+ Asian
+ asian
+ 9871
+ 9876
+ JJ
+ LOCATION
+
+
+ and
+ and
+ 9878
+ 9881
+ CC
+ O
+
+
+ European
+ european
+ 9882
+ 9890
+ JJ
+ MISC
+
+
+ countries
+ country
+ 9891
+ 9900
+ NNS
+ O
+
+
+ .
+ .
+ 9900
+ 9901
+ .
+ O
+
+
+ (ROOT (S (S (S (NP (PRP We)) (VP (VBP know) (SBAR (IN that) (S (NP (NP (DT a) (JJ third)) (PP (IN of) (NP (NP (PRP$ our) (NN math)) (CC and) (NP (NN science) (NNS teachers))))) (NP-TMP (NN today)) (VP (VBP are) (S (VP (X (SYM un)) (: -) (VP (VBN qualified) (S (VP (TO to) (VP (VB teach) (PP (IN in) (NP (DT those) (NNS subjects)))))))))))))) (: ;) (S (NP (PRP we)) (VP (VBP know) (SBAR (S (NP (PRP we)) (VP (VBP face) (NP (NP (DT a) (NN shortfall)) (PP (IN of) (NP (NP (NNS teachers)) (PP (IN in) (NP (NP (DT the) (JJ next) (NN decade)) (SBAR (WHNP (WDT that)) (S (VP (MD could) (VP (VB reach) (NP (QP (CD 2) (CD million)))))))))))))))))) (, ,) (NP (PRP we)) (VP (VBP know) (SBAR (S (NP (JJ American) (NNS children)) (VP (VBP score) (ADJP (ADJP (RB consistently) (JJR lower)) (PP (IN on) (NP (NP (NN math) (CC and) (NN science)) (NNS tests)))) (PP (IN than) (NP (NP (NNS children)) (PP (IN from) (NP (ADJP (JJ Asian) (CC and) (JJ European)) (NNS countries))))))))) (. .)))
+
+
+ ROOT
+ know
+
+
+ know
+ We
+
+
+ know
+ know
+
+
+ are
+ that
+
+
+ third
+ a
+
+
+ are
+ third
+
+
+ third
+ of
+
+
+ math
+ our
+
+
+ of
+ math
+
+
+ math
+ and
+
+
+ teachers
+ science
+
+
+ math
+ teachers
+
+
+ are
+ today
+
+
+ know
+ are
+
+
+ qualified
+ un
+
+
+ are
+ qualified
+
+
+ teach
+ to
+
+
+ qualified
+ teach
+
+
+ teach
+ in
+
+
+ subjects
+ those
+
+
+ in
+ subjects
+
+
+ know
+ we
+
+
+ know
+ know
+
+
+ face
+ we
+
+
+ know
+ face
+
+
+ shortfall
+ a
+
+
+ face
+ shortfall
+
+
+ shortfall
+ of
+
+
+ of
+ teachers
+
+
+ teachers
+ in
+
+
+ decade
+ the
+
+
+ decade
+ next
+
+
+ in
+ decade
+
+
+ reach
+ that
+
+
+ reach
+ could
+
+
+ decade
+ reach
+
+
+ million
+ 2
+
+
+ reach
+ million
+
+
+ know
+ we
+
+
+ children
+ American
+
+
+ score
+ children
+
+
+ know
+ score
+
+
+ lower
+ consistently
+
+
+ score
+ lower
+
+
+ lower
+ on
+
+
+ tests
+ math
+
+
+ math
+ and
+
+
+ math
+ science
+
+
+ on
+ tests
+
+
+ score
+ than
+
+
+ than
+ children
+
+
+ children
+ from
+
+
+ countries
+ Asian
+
+
+ Asian
+ and
+
+
+ Asian
+ European
+
+
+ from
+ countries
+
+
+
+
+ ROOT
+ know
+
+
+ know
+ We
+
+
+ know
+ know
+
+
+ are
+ that
+
+
+ third
+ a
+
+
+ are
+ third
+
+
+ math
+ our
+
+
+ third
+ math
+
+
+ teachers
+ science
+
+
+ math
+ teachers
+
+
+ are
+ today
+
+
+ know
+ are
+
+
+ qualified
+ un
+
+
+ are
+ qualified
+
+
+ teach
+ to
+
+
+ qualified
+ teach
+
+
+ subjects
+ those
+
+
+ teach
+ subjects
+
+
+ know
+ we
+
+
+ know
+ know
+
+
+ face
+ we
+
+
+ know
+ face
+
+
+ shortfall
+ a
+
+
+ face
+ shortfall
+
+
+ shortfall
+ teachers
+
+
+ decade
+ the
+
+
+ decade
+ next
+
+
+ teachers
+ decade
+
+
+ reach
+ that
+
+
+ reach
+ could
+
+
+ decade
+ reach
+
+
+ million
+ 2
+
+
+ reach
+ million
+
+
+ know
+ we
+
+
+ children
+ American
+
+
+ score
+ children
+
+
+ know
+ score
+
+
+ lower
+ consistently
+
+
+ score
+ lower
+
+
+ tests
+ math
+
+
+ math
+ science
+
+
+ lower
+ tests
+
+
+ score
+ children
+
+
+ countries
+ Asian
+
+
+ Asian
+ European
+
+
+ children
+ countries
+
+
+
+
+ ROOT
+ know
+
+
+ know
+ We
+
+
+ know
+ know
+
+
+ are
+ that
+
+
+ third
+ a
+
+
+ are
+ third
+
+
+ math
+ our
+
+
+ third
+ math
+
+
+ teachers
+ science
+
+
+ third
+ teachers
+
+
+ math
+ teachers
+
+
+ are
+ today
+
+
+ know
+ are
+
+
+ qualified
+ un
+
+
+ are
+ qualified
+
+
+ teach
+ to
+
+
+ qualified
+ teach
+
+
+ subjects
+ those
+
+
+ teach
+ subjects
+
+
+ know
+ we
+
+
+ know
+ know
+
+
+ face
+ we
+
+
+ know
+ face
+
+
+ shortfall
+ a
+
+
+ face
+ shortfall
+
+
+ shortfall
+ teachers
+
+
+ decade
+ the
+
+
+ decade
+ next
+
+
+ teachers
+ decade
+
+
+ reach
+ that
+
+
+ reach
+ could
+
+
+ decade
+ reach
+
+
+ million
+ 2
+
+
+ reach
+ million
+
+
+ know
+ we
+
+
+ children
+ American
+
+
+ score
+ children
+
+
+ know
+ score
+
+
+ lower
+ consistently
+
+
+ score
+ lower
+
+
+ tests
+ math
+
+
+ math
+ science
+
+
+ tests
+ science
+
+
+ lower
+ tests
+
+
+ score
+ children
+
+
+ countries
+ Asian
+
+
+ Asian
+ European
+
+
+ countries
+ European
+
+
+ children
+ countries
+
+
+
+
+
+
+ We
+ we
+ 9902
+ 9904
+ PRP
+ O
+
+
+ know
+ know
+ 9905
+ 9909
+ VBP
+ O
+
+
+ reading
+ reading
+ 9911
+ 9918
+ NN
+ O
+
+
+ and
+ and
+ 9919
+ 9922
+ CC
+ O
+
+
+ writing
+ write
+ 9923
+ 9930
+ VBG
+ O
+
+
+ skills
+ skill
+ 9931
+ 9937
+ NNS
+ O
+
+
+ need
+ need
+ 9938
+ 9942
+ VBP
+ O
+
+
+ sub
+ sub
+ 9943
+ 9946
+ SYM
+ O
+
+
+ -
+ -
+ 9946
+ 9947
+ :
+ O
+
+
+ stantial
+ stantial
+ 9949
+ 9957
+ JJ
+ O
+
+
+ improvement
+ improvement
+ 9958
+ 9969
+ NN
+ O
+
+
+ .
+ .
+ 9969
+ 9970
+ .
+ O
+
+
+ (ROOT (S (NP (PRP We)) (VP (VBP know) (SBAR (S (NP (NP (NN reading)) (CC and) (NP (VBG writing) (NNS skills))) (VP (VBP need) (VP (FRAG (PP (X (SYM sub)) (: -) (PP (ADVP (JJ stantial)) (ADJP (NN improvement))) (. .))))))))))
+
+
+ ROOT
+ know
+
+
+ know
+ We
+
+
+ need
+ reading
+
+
+ reading
+ and
+
+
+ skills
+ writing
+
+
+ reading
+ skills
+
+
+ know
+ need
+
+
+ stantial
+ sub
+
+
+ need
+ stantial
+
+
+ stantial
+ improvement
+
+
+
+
+ ROOT
+ know
+
+
+ know
+ We
+
+
+ need
+ reading
+
+
+ skills
+ writing
+
+
+ reading
+ skills
+
+
+ know
+ need
+
+
+ stantial
+ sub
+
+
+ need
+ stantial
+
+
+ stantial
+ improvement
+
+
+
+
+ ROOT
+ know
+
+
+ know
+ We
+
+
+ need
+ reading
+
+
+ skills
+ writing
+
+
+ reading
+ skills
+
+
+ need
+ skills
+
+
+ know
+ need
+
+
+ stantial
+ sub
+
+
+ need
+ stantial
+
+
+ stantial
+ improvement
+
+
+
+
+
+
+ We
+ we
+ 9974
+ 9976
+ PRP
+ O
+
+
+ also
+ also
+ 9977
+ 9981
+ RB
+ O
+
+
+ know
+ know
+ 9982
+ 9986
+ VBP
+ O
+
+
+ that
+ that
+ 9987
+ 9991
+ IN
+ O
+
+
+ early
+ early
+ 9992
+ 9997
+ JJ
+ O
+
+
+ interven
+ interven
+ 9998
+ 10006
+ NN
+ O
+
+
+ -
+ -
+ 10006
+ 10007
+ :
+ O
+
+
+ tion
+ tion
+ 10009
+ 10013
+ NN
+ O
+
+
+ and
+ and
+ 10014
+ 10017
+ CC
+ O
+
+
+ focused
+ focus
+ 10018
+ 10025
+ VBD
+ O
+
+
+ resources
+ resource
+ 10026
+ 10035
+ NNS
+ O
+
+
+ help
+ help
+ 10036
+ 10040
+ VB
+ O
+
+
+ .
+ .
+ 10040
+ 10041
+ .
+ O
+
+
+ (ROOT (S (NP (PRP We)) (ADVP (RB also)) (VP (VP (VBP know) (PP (IN that) (NP (JJ early) (NN interven) (: -) (NN tion)))) (CC and) (VP (VBD focused) (S (NP (NNS resources)) (VP (VB help))))) (. .)))
+
+
+ ROOT
+ know
+
+
+ know
+ We
+
+
+ know
+ also
+
+
+ know
+ that
+
+
+ tion
+ early
+
+
+ tion
+ interven
+
+
+ that
+ tion
+
+
+ know
+ and
+
+
+ know
+ focused
+
+
+ help
+ resources
+
+
+ focused
+ help
+
+
+
+
+ ROOT
+ know
+
+
+ know
+ We
+
+
+ know
+ also
+
+
+ tion
+ early
+
+
+ tion
+ interven
+
+
+ know
+ tion
+
+
+ know
+ focused
+
+
+ help
+ resources
+
+
+ focused
+ help
+
+
+
+
+ ROOT
+ know
+
+
+ know
+ We
+
+
+ focused
+ We
+
+
+ know
+ also
+
+
+ tion
+ early
+
+
+ tion
+ interven
+
+
+ know
+ tion
+
+
+ know
+ focused
+
+
+ help
+ resources
+
+
+ focused
+ help
+
+
+
+
+
+
+ We
+ we
+ 10042
+ 10044
+ PRP
+ O
+
+
+ know
+ know
+ 10046
+ 10050
+ VBP
+ O
+
+
+ that
+ that
+ 10051
+ 10055
+ IN
+ O
+
+
+ extra
+ extra
+ 10056
+ 10061
+ JJ
+ O
+
+
+ help
+ help
+ 10062
+ 10066
+ NN
+ O
+
+
+ to
+ to
+ 10067
+ 10069
+ TO
+ O
+
+
+ the
+ the
+ 10070
+ 10073
+ DT
+ O
+
+
+ disadvan
+ disadvan
+ 10074
+ 10082
+ NN
+ O
+
+
+ -
+ -
+ 10082
+ 10083
+ :
+ O
+
+
+ taged
+ tage
+ 10085
+ 10090
+ VBN
+ O
+
+
+ in
+ in
+ 10091
+ 10093
+ IN
+ O
+
+
+ elementary
+ elementary
+ 10094
+ 10104
+ JJ
+ O
+
+
+ schools
+ school
+ 10105
+ 10112
+ NNS
+ O
+
+
+ raises
+ raise
+ 10113
+ 10119
+ VBZ
+ O
+
+
+ edu
+ edu
+ 10120
+ 10123
+ SYM
+ O
+
+
+ -
+ -
+ 10123
+ 10124
+ :
+ O
+
+
+ cational
+ cational
+ 10126
+ 10134
+ JJ
+ O
+
+
+ achievement
+ achievement
+ 10135
+ 10146
+ NN
+ O
+
+
+ levels
+ level
+ 10147
+ 10153
+ NNS
+ O
+
+
+ in
+ in
+ 10154
+ 10156
+ IN
+ O
+
+
+ high
+ high
+ 10157
+ 10161
+ JJ
+ O
+
+
+ January
+ January
+ 10165
+ 10172
+ NNP
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ 23
+ 23
+ 10173
+ 10175
+ CD
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ ,
+ ,
+ 10175
+ 10176
+ ,
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ 1990
+ 1990
+ 10177
+ 10181
+ CD
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ January
+ January
+ 10189
+ 10196
+ NNP
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ 23
+ 23
+ 10197
+ 10199
+ CD
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ ,
+ ,
+ 10199
+ 10200
+ ,
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ 1990
+ 1990
+ 10201
+ 10205
+ CD
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ CO
+ CO
+ 10224
+ 10226
+ NNP
+ O
+
+
+ schools
+ school
+ 10228
+ 10235
+ NNS
+ O
+
+
+ ;
+ ;
+ 10235
+ 10236
+ :
+ O
+
+
+ we
+ we
+ 10237
+ 10239
+ PRP
+ O
+
+
+ know
+ know
+ 10240
+ 10244
+ VBP
+ O
+
+
+ Head
+ Head
+ 10249
+ 10253
+ NNP
+ O
+
+
+ Start
+ Start
+ 10254
+ 10259
+ NNP
+ O
+
+
+ and
+ and
+ 10260
+ 10263
+ CC
+ O
+
+
+ other
+ other
+ 10265
+ 10270
+ JJ
+ O
+
+
+ enrichment
+ enrichment
+ 10273
+ 10283
+ NN
+ O
+
+
+ programs
+ program
+ 10284
+ 10292
+ NNS
+ O
+
+
+ bring
+ bring
+ 10298
+ 10303
+ VBP
+ O
+
+
+ gains
+ gain
+ 10305
+ 10310
+ NNS
+ O
+
+
+ that
+ that
+ 10311
+ 10315
+ WDT
+ O
+
+
+ continue
+ continue
+ 10316
+ 10324
+ VBP
+ O
+
+
+ through
+ through
+ 10325
+ 10332
+ IN
+ O
+
+
+ a
+ a
+ 10333
+ 10334
+ DT
+ O
+
+
+ child
+ child
+ 10335
+ 10340
+ NN
+ O
+
+
+ 's
+ 's
+ 10340
+ 10342
+ POS
+ O
+
+
+ school
+ school
+ 10344
+ 10350
+ NN
+ O
+
+
+ life
+ life
+ 10351
+ 10355
+ NN
+ O
+
+
+ .
+ .
+ 10355
+ 10356
+ .
+ O
+
+
+ (ROOT (S (NP (PRP We)) (VP (VBP know) (SBAR (IN that) (S (NP (NP (JJ extra) (NN help)) (PP (TO to) (NP (NP (DT the) (NN disadvan)) (: -) (VP (VBN taged) (PP (IN in) (NP (JJ elementary) (NNS schools))))))) (VP (VBZ raises) (NP (SBAR (FRAG (X (SYM edu)) (: -) (NP (NP (JJ cational) (NN achievement) (NNS levels)) (PP (IN in) (NP (ADJP (JJ high) (NP-TMP (NNP January) (CD 23) (, ,) (CD 1990))) (NP (NP (NP (NNP January) (CD 23) (, ,) (CD 1990)) (NP (NNP CO) (NNS schools))) (: ;) (S (NP (PRP we)) (VP (VBP know) (SBAR (S (NP (NP (NNP Head) (NNP Start)) (CC and) (NP (JJ other) (NN enrichment) (NNS programs))) (VP (VBP bring) (NP (NP (NNS gains)) (SBAR (WHNP (WDT that)) (S (VP (VBP continue) (PP (IN through) (NP (NP (DT a) (NN child) (POS 's)) (NN school) (NN life)))))))))))))))) (. .))))))))))
+
+
+ ROOT
+ know
+
+
+ know
+ We
+
+
+ raises
+ that
+
+
+ help
+ extra
+
+
+ raises
+ help
+
+
+ help
+ to
+
+
+ disadvan
+ the
+
+
+ to
+ disadvan
+
+
+ disadvan
+ taged
+
+
+ taged
+ in
+
+
+ schools
+ elementary
+
+
+ in
+ schools
+
+
+ know
+ raises
+
+
+ levels
+ edu
+
+
+ levels
+ cational
+
+
+ levels
+ achievement
+
+
+ raises
+ levels
+
+
+ levels
+ in
+
+
+ January
+ high
+
+
+ high
+ January
+
+
+ January
+ 23
+
+
+ January
+ 1990
+
+
+ in
+ January
+
+
+ January
+ 23
+
+
+ January
+ 1990
+
+
+ schools
+ CO
+
+
+ January
+ schools
+
+
+ know
+ we
+
+
+ January
+ know
+
+
+ Start
+ Head
+
+
+ bring
+ Start
+
+
+ Start
+ and
+
+
+ programs
+ other
+
+
+ programs
+ enrichment
+
+
+ Start
+ programs
+
+
+ know
+ bring
+
+
+ bring
+ gains
+
+
+ continue
+ that
+
+
+ gains
+ continue
+
+
+ continue
+ through
+
+
+ child
+ a
+
+
+ life
+ child
+
+
+ child
+ 's
+
+
+ life
+ school
+
+
+ through
+ life
+
+
+
+
+ ROOT
+ know
+
+
+ know
+ We
+
+
+ raises
+ that
+
+
+ help
+ extra
+
+
+ raises
+ help
+
+
+ disadvan
+ the
+
+
+ help
+ disadvan
+
+
+ disadvan
+ taged
+
+
+ schools
+ elementary
+
+
+ taged
+ schools
+
+
+ know
+ raises
+
+
+ levels
+ edu
+
+
+ levels
+ cational
+
+
+ levels
+ achievement
+
+
+ raises
+ levels
+
+
+ January
+ high
+
+
+ high
+ January
+
+
+ January
+ 23
+
+
+ January
+ 1990
+
+
+ levels
+ January
+
+
+ January
+ 23
+
+
+ January
+ 1990
+
+
+ schools
+ CO
+
+
+ January
+ schools
+
+
+ know
+ we
+
+
+ January
+ know
+
+
+ Start
+ Head
+
+
+ bring
+ Start
+
+
+ programs
+ other
+
+
+ programs
+ enrichment
+
+
+ Start
+ programs
+
+
+ know
+ bring
+
+
+ bring
+ gains
+
+
+ continue
+ that
+
+
+ gains
+ continue
+
+
+ child
+ a
+
+
+ life
+ child
+
+
+ life
+ school
+
+
+ continue
+ life
+
+
+
+
+ ROOT
+ know
+
+
+ know
+ We
+
+
+ raises
+ that
+
+
+ help
+ extra
+
+
+ raises
+ help
+
+
+ disadvan
+ the
+
+
+ help
+ disadvan
+
+
+ disadvan
+ taged
+
+
+ schools
+ elementary
+
+
+ taged
+ schools
+
+
+ know
+ raises
+
+
+ levels
+ edu
+
+
+ levels
+ cational
+
+
+ levels
+ achievement
+
+
+ raises
+ levels
+
+
+ January
+ high
+
+
+ high
+ January
+
+
+ January
+ 23
+
+
+ January
+ 1990
+
+
+ levels
+ January
+
+
+ January
+ 23
+
+
+ January
+ 1990
+
+
+ schools
+ CO
+
+
+ January
+ schools
+
+
+ know
+ we
+
+
+ January
+ know
+
+
+ Start
+ Head
+
+
+ bring
+ Start
+
+
+ programs
+ other
+
+
+ programs
+ enrichment
+
+
+ Start
+ programs
+
+
+ bring
+ programs
+
+
+ know
+ bring
+
+
+ bring
+ gains
+
+
+ continue
+ that
+
+
+ gains
+ continue
+
+
+ child
+ a
+
+
+ life
+ child
+
+
+ life
+ school
+
+
+ continue
+ life
+
+
+
+
+
+
+ This
+ this
+ 10360
+ 10364
+ DT
+ DATE
+ THIS P1Y
+
+
+
+ year
+ year
+ 10365
+ 10369
+ NN
+ DATE
+ THIS P1Y
+
+
+
+ ,
+ ,
+ 10369
+ 10370
+ ,
+ O
+
+
+ it
+ it
+ 10371
+ 10373
+ PRP
+ O
+
+
+ is
+ be
+ 10374
+ 10376
+ VBZ
+ O
+
+
+ time
+ time
+ 10377
+ 10381
+ NN
+ O
+
+
+ to
+ to
+ 10382
+ 10384
+ TO
+ O
+
+
+ put
+ put
+ 10385
+ 10388
+ VB
+ O
+
+
+ what
+ what
+ 10389
+ 10393
+ WP
+ O
+
+
+ we
+ we
+ 10394
+ 10396
+ PRP
+ O
+
+
+ know
+ know
+ 10398
+ 10402
+ VBP
+ O
+
+
+ Is
+ be
+ 10403
+ 10405
+ VBZ
+ O
+
+
+ needed
+ need
+ 10406
+ 10412
+ VBN
+ O
+
+
+ together
+ together
+ 10413
+ 10421
+ RB
+ O
+
+
+ with
+ with
+ 10422
+ 10426
+ IN
+ O
+
+
+ what
+ what
+ 10427
+ 10431
+ WP
+ O
+
+
+ we
+ we
+ 10432
+ 10434
+ PRP
+ O
+
+
+ know
+ know
+ 10436
+ 10440
+ VBP
+ O
+
+
+ will
+ will
+ 10441
+ 10445
+ MD
+ O
+
+
+ make
+ make
+ 10446
+ 10450
+ VB
+ O
+
+
+ a
+ a
+ 10451
+ 10452
+ DT
+ O
+
+
+ difference
+ difference
+ 10453
+ 10463
+ NN
+ O
+
+
+ ,
+ ,
+ 10463
+ 10464
+ ,
+ O
+
+
+ and
+ and
+ 10465
+ 10468
+ CC
+ O
+
+
+ get
+ get
+ 10469
+ 10472
+ VB
+ O
+
+
+ our
+ we
+ 10474
+ 10477
+ PRP$
+ O
+
+
+ school
+ school
+ 10478
+ 10484
+ NN
+ O
+
+
+ system
+ system
+ 10485
+ 10491
+ NN
+ O
+
+
+ back
+ back
+ 10492
+ 10496
+ RB
+ O
+
+
+ on
+ on
+ 10497
+ 10499
+ IN
+ O
+
+
+ track
+ track
+ 10500
+ 10505
+ NN
+ O
+
+
+ .
+ .
+ 10505
+ 10506
+ .
+ O
+
+
+ (ROOT (S (NP-TMP (DT This) (NN year)) (, ,) (NP (PRP it)) (VP (VBZ is) (NP (NN time) (S (VP (TO to) (VP (VB put) (SBAR (WHNP (WP what)) (S (NP (PRP we)) (VP (VBP know) (SBAR (S (VP (VBZ Is) (VP (VBN needed) (ADVP (RB together)) (PP (IN with) (SBAR (WHNP (WP what)) (S (NP (PRP we)) (VP (VBP know) (SBAR (S (VP (MD will) (VP (VP (VB make) (NP (DT a) (NN difference))) (, ,) (CC and) (VP (VB get) (NP (PRP$ our) (NN school) (NN system)) (ADVP (RB back)) (PP (IN on) (NP (NN track)))))))))))))))))))))))) (. .)))
+
+
+ ROOT
+ time
+
+
+ year
+ This
+
+
+ time
+ year
+
+
+ time
+ it
+
+
+ time
+ is
+
+
+ put
+ to
+
+
+ time
+ put
+
+
+ know
+ what
+
+
+ know
+ we
+
+
+ put
+ know
+
+
+ needed
+ Is
+
+
+ know
+ needed
+
+
+ needed
+ together
+
+
+ needed
+ with
+
+
+ know
+ what
+
+
+ know
+ we
+
+
+ with
+ know
+
+
+ make
+ will
+
+
+ know
+ make
+
+
+ difference
+ a
+
+
+ make
+ difference
+
+
+ make
+ and
+
+
+ make
+ get
+
+
+ system
+ our
+
+
+ system
+ school
+
+
+ get
+ system
+
+
+ get
+ back
+
+
+ get
+ on
+
+
+ on
+ track
+
+
+
+
+ ROOT
+ time
+
+
+ year
+ This
+
+
+ time
+ year
+
+
+ time
+ it
+
+
+ time
+ is
+
+
+ put
+ to
+
+
+ time
+ put
+
+
+ know
+ what
+
+
+ know
+ we
+
+
+ put
+ know
+
+
+ needed
+ Is
+
+
+ know
+ needed
+
+
+ know
+ what
+
+
+ know
+ we
+
+
+ needed
+ know
+
+
+ make
+ will
+
+
+ know
+ make
+
+
+ difference
+ a
+
+
+ make
+ difference
+
+
+ make
+ get
+
+
+ system
+ our
+
+
+ system
+ school
+
+
+ get
+ system
+
+
+ get
+ back
+
+
+ get
+ track
+
+
+
+
+ ROOT
+ time
+
+
+ year
+ This
+
+
+ time
+ year
+
+
+ time
+ it
+
+
+ time
+ is
+
+
+ put
+ to
+
+
+ time
+ put
+
+
+ know
+ what
+
+
+ know
+ we
+
+
+ put
+ know
+
+
+ needed
+ Is
+
+
+ know
+ needed
+
+
+ know
+ what
+
+
+ know
+ we
+
+
+ needed
+ know
+
+
+ make
+ will
+
+
+ know
+ make
+
+
+ difference
+ a
+
+
+ make
+ difference
+
+
+ know
+ get
+
+
+ make
+ get
+
+
+ system
+ our
+
+
+ system
+ school
+
+
+ get
+ system
+
+
+ get
+ back
+
+
+ get
+ track
+
+
+
+
+
+
+ After
+ after
+ 10507
+ 10512
+ IN
+ O
+
+
+ a
+ a
+ 10514
+ 10515
+ DT
+ DURATION
+ P10Y
+
+
+ decade
+ decade
+ 10516
+ 10522
+ NN
+ DURATION
+ P10Y
+
+
+ of
+ of
+ 10523
+ 10525
+ IN
+ O
+
+
+ reports
+ report
+ 10526
+ 10533
+ NNS
+ O
+
+
+ and
+ and
+ 10534
+ 10537
+ CC
+ O
+
+
+ rhetoric
+ rhetoric
+ 10538
+ 10546
+ NN
+ O
+
+
+ ,
+ ,
+ 10546
+ 10547
+ ,
+ O
+
+
+ Americans
+ Americans
+ 10549
+ 10558
+ NNPS
+ MISC
+
+
+ expect
+ expect
+ 10559
+ 10565
+ VBP
+ O
+
+
+ action
+ action
+ 10566
+ 10572
+ NN
+ O
+
+
+ and
+ and
+ 10573
+ 10576
+ CC
+ O
+
+
+ I
+ I
+ 10577
+ 10578
+ PRP
+ O
+
+
+ think
+ think
+ 10579
+ 10584
+ VBP
+ O
+
+
+ we
+ we
+ 10586
+ 10588
+ PRP
+ O
+
+
+ should
+ should
+ 10589
+ 10595
+ MD
+ O
+
+
+ provide
+ provide
+ 10596
+ 10603
+ VB
+ O
+
+
+ It
+ it
+ 10604
+ 10606
+ PRP
+ O
+
+
+ .
+ .
+ 10606
+ 10607
+ .
+ O
+
+
+ (ROOT (S (PP (IN After) (NP (NP (DT a) (NN decade)) (PP (IN of) (NP (NNS reports) (CC and) (NN rhetoric))))) (, ,) (S (NP (NNPS Americans)) (VP (VBP expect) (NP (NN action)))) (CC and) (S (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP we)) (VP (MD should) (VP (VB provide) (NP (PRP It)))))))) (. .)))
+
+
+ ROOT
+ expect
+
+
+ expect
+ After
+
+
+ decade
+ a
+
+
+ After
+ decade
+
+
+ decade
+ of
+
+
+ of
+ reports
+
+
+ reports
+ and
+
+
+ reports
+ rhetoric
+
+
+ expect
+ Americans
+
+
+ expect
+ action
+
+
+ expect
+ and
+
+
+ think
+ I
+
+
+ expect
+ think
+
+
+ provide
+ we
+
+
+ provide
+ should
+
+
+ think
+ provide
+
+
+ provide
+ It
+
+
+
+
+ ROOT
+ expect
+
+
+ decade
+ a
+
+
+ expect
+ decade
+
+
+ decade
+ reports
+
+
+ reports
+ rhetoric
+
+
+ expect
+ Americans
+
+
+ expect
+ action
+
+
+ think
+ I
+
+
+ expect
+ think
+
+
+ provide
+ we
+
+
+ provide
+ should
+
+
+ think
+ provide
+
+
+ provide
+ It
+
+
+
+
+ ROOT
+ expect
+
+
+ decade
+ a
+
+
+ expect
+ decade
+
+
+ decade
+ reports
+
+
+ decade
+ rhetoric
+
+
+ reports
+ rhetoric
+
+
+ expect
+ Americans
+
+
+ expect
+ action
+
+
+ think
+ I
+
+
+ expect
+ think
+
+
+ provide
+ we
+
+
+ provide
+ should
+
+
+ think
+ provide
+
+
+ provide
+ It
+
+
+
+
+
+
+ Americans
+ american
+ 10611
+ 10620
+ NNS
+ MISC
+
+
+ also
+ also
+ 10621
+ 10625
+ RB
+ O
+
+
+ expect
+ expect
+ 10626
+ 10632
+ VBP
+ O
+
+
+ action
+ action
+ 10633
+ 10639
+ NN
+ O
+
+
+ on
+ on
+ 10640
+ 10642
+ IN
+ O
+
+
+ child
+ child
+ 10644
+ 10649
+ NN
+ O
+
+
+ care
+ care
+ 10650
+ 10654
+ NN
+ O
+
+
+ legislation
+ legislation
+ 10655
+ 10666
+ NN
+ O
+
+
+ .
+ .
+ 10666
+ 10667
+ .
+ O
+
+
+ (ROOT (S (NP (NNS Americans)) (ADVP (RB also)) (VP (VBP expect) (NP (NP (NN action)) (PP (IN on) (NP (NN child) (NN care) (NN legislation))))) (. .)))
+
+
+ ROOT
+ expect
+
+
+ expect
+ Americans
+
+
+ expect
+ also
+
+
+ expect
+ action
+
+
+ action
+ on
+
+
+ legislation
+ child
+
+
+ legislation
+ care
+
+
+ on
+ legislation
+
+
+
+
+ ROOT
+ expect
+
+
+ expect
+ Americans
+
+
+ expect
+ also
+
+
+ expect
+ action
+
+
+ legislation
+ child
+
+
+ legislation
+ care
+
+
+ action
+ legislation
+
+
+
+
+ ROOT
+ expect
+
+
+ expect
+ Americans
+
+
+ expect
+ also
+
+
+ expect
+ action
+
+
+ legislation
+ child
+
+
+ legislation
+ care
+
+
+ action
+ legislation
+
+
+
+
+
+
+ I
+ I
+ 10668
+ 10669
+ PRP
+ O
+
+
+ hope
+ hope
+ 10670
+ 10674
+ VBP
+ O
+
+
+ the
+ the
+ 10675
+ 10678
+ DT
+ O
+
+
+ dif
+ dif
+ 10679
+ 10682
+ NN
+ O
+
+
+ -
+ -
+ 10682
+ 10683
+ :
+ O
+
+
+ ferences
+ ference
+ 10685
+ 10693
+ NNS
+ O
+
+
+ there
+ there
+ 10694
+ 10699
+ RB
+ O
+
+
+ can
+ can
+ 10700
+ 10703
+ MD
+ O
+
+
+ be
+ be
+ 10704
+ 10706
+ VB
+ O
+
+
+ worked
+ work
+ 10707
+ 10713
+ VBN
+ O
+
+
+ out
+ out
+ 10714
+ 10717
+ RP
+ O
+
+
+ shortly
+ shortly
+ 10719
+ 10726
+ RB
+ O
+
+
+ so
+ so
+ 10727
+ 10729
+ IN
+ O
+
+
+ that
+ that
+ 10730
+ 10734
+ IN
+ O
+
+
+ a
+ a
+ 10735
+ 10736
+ DT
+ O
+
+
+ final
+ final
+ 10737
+ 10742
+ JJ
+ O
+
+
+ form
+ form
+ 10743
+ 10747
+ NN
+ O
+
+
+ of
+ of
+ 10748
+ 10750
+ IN
+ O
+
+
+ this
+ this
+ 10751
+ 10755
+ DT
+ O
+
+
+ bill
+ bill
+ 10756
+ 10760
+ NN
+ O
+
+
+ can
+ can
+ 10762
+ 10765
+ MD
+ O
+
+
+ be
+ be
+ 10766
+ 10768
+ VB
+ O
+
+
+ voted
+ vote
+ 10769
+ 10774
+ VBN
+ O
+
+
+ upon
+ upon
+ 10775
+ 10779
+ IN
+ O
+
+
+ and
+ and
+ 10780
+ 10783
+ CC
+ O
+
+
+ sent
+ send
+ 10784
+ 10788
+ VBN
+ O
+
+
+ to
+ to
+ 10789
+ 10791
+ TO
+ O
+
+
+ the
+ the
+ 10792
+ 10795
+ DT
+ O
+
+
+ President
+ President
+ 10797
+ 10806
+ NNP
+ O
+
+
+ .
+ .
+ 10806
+ 10807
+ .
+ O
+
+
+ (ROOT (S (S (NP (PRP I)) (VP (VBP hope) (NP (DT the) (NN dif)))) (: -) (S (NP (NNS ferences)) (ADVP (RB there)) (VP (MD can) (VP (VB be) (VP (VBN worked) (PRT (RP out)) (ADVP (RB shortly)) (SBAR (IN so) (IN that) (S (NP (NP (DT a) (JJ final) (NN form)) (PP (IN of) (NP (DT this) (NN bill)))) (VP (MD can) (VP (VB be) (VP (VP (VBN voted) (PP (IN upon))) (CC and) (VP (VBN sent) (PP (TO to) (NP (DT the) (NNP President))))))))))))) (. .)))
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ dif
+ the
+
+
+ hope
+ dif
+
+
+ worked
+ ferences
+
+
+ worked
+ there
+
+
+ worked
+ can
+
+
+ worked
+ be
+
+
+ hope
+ worked
+
+
+ worked
+ out
+
+
+ worked
+ shortly
+
+
+ voted
+ so
+
+
+ voted
+ that
+
+
+ form
+ a
+
+
+ form
+ final
+
+
+ voted
+ form
+
+
+ form
+ of
+
+
+ bill
+ this
+
+
+ of
+ bill
+
+
+ voted
+ can
+
+
+ voted
+ be
+
+
+ worked
+ voted
+
+
+ voted
+ upon
+
+
+ voted
+ and
+
+
+ voted
+ sent
+
+
+ sent
+ to
+
+
+ President
+ the
+
+
+ to
+ President
+
+
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ dif
+ the
+
+
+ hope
+ dif
+
+
+ worked
+ ferences
+
+
+ worked
+ there
+
+
+ worked
+ can
+
+
+ worked
+ be
+
+
+ hope
+ worked
+
+
+ worked
+ out
+
+
+ worked
+ shortly
+
+
+ voted
+ so
+
+
+ voted
+ that
+
+
+ form
+ a
+
+
+ form
+ final
+
+
+ voted
+ form
+
+
+ bill
+ this
+
+
+ form
+ bill
+
+
+ voted
+ can
+
+
+ voted
+ be
+
+
+ worked
+ voted
+
+
+ voted
+ upon
+
+
+ voted
+ sent
+
+
+ President
+ the
+
+
+ sent
+ President
+
+
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ dif
+ the
+
+
+ hope
+ dif
+
+
+ worked
+ ferences
+
+
+ worked
+ there
+
+
+ worked
+ can
+
+
+ worked
+ be
+
+
+ hope
+ worked
+
+
+ worked
+ out
+
+
+ worked
+ shortly
+
+
+ voted
+ so
+
+
+ voted
+ that
+
+
+ form
+ a
+
+
+ form
+ final
+
+
+ voted
+ form
+
+
+ sent
+ form
+
+
+ bill
+ this
+
+
+ form
+ bill
+
+
+ voted
+ can
+
+
+ voted
+ be
+
+
+ worked
+ voted
+
+
+ voted
+ upon
+
+
+ worked
+ sent
+
+
+ voted
+ sent
+
+
+ President
+ the
+
+
+ sent
+ President
+
+
+
+
+
+
+ Working
+ work
+ 10808
+ 10815
+ VBG
+ O
+
+
+ parents
+ parent
+ 10816
+ 10823
+ NNS
+ O
+
+
+ need
+ need
+ 10824
+ 10828
+ VBP
+ O
+
+
+ af
+ af
+ 10829
+ 10831
+ SYM
+ O
+
+
+ -
+ -
+ 10831
+ 10832
+ :
+ O
+
+
+ fordable
+ fordable
+ 10834
+ 10842
+ JJ
+ O
+
+
+ care
+ care
+ 10843
+ 10847
+ NN
+ O
+
+
+ for
+ for
+ 10848
+ 10851
+ IN
+ O
+
+
+ their
+ they
+ 10852
+ 10857
+ PRP$
+ O
+
+
+ children
+ child
+ 10858
+ 10866
+ NNS
+ O
+
+
+ but
+ but
+ 10867
+ 10870
+ CC
+ O
+
+
+ they
+ they
+ 10872
+ 10876
+ PRP
+ O
+
+
+ also
+ also
+ 10877
+ 10881
+ RB
+ O
+
+
+ want
+ want
+ 10882
+ 10886
+ VBP
+ O
+
+
+ quality
+ quality
+ 10887
+ 10894
+ NN
+ O
+
+
+ care
+ care
+ 10895
+ 10899
+ NN
+ O
+
+
+ .
+ .
+ 10899
+ 10900
+ .
+ O
+
+
+ (ROOT (S (VP (VBG Working) (SBAR (S (NP (NNS parents)) (VP (VBP need) (FRAG (X (SYM af)) (: -) (NP (NP (JJ fordable) (NN care)) (SBAR (IN for) (S (NP (NP (PRP$ their) (NNS children)) (PP (CC but) (NP (PRP they)))) (ADVP (RB also)) (VP (VBP want) (NP (NN quality) (NN care)))))) (. .))))))))
+
+
+ ROOT
+ Working
+
+
+ need
+ parents
+
+
+ Working
+ need
+
+
+ care
+ af
+
+
+ care
+ fordable
+
+
+ need
+ care
+
+
+ want
+ for
+
+
+ children
+ their
+
+
+ want
+ children
+
+
+ children
+ but
+
+
+ but
+ they
+
+
+ want
+ also
+
+
+ care
+ want
+
+
+ care
+ quality
+
+
+ want
+ care
+
+
+
+
+ ROOT
+ Working
+
+
+ need
+ parents
+
+
+ Working
+ need
+
+
+ care
+ af
+
+
+ care
+ fordable
+
+
+ need
+ care
+
+
+ want
+ for
+
+
+ children
+ their
+
+
+ want
+ children
+
+
+ children
+ but
+
+
+ but
+ they
+
+
+ want
+ also
+
+
+ care
+ want
+
+
+ care
+ quality
+
+
+ want
+ care
+
+
+
+
+ ROOT
+ Working
+
+
+ need
+ parents
+
+
+ Working
+ need
+
+
+ care
+ af
+
+
+ care
+ fordable
+
+
+ need
+ care
+
+
+ want
+ for
+
+
+ children
+ their
+
+
+ want
+ children
+
+
+ children
+ but
+
+
+ but
+ they
+
+
+ want
+ also
+
+
+ care
+ want
+
+
+ care
+ quality
+
+
+ want
+ care
+
+
+
+
+
+
+ The
+ the
+ 10901
+ 10904
+ DT
+ O
+
+
+ Con
+ con
+ 10905
+ 10908
+ NN
+ O
+
+
+ -
+ -
+ 10908
+ 10909
+ :
+ O
+
+
+ gress
+ gress
+ 10911
+ 10916
+ NN
+ O
+
+
+ should
+ should
+ 10917
+ 10923
+ MD
+ O
+
+
+ pass
+ pass
+ 10924
+ 10928
+ VB
+ O
+
+
+ a
+ a
+ 10929
+ 10930
+ DT
+ O
+
+
+ bill
+ bill
+ 10931
+ 10935
+ NN
+ O
+
+
+ to
+ to
+ 10936
+ 10938
+ TO
+ O
+
+
+ ensure
+ ensure
+ 10939
+ 10945
+ VB
+ O
+
+
+ both
+ both
+ 10946
+ 10950
+ DT
+ O
+
+
+ .
+ .
+ 10950
+ 10951
+ .
+ O
+
+
+ (ROOT (FRAG (NP (DT The) (NN Con)) (: -) (S (NP (NN gress)) (VP (MD should) (VP (VB pass) (NP (DT a) (NN bill) (S (VP (TO to) (VP (VB ensure) (NP (DT both))))))))) (. .)))
+
+
+ ROOT
+ Con
+
+
+ Con
+ The
+
+
+ pass
+ gress
+
+
+ pass
+ should
+
+
+ Con
+ pass
+
+
+ bill
+ a
+
+
+ pass
+ bill
+
+
+ ensure
+ to
+
+
+ bill
+ ensure
+
+
+ ensure
+ both
+
+
+
+
+ ROOT
+ Con
+
+
+ Con
+ The
+
+
+ pass
+ gress
+
+
+ pass
+ should
+
+
+ Con
+ pass
+
+
+ bill
+ a
+
+
+ pass
+ bill
+
+
+ ensure
+ to
+
+
+ bill
+ ensure
+
+
+ ensure
+ both
+
+
+
+
+ ROOT
+ Con
+
+
+ Con
+ The
+
+
+ pass
+ gress
+
+
+ pass
+ should
+
+
+ Con
+ pass
+
+
+ bill
+ a
+
+
+ pass
+ bill
+
+
+ ensure
+ to
+
+
+ bill
+ ensure
+
+
+ ensure
+ both
+
+
+
+
+
+
+ Those
+ those
+ 10955
+ 10960
+ DT
+ O
+
+
+ immediate
+ immediate
+ 10963
+ 10972
+ JJ
+ O
+
+
+ concerns-clean
+ concerns-clean
+ 10976
+ 10990
+ JJ
+ O
+
+
+ air
+ air
+ 10992
+ 10995
+ NN
+ O
+
+
+ ,
+ ,
+ 10995
+ 10996
+ ,
+ O
+
+
+ national
+ national
+ 10997
+ 11005
+ JJ
+ O
+
+
+ service
+ service
+ 11006
+ 11013
+ NN
+ O
+
+
+ ,
+ ,
+ 11013
+ 11014
+ ,
+ O
+
+
+ crime
+ crime
+ 11015
+ 11020
+ NN
+ O
+
+
+ legislation
+ legislation
+ 11021
+ 11032
+ NN
+ O
+
+
+ ,
+ ,
+ 11032
+ 11033
+ ,
+ O
+
+
+ and
+ and
+ 11035
+ 11038
+ CC
+ O
+
+
+ education
+ education
+ 11039
+ 11048
+ NN
+ O
+
+
+ reform
+ reform
+ 11049
+ 11055
+ NN
+ O
+
+
+ measures-are
+ measures-are
+ 11056
+ 11068
+ NN
+ O
+
+
+ a
+ a
+ 11069
+ 11070
+ DT
+ O
+
+
+ good
+ good
+ 11072
+ 11076
+ JJ
+ O
+
+
+ start
+ start
+ 11077
+ 11082
+ NN
+ O
+
+
+ for
+ for
+ 11083
+ 11086
+ IN
+ O
+
+
+ our
+ we
+ 11087
+ 11090
+ PRP$
+ O
+
+
+ work
+ work
+ 11091
+ 11095
+ NN
+ O
+
+
+ this
+ this
+ 11096
+ 11100
+ DT
+ DATE
+ THIS P1Y
+
+
+
+ year
+ year
+ 11101
+ 11105
+ NN
+ DATE
+ THIS P1Y
+
+
+
+ .
+ .
+ 11105
+ 11106
+ .
+ O
+
+
+ (ROOT (X (NP (NP (DT Those) (JJ immediate) (JJ concerns-clean) (NN air)) (, ,) (NP (JJ national) (NN service)) (, ,) (NP (NN crime) (NN legislation)) (, ,) (CC and) (NP (NN education) (NN reform) (NN measures-are))) (NP (NP (DT a) (JJ good) (NN start)) (PP (IN for) (NP (NP (PRP$ our) (NN work)) (NP (DT this) (NN year))))) (. .)))
+
+
+ ROOT
+ start
+
+
+ air
+ Those
+
+
+ air
+ immediate
+
+
+ air
+ concerns-clean
+
+
+ start
+ air
+
+
+ service
+ national
+
+
+ air
+ service
+
+
+ legislation
+ crime
+
+
+ air
+ legislation
+
+
+ air
+ and
+
+
+ measures-are
+ education
+
+
+ measures-are
+ reform
+
+
+ air
+ measures-are
+
+
+ start
+ a
+
+
+ start
+ good
+
+
+ start
+ for
+
+
+ work
+ our
+
+
+ for
+ work
+
+
+ year
+ this
+
+
+ work
+ year
+
+
+
+
+ ROOT
+ start
+
+
+ air
+ Those
+
+
+ air
+ immediate
+
+
+ air
+ concerns-clean
+
+
+ start
+ air
+
+
+ service
+ national
+
+
+ air
+ service
+
+
+ legislation
+ crime
+
+
+ air
+ legislation
+
+
+ measures-are
+ education
+
+
+ measures-are
+ reform
+
+
+ air
+ measures-are
+
+
+ start
+ a
+
+
+ start
+ good
+
+
+ work
+ our
+
+
+ start
+ work
+
+
+ year
+ this
+
+
+ work
+ year
+
+
+
+
+ ROOT
+ start
+
+
+ air
+ Those
+
+
+ air
+ immediate
+
+
+ air
+ concerns-clean
+
+
+ start
+ air
+
+
+ service
+ national
+
+
+ air
+ service
+
+
+ start
+ service
+
+
+ legislation
+ crime
+
+
+ air
+ legislation
+
+
+ start
+ legislation
+
+
+ measures-are
+ education
+
+
+ measures-are
+ reform
+
+
+ air
+ measures-are
+
+
+ start
+ measures-are
+
+
+ start
+ a
+
+
+ start
+ good
+
+
+ work
+ our
+
+
+ start
+ work
+
+
+ year
+ this
+
+
+ work
+ year
+
+
+
+
+
+
+ But
+ but
+ 11107
+ 11110
+ CC
+ O
+
+
+ they
+ they
+ 11112
+ 11116
+ PRP
+ O
+
+
+ do
+ do
+ 11117
+ 11119
+ VBP
+ O
+
+
+ not
+ not
+ 11120
+ 11123
+ RB
+ O
+
+
+ exhaust
+ exhaust
+ 11124
+ 11131
+ VB
+ O
+
+
+ our
+ we
+ 11132
+ 11135
+ PRP$
+ O
+
+
+ agenda
+ agenda
+ 11136
+ 11142
+ NN
+ O
+
+
+ .
+ .
+ 11142
+ 11143
+ .
+ O
+
+
+ (ROOT (S (CC But) (NP (PRP they)) (VP (VBP do) (RB not) (VP (VB exhaust) (NP (PRP$ our) (NN agenda)))) (. .)))
+
+
+ ROOT
+ exhaust
+
+
+ exhaust
+ But
+
+
+ exhaust
+ they
+
+
+ exhaust
+ do
+
+
+ exhaust
+ not
+
+
+ agenda
+ our
+
+
+ exhaust
+ agenda
+
+
+
+
+ ROOT
+ exhaust
+
+
+ exhaust
+ But
+
+
+ exhaust
+ they
+
+
+ exhaust
+ do
+
+
+ exhaust
+ not
+
+
+ agenda
+ our
+
+
+ exhaust
+ agenda
+
+
+
+
+ ROOT
+ exhaust
+
+
+ exhaust
+ But
+
+
+ exhaust
+ they
+
+
+ exhaust
+ do
+
+
+ exhaust
+ not
+
+
+ agenda
+ our
+
+
+ exhaust
+ agenda
+
+
+
+
+
+
+ One
+ one
+ 11147
+ 11150
+ CD
+ NUMBER
+ 1.0
+
+
+ issue
+ issue
+ 11151
+ 11156
+ NN
+ O
+
+
+ of
+ of
+ 11157
+ 11159
+ IN
+ O
+
+
+ particular
+ particular
+ 11160
+ 11170
+ JJ
+ O
+
+
+ importance
+ importance
+ 11171
+ 11181
+ NN
+ O
+
+
+ to
+ to
+ 11183
+ 11185
+ TO
+ O
+
+
+ all
+ all
+ 11186
+ 11189
+ DT
+ O
+
+
+ of
+ of
+ 11190
+ 11192
+ IN
+ O
+
+
+ us
+ we
+ 11193
+ 11195
+ PRP
+ O
+
+
+ is
+ be
+ 11196
+ 11198
+ VBZ
+ O
+
+
+ campaign
+ campaign
+ 11199
+ 11207
+ NN
+ O
+
+
+ finance
+ finance
+ 11208
+ 11215
+ NN
+ O
+
+
+ reform
+ reform
+ 11217
+ 11223
+ NN
+ O
+
+
+ .
+ .
+ 11223
+ 11224
+ .
+ O
+
+
+ (ROOT (S (NP (NP (CD One) (NN issue)) (PP (IN of) (NP (NP (JJ particular) (NN importance)) (PP (TO to) (NP (NP (DT all)) (PP (IN of) (NP (PRP us)))))))) (VP (VBZ is) (NP (NN campaign) (NN finance) (NN reform))) (. .)))
+
+
+ ROOT
+ reform
+
+
+ issue
+ One
+
+
+ reform
+ issue
+
+
+ issue
+ of
+
+
+ importance
+ particular
+
+
+ of
+ importance
+
+
+ importance
+ to
+
+
+ to
+ all
+
+
+ all
+ of
+
+
+ of
+ us
+
+
+ reform
+ is
+
+
+ reform
+ campaign
+
+
+ reform
+ finance
+
+
+
+
+ ROOT
+ reform
+
+
+ issue
+ One
+
+
+ reform
+ issue
+
+
+ importance
+ particular
+
+
+ issue
+ importance
+
+
+ importance
+ all
+
+
+ all
+ us
+
+
+ reform
+ is
+
+
+ reform
+ campaign
+
+
+ reform
+ finance
+
+
+
+
+ ROOT
+ reform
+
+
+ issue
+ One
+
+
+ reform
+ issue
+
+
+ importance
+ particular
+
+
+ issue
+ importance
+
+
+ importance
+ all
+
+
+ all
+ us
+
+
+ reform
+ is
+
+
+ reform
+ campaign
+
+
+ reform
+ finance
+
+
+
+
+
+
+ It
+ it
+ 11228
+ 11230
+ PRP
+ O
+
+
+ is
+ be
+ 11231
+ 11233
+ VBZ
+ O
+
+
+ evident
+ evident
+ 11234
+ 11241
+ JJ
+ O
+
+
+ that
+ that
+ 11242
+ 11246
+ IN
+ O
+
+
+ if
+ if
+ 11247
+ 11249
+ IN
+ O
+
+
+ we
+ we
+ 11250
+ 11252
+ PRP
+ O
+
+
+ do
+ do
+ 11253
+ 11255
+ VBP
+ O
+
+
+ not
+ not
+ 11256
+ 11259
+ RB
+ O
+
+
+ reform
+ reform
+ 11260
+ 11266
+ VB
+ O
+
+
+ the
+ the
+ 11268
+ 11271
+ DT
+ O
+
+
+ manner
+ manner
+ 11272
+ 11278
+ NN
+ O
+
+
+ in
+ in
+ 11279
+ 11281
+ IN
+ O
+
+
+ which
+ which
+ 11282
+ 11287
+ WDT
+ O
+
+
+ election
+ election
+ 11288
+ 11296
+ NN
+ O
+
+
+ cam
+ cam
+ 11297
+ 11300
+ NN
+ O
+
+
+ -
+ -
+ 11300
+ 11301
+ :
+ O
+
+
+ paigns
+ paign
+ 11303
+ 11309
+ NNS
+ O
+
+
+ are
+ be
+ 11310
+ 11313
+ VBP
+ O
+
+
+ financed
+ finance
+ 11314
+ 11322
+ VBN
+ O
+
+
+ ,
+ ,
+ 11322
+ 11323
+ ,
+ O
+
+
+ we
+ we
+ 11324
+ 11326
+ PRP
+ O
+
+
+ will
+ will
+ 11327
+ 11331
+ MD
+ O
+
+
+ forfeit
+ forfeit
+ 11332
+ 11339
+ VB
+ O
+
+
+ the
+ the
+ 11340
+ 11343
+ DT
+ O
+
+
+ trust
+ trust
+ 11345
+ 11350
+ NN
+ O
+
+
+ of
+ of
+ 11351
+ 11353
+ IN
+ O
+
+
+ the
+ the
+ 11354
+ 11357
+ DT
+ O
+
+
+ American
+ american
+ 11358
+ 11366
+ JJ
+ LOCATION
+
+
+ people
+ people
+ 11367
+ 11373
+ NNS
+ O
+
+
+ .
+ .
+ 11373
+ 11374
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VBZ is) (ADJP (JJ evident)) (SBAR (IN that) (S (SBAR (IN if) (S (NP (PRP we)) (VP (VBP do) (RB not) (VP (VB reform) (NP (NP (DT the) (NN manner)) (SBAR (WHPP (IN in) (WHNP (WDT which))) (S (NP (NP (NN election) (NN cam)) (: -) (NP (NNS paigns))) (VP (VBP are) (VP (VBN financed)))))))))) (, ,) (NP (PRP we)) (VP (MD will) (VP (VB forfeit) (NP (NP (DT the) (NN trust)) (PP (IN of) (NP (DT the) (JJ American) (NNS people))))))))) (. .)))
+
+
+ ROOT
+ evident
+
+
+ evident
+ It
+
+
+ evident
+ is
+
+
+ forfeit
+ that
+
+
+ reform
+ if
+
+
+ reform
+ we
+
+
+ reform
+ do
+
+
+ reform
+ not
+
+
+ forfeit
+ reform
+
+
+ manner
+ the
+
+
+ reform
+ manner
+
+
+ financed
+ in
+
+
+ in
+ which
+
+
+ cam
+ election
+
+
+ financed
+ cam
+
+
+ cam
+ paigns
+
+
+ financed
+ are
+
+
+ manner
+ financed
+
+
+ forfeit
+ we
+
+
+ forfeit
+ will
+
+
+ evident
+ forfeit
+
+
+ trust
+ the
+
+
+ forfeit
+ trust
+
+
+ trust
+ of
+
+
+ people
+ the
+
+
+ people
+ American
+
+
+ of
+ people
+
+
+
+
+ ROOT
+ evident
+
+
+ evident
+ It
+
+
+ evident
+ is
+
+
+ forfeit
+ that
+
+
+ reform
+ if
+
+
+ reform
+ we
+
+
+ reform
+ do
+
+
+ reform
+ not
+
+
+ forfeit
+ reform
+
+
+ manner
+ the
+
+
+ reform
+ manner
+
+
+ financed
+ which
+
+
+ cam
+ election
+
+
+ financed
+ cam
+
+
+ cam
+ paigns
+
+
+ financed
+ are
+
+
+ manner
+ financed
+
+
+ forfeit
+ we
+
+
+ forfeit
+ will
+
+
+ evident
+ forfeit
+
+
+ trust
+ the
+
+
+ forfeit
+ trust
+
+
+ people
+ the
+
+
+ people
+ American
+
+
+ trust
+ people
+
+
+
+
+ ROOT
+ evident
+
+
+ evident
+ It
+
+
+ evident
+ is
+
+
+ forfeit
+ that
+
+
+ reform
+ if
+
+
+ reform
+ we
+
+
+ reform
+ do
+
+
+ reform
+ not
+
+
+ forfeit
+ reform
+
+
+ manner
+ the
+
+
+ reform
+ manner
+
+
+ financed
+ which
+
+
+ cam
+ election
+
+
+ financed
+ cam
+
+
+ cam
+ paigns
+
+
+ financed
+ are
+
+
+ manner
+ financed
+
+
+ forfeit
+ we
+
+
+ forfeit
+ will
+
+
+ evident
+ forfeit
+
+
+ trust
+ the
+
+
+ forfeit
+ trust
+
+
+ people
+ the
+
+
+ people
+ American
+
+
+ trust
+ people
+
+
+
+
+
+
+ The
+ the
+ 11375
+ 11378
+ DT
+ O
+
+
+ enormous
+ enormous
+ 11380
+ 11388
+ JJ
+ O
+
+
+ costs
+ cost
+ 11389
+ 11394
+ NNS
+ O
+
+
+ of
+ of
+ 11395
+ 11397
+ IN
+ O
+
+
+ campaigning
+ campaigning
+ 11398
+ 11409
+ NN
+ O
+
+
+ are
+ be
+ 11410
+ 11413
+ VBP
+ O
+
+
+ making
+ make
+ 11415
+ 11421
+ VBG
+ O
+
+
+ it
+ it
+ 11422
+ 11424
+ PRP
+ O
+
+
+ more
+ more
+ 11425
+ 11429
+ RBR
+ O
+
+
+ and
+ and
+ 11430
+ 11433
+ CC
+ O
+
+
+ more
+ more
+ 11434
+ 11438
+ RBR
+ O
+
+
+ difficult
+ difficult
+ 11439
+ 11448
+ JJ
+ O
+
+
+ for
+ for
+ 11449
+ 11452
+ IN
+ O
+
+
+ any
+ any
+ 11454
+ 11457
+ DT
+ O
+
+
+ other
+ other
+ 11458
+ 11463
+ JJ
+ O
+
+
+ than
+ than
+ 11464
+ 11468
+ IN
+ O
+
+
+ the
+ the
+ 11469
+ 11472
+ DT
+ O
+
+
+ very
+ very
+ 11473
+ 11477
+ RB
+ O
+
+
+ wealthy
+ wealthy
+ 11478
+ 11485
+ JJ
+ O
+
+
+ to
+ to
+ 11486
+ 11488
+ TO
+ O
+
+
+ contemplate
+ contemplate
+ 11490
+ 11501
+ VB
+ O
+
+
+ serving
+ serve
+ 11502
+ 11509
+ VBG
+ O
+
+
+ in
+ in
+ 11510
+ 11512
+ IN
+ O
+
+
+ the
+ the
+ 11513
+ 11516
+ DT
+ O
+
+
+ Congress
+ Congress
+ 11517
+ 11525
+ NNP
+ ORGANIZATION
+
+
+ .
+ .
+ 11525
+ 11526
+ .
+ O
+
+
+ (ROOT (S (NP (NP (DT The) (JJ enormous) (NNS costs)) (PP (IN of) (NP (NN campaigning)))) (VP (VBP are) (VP (VBG making) (S (NP (PRP it)) (ADJP (ADJP (ADVP (RBR more) (CC and) (RBR more)) (JJ difficult)) (PP (IN for) (NP (NP (DT any) (JJ other)) (PP (IN than) (NP (DT the) (ADJP (RB very) (JJ wealthy))))))) (S (VP (TO to) (VP (VB contemplate) (S (VP (VBG serving) (PP (IN in) (NP (DT the) (NNP Congress))))))))))) (. .)))
+
+
+ ROOT
+ making
+
+
+ costs
+ The
+
+
+ costs
+ enormous
+
+
+ making
+ costs
+
+
+ costs
+ of
+
+
+ of
+ campaigning
+
+
+ making
+ are
+
+
+ contemplate
+ it
+
+
+ difficult
+ more
+
+
+ more
+ and
+
+
+ more
+ more
+
+
+ contemplate
+ difficult
+
+
+ difficult
+ for
+
+
+ other
+ any
+
+
+ for
+ other
+
+
+ other
+ than
+
+
+ wealthy
+ the
+
+
+ wealthy
+ very
+
+
+ than
+ wealthy
+
+
+ contemplate
+ to
+
+
+ making
+ contemplate
+
+
+ contemplate
+ serving
+
+
+ serving
+ in
+
+
+ Congress
+ the
+
+
+ in
+ Congress
+
+
+
+
+ ROOT
+ making
+
+
+ costs
+ The
+
+
+ costs
+ enormous
+
+
+ making
+ costs
+
+
+ costs
+ campaigning
+
+
+ making
+ are
+
+
+ contemplate
+ it
+
+
+ difficult
+ more
+
+
+ more
+ more
+
+
+ contemplate
+ difficult
+
+
+ other
+ any
+
+
+ difficult
+ other
+
+
+ wealthy
+ the
+
+
+ wealthy
+ very
+
+
+ other
+ wealthy
+
+
+ contemplate
+ to
+
+
+ making
+ contemplate
+
+
+ contemplate
+ serving
+
+
+ Congress
+ the
+
+
+ serving
+ Congress
+
+
+
+
+ ROOT
+ making
+
+
+ costs
+ The
+
+
+ costs
+ enormous
+
+
+ making
+ costs
+
+
+ costs
+ campaigning
+
+
+ making
+ are
+
+
+ contemplate
+ it
+
+
+ difficult
+ more
+
+
+ more
+ more
+
+
+ difficult
+ more
+
+
+ contemplate
+ difficult
+
+
+ other
+ any
+
+
+ difficult
+ other
+
+
+ wealthy
+ the
+
+
+ wealthy
+ very
+
+
+ other
+ wealthy
+
+
+ contemplate
+ to
+
+
+ making
+ contemplate
+
+
+ contemplate
+ serving
+
+
+ Congress
+ the
+
+
+ serving
+ Congress
+
+
+
+
+
+
+ The
+ the
+ 11528
+ 11531
+ DT
+ O
+
+
+ demands
+ demand
+ 11532
+ 11539
+ NNS
+ O
+
+
+ of
+ of
+ 11540
+ 11542
+ IN
+ O
+
+
+ election
+ election
+ 11543
+ 11551
+ NN
+ O
+
+
+ campaigns
+ campaign
+ 11552
+ 11561
+ NNS
+ O
+
+
+ force
+ force
+ 11563
+ 11568
+ VBP
+ O
+
+
+ far
+ far
+ 11569
+ 11572
+ RB
+ O
+
+
+ too
+ too
+ 11573
+ 11576
+ RB
+ O
+
+
+ much
+ much
+ 11577
+ 11581
+ JJ
+ O
+
+
+ attention
+ attention
+ 11582
+ 11591
+ NN
+ O
+
+
+ to
+ to
+ 11592
+ 11594
+ TO
+ O
+
+
+ be
+ be
+ 11595
+ 11597
+ VB
+ O
+
+
+ paid
+ pay
+ 11599
+ 11603
+ VBN
+ O
+
+
+ to
+ to
+ 11604
+ 11606
+ TO
+ O
+
+
+ fundraising
+ fundraise
+ 11607
+ 11618
+ VBG
+ O
+
+
+ activities
+ activity
+ 11619
+ 11629
+ NNS
+ O
+
+
+ .
+ .
+ 11629
+ 11630
+ .
+ O
+
+
+ (ROOT (S (NP (NP (DT The) (NNS demands)) (PP (IN of) (NP (NN election) (NNS campaigns)))) (VP (VBP force) (NP (ADJP (RB far) (RB too) (JJ much)) (NN attention)) (S (VP (TO to) (VP (VB be) (VP (VBN paid) (PP (TO to) (S (VP (VBG fundraising) (NP (NNS activities)))))))))) (. .)))
+
+
+ ROOT
+ force
+
+
+ demands
+ The
+
+
+ force
+ demands
+
+
+ demands
+ of
+
+
+ campaigns
+ election
+
+
+ of
+ campaigns
+
+
+ much
+ far
+
+
+ much
+ too
+
+
+ attention
+ much
+
+
+ force
+ attention
+
+
+ paid
+ to
+
+
+ paid
+ be
+
+
+ force
+ paid
+
+
+ paid
+ to
+
+
+ to
+ fundraising
+
+
+ fundraising
+ activities
+
+
+
+
+ ROOT
+ force
+
+
+ demands
+ The
+
+
+ force
+ demands
+
+
+ campaigns
+ election
+
+
+ demands
+ campaigns
+
+
+ much
+ far
+
+
+ much
+ too
+
+
+ attention
+ much
+
+
+ force
+ attention
+
+
+ paid
+ to
+
+
+ paid
+ be
+
+
+ force
+ paid
+
+
+ paid
+ fundraising
+
+
+ fundraising
+ activities
+
+
+
+
+ ROOT
+ force
+
+
+ demands
+ The
+
+
+ force
+ demands
+
+
+ campaigns
+ election
+
+
+ demands
+ campaigns
+
+
+ much
+ far
+
+
+ much
+ too
+
+
+ attention
+ much
+
+
+ force
+ attention
+
+
+ paid
+ to
+
+
+ paid
+ be
+
+
+ force
+ paid
+
+
+ paid
+ fundraising
+
+
+ fundraising
+ activities
+
+
+
+
+
+
+ The
+ the
+ 11634
+ 11637
+ DT
+ O
+
+
+ appearance
+ appearance
+ 11638
+ 11648
+ NN
+ O
+
+
+ is
+ be
+ 11649
+ 11651
+ VBZ
+ O
+
+
+ one
+ one
+ 11652
+ 11655
+ CD
+ NUMBER
+ 1.0
+
+
+ that
+ that
+ 11656
+ 11660
+ WDT
+ O
+
+
+ under
+ under
+ 11661
+ 11666
+ IN
+ O
+
+
+ -
+ -
+ 11666
+ 11667
+ :
+ O
+
+
+ mines
+ mine
+ 11669
+ 11674
+ NNS
+ O
+
+
+ confidence
+ confidence
+ 11675
+ 11685
+ NN
+ O
+
+
+ in
+ in
+ 11686
+ 11688
+ IN
+ O
+
+
+ Congress
+ Congress
+ 11689
+ 11697
+ NNP
+ ORGANIZATION
+
+
+ .
+ .
+ 11697
+ 11698
+ .
+ O
+
+
+ (ROOT (S (NP (DT The) (NN appearance)) (VP (VBZ is) (NP (NP (NP (CD one)) (SBAR (WHNP (WDT that)))) (PP (IN under) (: -) (NP (NP (NNS mines) (NN confidence)) (PP (IN in) (NP (NNP Congress))))))) (. .)))
+
+
+ ROOT
+ one
+
+
+ appearance
+ The
+
+
+ one
+ appearance
+
+
+ one
+ is
+
+
+ one
+ that
+
+
+ one
+ under
+
+
+ confidence
+ mines
+
+
+ under
+ confidence
+
+
+ confidence
+ in
+
+
+ in
+ Congress
+
+
+
+
+ ROOT
+ one
+
+
+ appearance
+ The
+
+
+ one
+ appearance
+
+
+ one
+ is
+
+
+ one
+ that
+
+
+ confidence
+ mines
+
+
+ one
+ confidence
+
+
+ confidence
+ Congress
+
+
+
+
+ ROOT
+ one
+
+
+ appearance
+ The
+
+
+ one
+ appearance
+
+
+ one
+ is
+
+
+ one
+ that
+
+
+ confidence
+ mines
+
+
+ one
+ confidence
+
+
+ confidence
+ Congress
+
+
+
+
+
+
+ The
+ the
+ 11699
+ 11702
+ DT
+ O
+
+
+ re
+ re
+ 11703
+ 11705
+ SYM
+ O
+
+
+ -
+ -
+ 11705
+ 11706
+ :
+ O
+
+
+ ality
+ ality
+ 11708
+ 11713
+ NN
+ O
+
+
+ is
+ be
+ 11714
+ 11716
+ VBZ
+ O
+
+
+ one
+ one
+ 11717
+ 11720
+ CD
+ NUMBER
+ 1.0
+
+
+ that
+ that
+ 11721
+ 11725
+ WDT
+ O
+
+
+ distorts
+ distort
+ 11726
+ 11734
+ VBZ
+ O
+
+
+ Congress
+ Congress
+ 11735
+ 11743
+ NNP
+ ORGANIZATION
+
+
+ '
+ '
+ 11743
+ 11744
+ POS
+ O
+
+
+ ability
+ ability
+ 11746
+ 11753
+ NN
+ O
+
+
+ to
+ to
+ 11754
+ 11756
+ TO
+ O
+
+
+ function
+ function
+ 11757
+ 11765
+ VB
+ O
+
+
+ .
+ .
+ 11765
+ 11766
+ .
+ O
+
+
+ (ROOT (FRAG (NP (NP (DT The)) (SBAR (FRAG (X (SYM re)) (: -) (NP (NP (NN ality)) (SBAR (S (VP (VBZ is) (NP (NP (CD one)) (SBAR (WHNP (WDT that)) (S (VP (VBZ distorts) (NP (NP (NNP Congress) (POS ')) (NN ability) (S (VP (TO to) (VP (VB function))))))))))))) (. .))))))
+
+
+ ROOT
+ The
+
+
+ ality
+ re
+
+
+ The
+ ality
+
+
+ one
+ is
+
+
+ ality
+ one
+
+
+ distorts
+ that
+
+
+ one
+ distorts
+
+
+ ability
+ Congress
+
+
+ distorts
+ ability
+
+
+ function
+ to
+
+
+ ability
+ function
+
+
+
+
+ ROOT
+ The
+
+
+ ality
+ re
+
+
+ The
+ ality
+
+
+ one
+ is
+
+
+ ality
+ one
+
+
+ distorts
+ that
+
+
+ one
+ distorts
+
+
+ ability
+ Congress
+
+
+ distorts
+ ability
+
+
+ function
+ to
+
+
+ ability
+ function
+
+
+
+
+ ROOT
+ The
+
+
+ ality
+ re
+
+
+ The
+ ality
+
+
+ one
+ is
+
+
+ ality
+ one
+
+
+ distorts
+ that
+
+
+ one
+ distorts
+
+
+ ability
+ Congress
+
+
+ distorts
+ ability
+
+
+ function
+ to
+
+
+ ability
+ function
+
+
+
+
+
+
+ Campaign
+ campaign
+ 11770
+ 11778
+ NN
+ O
+
+
+ finance
+ finance
+ 11779
+ 11786
+ NN
+ O
+
+
+ reform
+ reform
+ 11787
+ 11793
+ NN
+ O
+
+
+ is
+ be
+ 11794
+ 11796
+ VBZ
+ O
+
+
+ a
+ a
+ 11797
+ 11798
+ DT
+ O
+
+
+ goal
+ goal
+ 11799
+ 11803
+ NN
+ O
+
+
+ I
+ I
+ 11804
+ 11805
+ PRP
+ O
+
+
+ have
+ have
+ 11807
+ 11811
+ VBP
+ O
+
+
+ pursued
+ pursue
+ 11812
+ 11819
+ VBN
+ O
+
+
+ for
+ for
+ 11820
+ 11823
+ IN
+ O
+
+
+ 8
+ 8
+ 11824
+ 11825
+ CD
+ DURATION
+ 8.0
+ P8Y
+
+
+ years
+ year
+ 11826
+ 11831
+ NNS
+ NUMBER
+ 0.0
+ P8Y
+
+
+ .
+ .
+ 11831
+ 11832
+ .
+ O
+
+
+ (ROOT (S (NP (NN Campaign) (NN finance) (NN reform)) (VP (VBZ is) (NP (NP (DT a) (NN goal)) (SBAR (S (NP (PRP I)) (VP (VBP have) (VP (VBN pursued) (PP (IN for) (NP (CD 8) (NNS years))))))))) (. .)))
+
+
+ ROOT
+ goal
+
+
+ reform
+ Campaign
+
+
+ reform
+ finance
+
+
+ goal
+ reform
+
+
+ goal
+ is
+
+
+ goal
+ a
+
+
+ pursued
+ I
+
+
+ pursued
+ have
+
+
+ goal
+ pursued
+
+
+ pursued
+ for
+
+
+ years
+ 8
+
+
+ for
+ years
+
+
+
+
+ ROOT
+ goal
+
+
+ reform
+ Campaign
+
+
+ reform
+ finance
+
+
+ goal
+ reform
+
+
+ goal
+ is
+
+
+ goal
+ a
+
+
+ pursued
+ I
+
+
+ pursued
+ have
+
+
+ goal
+ pursued
+
+
+ years
+ 8
+
+
+ pursued
+ years
+
+
+
+
+ ROOT
+ goal
+
+
+ reform
+ Campaign
+
+
+ reform
+ finance
+
+
+ goal
+ reform
+
+
+ goal
+ is
+
+
+ goal
+ a
+
+
+ pursued
+ I
+
+
+ pursued
+ have
+
+
+ goal
+ pursued
+
+
+ years
+ 8
+
+
+ pursued
+ years
+
+
+
+
+
+
+ I
+ I
+ 11833
+ 11834
+ PRP
+ O
+
+
+ shall
+ shall
+ 11835
+ 11840
+ MD
+ O
+
+
+ con
+ con
+ 11841
+ 11844
+ VB
+ O
+
+
+ -
+ -
+ 11844
+ 11845
+ :
+ O
+
+
+ tinue
+ tinue
+ 11847
+ 11852
+ NN
+ O
+
+
+ to
+ to
+ 11853
+ 11855
+ TO
+ O
+
+
+ press
+ press
+ 11856
+ 11861
+ VB
+ O
+
+
+ for
+ for
+ 11862
+ 11865
+ IN
+ O
+
+
+ It
+ it
+ 11866
+ 11868
+ PRP
+ O
+
+
+ ,
+ ,
+ 11868
+ 11869
+ ,
+ O
+
+
+ and
+ and
+ 11870
+ 11873
+ CC
+ O
+
+
+ I
+ I
+ 11874
+ 11875
+ PRP
+ O
+
+
+ hope
+ hope
+ 11876
+ 11880
+ VBP
+ O
+
+
+ that
+ that
+ 11881
+ 11885
+ IN
+ O
+
+
+ this
+ this
+ 11887
+ 11891
+ DT
+ DATE
+ THIS P1Y
+
+
+
+ year
+ year
+ 11892
+ 11896
+ NN
+ DATE
+ THIS P1Y
+
+
+
+ we
+ we
+ 11897
+ 11899
+ PRP
+ O
+
+
+ will
+ will
+ 11900
+ 11904
+ MD
+ O
+
+
+ finally
+ finally
+ 11905
+ 11912
+ RB
+ O
+
+
+ see
+ see
+ 11913
+ 11916
+ VB
+ O
+
+
+ an
+ a
+ 11917
+ 11919
+ DT
+ O
+
+
+ oppor
+ oppor
+ 11920
+ 11925
+ NN
+ O
+
+
+ -
+ -
+ 11925
+ 11926
+ :
+ O
+
+
+ tunity
+ tunity
+ 11928
+ 11934
+ NN
+ O
+
+
+ to
+ to
+ 11935
+ 11937
+ TO
+ O
+
+
+ take
+ take
+ 11938
+ 11942
+ VB
+ O
+
+
+ effective
+ effective
+ 11943
+ 11952
+ JJ
+ O
+
+
+ action
+ action
+ 11953
+ 11959
+ NN
+ O
+
+
+ .
+ .
+ 11959
+ 11960
+ .
+ O
+
+
+ (ROOT (S (S (NP (PRP I)) (VP (MD shall) (VP (VB con) (: -) (S (NP (NN tinue)) (VP (TO to) (VP (VB press) (PP (IN for) (NP (PRP It))))))))) (, ,) (CC and) (S (NP (PRP I)) (VP (VBP hope) (SBAR (IN that) (S (NP-TMP (DT this) (NN year)) (NP (PRP we)) (VP (MD will) (ADVP (RB finally)) (VP (VB see) (NP (DT an) (NN oppor) (: -) (NN tunity)) (S (VP (TO to) (VP (VB take) (NP (JJ effective) (NN action))))))))))) (. .)))
+
+
+ ROOT
+ con
+
+
+ con
+ I
+
+
+ con
+ shall
+
+
+ press
+ tinue
+
+
+ press
+ to
+
+
+ con
+ press
+
+
+ press
+ for
+
+
+ for
+ It
+
+
+ con
+ and
+
+
+ hope
+ I
+
+
+ con
+ hope
+
+
+ see
+ that
+
+
+ year
+ this
+
+
+ see
+ year
+
+
+ see
+ we
+
+
+ see
+ will
+
+
+ see
+ finally
+
+
+ hope
+ see
+
+
+ tunity
+ an
+
+
+ tunity
+ oppor
+
+
+ see
+ tunity
+
+
+ take
+ to
+
+
+ see
+ take
+
+
+ action
+ effective
+
+
+ take
+ action
+
+
+
+
+ ROOT
+ con
+
+
+ con
+ I
+
+
+ con
+ shall
+
+
+ press
+ tinue
+
+
+ press
+ to
+
+
+ con
+ press
+
+
+ press
+ It
+
+
+ hope
+ I
+
+
+ con
+ hope
+
+
+ see
+ that
+
+
+ year
+ this
+
+
+ see
+ year
+
+
+ see
+ we
+
+
+ see
+ will
+
+
+ see
+ finally
+
+
+ hope
+ see
+
+
+ tunity
+ an
+
+
+ tunity
+ oppor
+
+
+ see
+ tunity
+
+
+ take
+ to
+
+
+ see
+ take
+
+
+ action
+ effective
+
+
+ take
+ action
+
+
+
+
+ ROOT
+ con
+
+
+ con
+ I
+
+
+ con
+ shall
+
+
+ press
+ tinue
+
+
+ press
+ to
+
+
+ con
+ press
+
+
+ press
+ It
+
+
+ hope
+ I
+
+
+ con
+ hope
+
+
+ see
+ that
+
+
+ year
+ this
+
+
+ see
+ year
+
+
+ see
+ we
+
+
+ see
+ will
+
+
+ see
+ finally
+
+
+ hope
+ see
+
+
+ tunity
+ an
+
+
+ tunity
+ oppor
+
+
+ see
+ tunity
+
+
+ take
+ to
+
+
+ see
+ take
+
+
+ action
+ effective
+
+
+ take
+ action
+
+
+
+
+
+
+ THE
+ the
+ 11967
+ 11970
+ DT
+ O
+
+
+ RETIREMENT
+ retirement
+ 11971
+ 11981
+ NN
+ O
+
+
+ OF
+ of
+ 11982
+ 11984
+ IN
+ O
+
+
+ MAX
+ MAX
+ 11985
+ 11988
+ NNP
+ O
+
+
+ BARBER
+ BARBER
+ 12004
+ 12010
+ NNP
+ O
+
+
+ Mr.
+ Mr.
+ 12014
+ 12017
+ NNP
+ O
+
+
+ MITCHELL
+ MITCHELL
+ 12018
+ 12026
+ NNP
+ PERSON
+
+
+ .
+ .
+ 12026
+ 12027
+ .
+ O
+
+
+ (ROOT (NP (NP (DT THE) (NN RETIREMENT)) (PP (IN OF) (NP (NNP MAX) (NNP BARBER) (NNP Mr.) (NNP MITCHELL))) (. .)))
+
+
+ ROOT
+ RETIREMENT
+
+
+ RETIREMENT
+ THE
+
+
+ RETIREMENT
+ OF
+
+
+ MITCHELL
+ MAX
+
+
+ MITCHELL
+ BARBER
+
+
+ MITCHELL
+ Mr.
+
+
+ OF
+ MITCHELL
+
+
+
+
+ ROOT
+ RETIREMENT
+
+
+ RETIREMENT
+ THE
+
+
+ MITCHELL
+ MAX
+
+
+ MITCHELL
+ BARBER
+
+
+ MITCHELL
+ Mr.
+
+
+ RETIREMENT
+ MITCHELL
+
+
+
+
+ ROOT
+ RETIREMENT
+
+
+ RETIREMENT
+ THE
+
+
+ MITCHELL
+ MAX
+
+
+ MITCHELL
+ BARBER
+
+
+ MITCHELL
+ Mr.
+
+
+ RETIREMENT
+ MITCHELL
+
+
+
+
+
+
+ Mr.
+ Mr.
+ 12028
+ 12031
+ NNP
+ O
+
+
+ President
+ President
+ 12032
+ 12041
+ NNP
+ O
+
+
+ ,
+ ,
+ 12041
+ 12042
+ ,
+ O
+
+
+ I
+ I
+ 12043
+ 12044
+ PRP
+ O
+
+
+ would
+ would
+ 12046
+ 12051
+ MD
+ O
+
+
+ like
+ like
+ 12052
+ 12056
+ VB
+ O
+
+
+ to
+ to
+ 12057
+ 12059
+ TO
+ O
+
+
+ take
+ take
+ 12060
+ 12064
+ VB
+ O
+
+
+ this
+ this
+ 12065
+ 12069
+ DT
+ O
+
+
+ opportunity
+ opportunity
+ 12070
+ 12081
+ NN
+ O
+
+
+ to
+ to
+ 12082
+ 12084
+ TO
+ O
+
+
+ acknowledge
+ acknowledge
+ 12086
+ 12097
+ VB
+ O
+
+
+ the
+ the
+ 12098
+ 12101
+ DT
+ O
+
+
+ recent
+ recent
+ 12102
+ 12108
+ JJ
+ O
+
+
+ retirement
+ retirement
+ 12109
+ 12119
+ NN
+ O
+
+
+ of
+ of
+ 12120
+ 12122
+ IN
+ O
+
+
+ Max
+ Max
+ 12124
+ 12127
+ NNP
+ PERSON
+
+
+ Barber
+ Barber
+ 12128
+ 12134
+ NNP
+ PERSON
+
+
+ ,
+ ,
+ 12134
+ 12135
+ ,
+ O
+
+
+ who
+ who
+ 12136
+ 12139
+ WP
+ O
+
+
+ served
+ serve
+ 12140
+ 12146
+ VBD
+ O
+
+
+ as
+ as
+ 12147
+ 12149
+ IN
+ O
+
+
+ superin
+ superin
+ 12150
+ 12157
+ NN
+ O
+
+
+ -
+ -
+ 12157
+ 12158
+ :
+ O
+
+
+ tendent
+ tendent
+ 12160
+ 12167
+ NN
+ O
+
+
+ of
+ of
+ 12168
+ 12170
+ IN
+ O
+
+
+ the
+ the
+ 12171
+ 12174
+ DT
+ O
+
+
+ Senate
+ Senate
+ 12175
+ 12181
+ NNP
+ ORGANIZATION
+
+
+ Radio-TV
+ Radio-TV
+ 12182
+ 12190
+ NNP
+ O
+
+
+ Gal
+ Gal
+ 12191
+ 12194
+ NNP
+ O
+
+
+ -
+ -
+ 12194
+ 12195
+ :
+ O
+
+
+ lery
+ lery
+ 12197
+ 12201
+ NN
+ O
+
+
+ .
+ .
+ 12201
+ 12202
+ .
+ O
+
+
+ (ROOT (S (NP (NNP Mr.) (NNP President)) (, ,) (NP (PRP I)) (VP (MD would) (VP (VB like) (S (VP (TO to) (VP (VB take) (NP (DT this) (NN opportunity) (S (VP (TO to) (VP (VB acknowledge) (NP (NP (DT the) (JJ recent) (NN retirement)) (PP (IN of) (NP (NP (NNP Max) (NNP Barber)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD served) (PP (IN as) (NP (NP (NN superin)) (: -) (NP (NP (NN tendent)) (PP (IN of) (NP (DT the) (NNP Senate) (NNP Radio-TV) (NNP Gal)))) (: -) (NP (NN lery))))))))))))))))))) (. .)))
+
+
+ ROOT
+ like
+
+
+ President
+ Mr.
+
+
+ like
+ President
+
+
+ like
+ I
+
+
+ like
+ would
+
+
+ take
+ to
+
+
+ like
+ take
+
+
+ opportunity
+ this
+
+
+ take
+ opportunity
+
+
+ acknowledge
+ to
+
+
+ opportunity
+ acknowledge
+
+
+ retirement
+ the
+
+
+ retirement
+ recent
+
+
+ acknowledge
+ retirement
+
+
+ retirement
+ of
+
+
+ Barber
+ Max
+
+
+ of
+ Barber
+
+
+ served
+ who
+
+
+ Barber
+ served
+
+
+ served
+ as
+
+
+ as
+ superin
+
+
+ superin
+ tendent
+
+
+ tendent
+ of
+
+
+ Gal
+ the
+
+
+ Gal
+ Senate
+
+
+ Gal
+ Radio-TV
+
+
+ of
+ Gal
+
+
+ superin
+ lery
+
+
+
+
+ ROOT
+ like
+
+
+ President
+ Mr.
+
+
+ like
+ President
+
+
+ like
+ I
+
+
+ like
+ would
+
+
+ take
+ to
+
+
+ like
+ take
+
+
+ opportunity
+ this
+
+
+ take
+ opportunity
+
+
+ acknowledge
+ to
+
+
+ opportunity
+ acknowledge
+
+
+ retirement
+ the
+
+
+ retirement
+ recent
+
+
+ acknowledge
+ retirement
+
+
+ Barber
+ Max
+
+
+ retirement
+ Barber
+
+
+ served
+ who
+
+
+ Barber
+ served
+
+
+ served
+ superin
+
+
+ superin
+ tendent
+
+
+ Gal
+ the
+
+
+ Gal
+ Senate
+
+
+ Gal
+ Radio-TV
+
+
+ tendent
+ Gal
+
+
+ superin
+ lery
+
+
+
+
+ ROOT
+ like
+
+
+ President
+ Mr.
+
+
+ like
+ President
+
+
+ like
+ I
+
+
+ like
+ would
+
+
+ take
+ to
+
+
+ like
+ take
+
+
+ opportunity
+ this
+
+
+ take
+ opportunity
+
+
+ acknowledge
+ to
+
+
+ opportunity
+ acknowledge
+
+
+ retirement
+ the
+
+
+ retirement
+ recent
+
+
+ acknowledge
+ retirement
+
+
+ Barber
+ Max
+
+
+ retirement
+ Barber
+
+
+ served
+ who
+
+
+ Barber
+ served
+
+
+ served
+ superin
+
+
+ superin
+ tendent
+
+
+ Gal
+ the
+
+
+ Gal
+ Senate
+
+
+ Gal
+ Radio-TV
+
+
+ tendent
+ Gal
+
+
+ superin
+ lery
+
+
+
+
+
+
+ Max
+ Max
+ 12206
+ 12209
+ NNP
+ PERSON
+
+
+ has
+ have
+ 12210
+ 12213
+ VBZ
+ O
+
+
+ been
+ be
+ 12214
+ 12218
+ VBN
+ O
+
+
+ a
+ a
+ 12219
+ 12220
+ DT
+ O
+
+
+ familiar
+ familiar
+ 12221
+ 12229
+ JJ
+ O
+
+
+ face
+ face
+ 12230
+ 12234
+ NN
+ O
+
+
+ in
+ in
+ 12235
+ 12237
+ IN
+ O
+
+
+ the
+ the
+ 12238
+ 12241
+ DT
+ O
+
+
+ U.S.
+ U.S.
+ 12243
+ 12247
+ NNP
+ LOCATION
+
+
+ Capitol
+ Capitol
+ 12248
+ 12255
+ NNP
+ O
+
+
+ for
+ for
+ 12256
+ 12259
+ IN
+ O
+
+
+ 38
+ 38
+ 12260
+ 12262
+ CD
+ DURATION
+ 38.0
+ P38Y
+
+
+ years
+ year
+ 12263
+ 12268
+ NNS
+ NUMBER
+ 0.0
+ P38Y
+
+
+ .
+ .
+ 12268
+ 12269
+ .
+ O
+
+
+ (ROOT (S (NP (NNP Max)) (VP (VBZ has) (VP (VBN been) (NP (NP (DT a) (JJ familiar) (NN face)) (PP (IN in) (NP (DT the) (NNP U.S.) (NNP Capitol)))) (PP (IN for) (NP (CD 38) (NNS years))))) (. .)))
+
+
+ ROOT
+ face
+
+
+ face
+ Max
+
+
+ face
+ has
+
+
+ face
+ been
+
+
+ face
+ a
+
+
+ face
+ familiar
+
+
+ face
+ in
+
+
+ Capitol
+ the
+
+
+ Capitol
+ U.S.
+
+
+ in
+ Capitol
+
+
+ face
+ for
+
+
+ years
+ 38
+
+
+ for
+ years
+
+
+
+
+ ROOT
+ face
+
+
+ face
+ Max
+
+
+ face
+ has
+
+
+ face
+ been
+
+
+ face
+ a
+
+
+ face
+ familiar
+
+
+ Capitol
+ the
+
+
+ Capitol
+ U.S.
+
+
+ face
+ Capitol
+
+
+ years
+ 38
+
+
+ face
+ years
+
+
+
+
+ ROOT
+ face
+
+
+ face
+ Max
+
+
+ face
+ has
+
+
+ face
+ been
+
+
+ face
+ a
+
+
+ face
+ familiar
+
+
+ Capitol
+ the
+
+
+ Capitol
+ U.S.
+
+
+ face
+ Capitol
+
+
+ years
+ 38
+
+
+ face
+ years
+
+
+
+
+
+
+ During
+ during
+ 12270
+ 12276
+ IN
+ O
+
+
+ those
+ those
+ 12277
+ 12282
+ DT
+ O
+
+
+ years
+ year
+ 12284
+ 12289
+ NNS
+ DURATION
+ PXY
+
+
+ ,
+ ,
+ 12289
+ 12290
+ ,
+ O
+
+
+ Max
+ Max
+ 12291
+ 12294
+ NNP
+ PERSON
+
+
+ worked
+ work
+ 12295
+ 12301
+ VBD
+ O
+
+
+ as
+ as
+ 12302
+ 12304
+ IN
+ O
+
+
+ an
+ a
+ 12305
+ 12307
+ DT
+ O
+
+
+ elevator
+ elevator
+ 12308
+ 12316
+ NN
+ O
+
+
+ oper
+ oper
+ 12317
+ 12321
+ SYM
+ O
+
+
+ -
+ -
+ 12321
+ 12322
+ :
+ O
+
+
+ tor
+ tor
+ 12324
+ 12327
+ NN
+ O
+
+
+ ,
+ ,
+ 12327
+ 12328
+ ,
+ O
+
+
+ served
+ serve
+ 12329
+ 12335
+ VBD
+ O
+
+
+ on
+ on
+ 12336
+ 12338
+ IN
+ O
+
+
+ the
+ the
+ 12339
+ 12342
+ DT
+ O
+
+
+ Capitol
+ Capitol
+ 12343
+ 12350
+ NNP
+ ORGANIZATION
+
+
+ Police
+ Police
+ 12351
+ 12357
+ NNP
+ ORGANIZATION
+
+
+ Force
+ Force
+ 12359
+ 12364
+ NNP
+ ORGANIZATION
+
+
+ ,
+ ,
+ 12364
+ 12365
+ ,
+ O
+
+
+ and
+ and
+ 12366
+ 12369
+ CC
+ O
+
+
+ most
+ most
+ 12370
+ 12374
+ RBS
+ O
+
+
+ recently
+ recently
+ 12375
+ 12383
+ RB
+ DATE
+ PAST_REF
+ PAST_REF
+
+
+ was
+ be
+ 12384
+ 12387
+ VBD
+ O
+
+
+ the
+ the
+ 12388
+ 12391
+ DT
+ O
+
+
+ su
+ su
+ 12392
+ 12394
+ NN
+ O
+
+
+ -
+ -
+ 12394
+ 12395
+ :
+ O
+
+
+ perintendent
+ perintendent
+ 12397
+ 12409
+ NN
+ O
+
+
+ of
+ of
+ 12410
+ 12412
+ IN
+ O
+
+
+ the
+ the
+ 12413
+ 12416
+ DT
+ O
+
+
+ Senate
+ Senate
+ 12417
+ 12423
+ NNP
+ ORGANIZATION
+
+
+ Radio-TV
+ Radio-TV
+ 12424
+ 12432
+ NNP
+ O
+
+
+ Gallery
+ Gallery
+ 12434
+ 12441
+ NNP
+ O
+
+
+ ,
+ ,
+ 12441
+ 12442
+ ,
+ O
+
+
+ where
+ where
+ 12443
+ 12448
+ WRB
+ O
+
+
+ for
+ for
+ 12449
+ 12452
+ IN
+ O
+
+
+ 17
+ 17
+ 12453
+ 12455
+ CD
+ DURATION
+ 17.0
+ P17Y
+
+
+ years
+ year
+ 12456
+ 12461
+ NNS
+ NUMBER
+ 0.0
+ P17Y
+
+
+ he
+ he
+ 12462
+ 12464
+ PRP
+ O
+
+
+ assisted
+ assist
+ 12465
+ 12473
+ VBD
+ O
+
+
+ our
+ we
+ 12475
+ 12478
+ PRP$
+ O
+
+
+ friends
+ friend
+ 12479
+ 12486
+ NNS
+ O
+
+
+ in
+ in
+ 12487
+ 12489
+ IN
+ O
+
+
+ the
+ the
+ 12490
+ 12493
+ DT
+ O
+
+
+ broadcast
+ broadcast
+ 12494
+ 12503
+ NN
+ O
+
+
+ media
+ media
+ 12504
+ 12509
+ NNS
+ O
+
+
+ .
+ .
+ 12509
+ 12510
+ .
+ O
+
+
+ (ROOT (S (PP (IN During) (NP (DT those) (NNS years))) (, ,) (NP (NNP Max)) (VP (VBD worked) (PP (IN as) (NP (NP (DT an) (NN elevator)) (SBAR (S (FRAG (X (SYM oper)) (: -) (NP (NN tor))) (, ,) (VP (VP (VBD served) (PP (IN on) (NP (DT the) (NNP Capitol) (NNP Police) (NNP Force)))) (, ,) (CC and) (VP (ADVP (RBS most) (RB recently)) (VBD was) (NP (NP (DT the) (NN su)) (: -) (NP (NP (NN perintendent)) (PP (IN of) (NP (DT the) (NNP Senate) (NNP Radio-TV) (NNP Gallery))))))) (, ,))))) (SBAR (WHADVP (WRB where)) (S (PP (IN for) (NP (CD 17) (NNS years))) (NP (PRP he)) (VP (VBD assisted) (NP (PRP$ our) (NNS friends)) (PP (IN in) (NP (DT the) (NN broadcast) (NNS media))))))) (. .)))
+
+
+ ROOT
+ worked
+
+
+ worked
+ During
+
+
+ years
+ those
+
+
+ During
+ years
+
+
+ worked
+ Max
+
+
+ worked
+ as
+
+
+ elevator
+ an
+
+
+ as
+ elevator
+
+
+ tor
+ oper
+
+
+ served
+ tor
+
+
+ elevator
+ served
+
+
+ served
+ on
+
+
+ Force
+ the
+
+
+ Force
+ Capitol
+
+
+ Force
+ Police
+
+
+ on
+ Force
+
+
+ served
+ and
+
+
+ recently
+ most
+
+
+ su
+ recently
+
+
+ su
+ was
+
+
+ su
+ the
+
+
+ served
+ su
+
+
+ su
+ perintendent
+
+
+ perintendent
+ of
+
+
+ Gallery
+ the
+
+
+ Gallery
+ Senate
+
+
+ Gallery
+ Radio-TV
+
+
+ of
+ Gallery
+
+
+ assisted
+ where
+
+
+ assisted
+ for
+
+
+ years
+ 17
+
+
+ for
+ years
+
+
+ assisted
+ he
+
+
+ worked
+ assisted
+
+
+ friends
+ our
+
+
+ assisted
+ friends
+
+
+ assisted
+ in
+
+
+ media
+ the
+
+
+ media
+ broadcast
+
+
+ in
+ media
+
+
+
+
+ ROOT
+ worked
+
+
+ years
+ those
+
+
+ worked
+ years
+
+
+ worked
+ Max
+
+
+ elevator
+ an
+
+
+ worked
+ elevator
+
+
+ tor
+ oper
+
+
+ served
+ tor
+
+
+ elevator
+ served
+
+
+ Force
+ the
+
+
+ Force
+ Capitol
+
+
+ Force
+ Police
+
+
+ served
+ Force
+
+
+ recently
+ most
+
+
+ su
+ recently
+
+
+ su
+ was
+
+
+ su
+ the
+
+
+ served
+ su
+
+
+ su
+ perintendent
+
+
+ Gallery
+ the
+
+
+ Gallery
+ Senate
+
+
+ Gallery
+ Radio-TV
+
+
+ perintendent
+ Gallery
+
+
+ assisted
+ where
+
+
+ years
+ 17
+
+
+ assisted
+ years
+
+
+ assisted
+ he
+
+
+ worked
+ assisted
+
+
+ friends
+ our
+
+
+ assisted
+ friends
+
+
+ media
+ the
+
+
+ media
+ broadcast
+
+
+ assisted
+ media
+
+
+
+
+ ROOT
+ worked
+
+
+ years
+ those
+
+
+ worked
+ years
+
+
+ worked
+ Max
+
+
+ elevator
+ an
+
+
+ worked
+ elevator
+
+
+ tor
+ oper
+
+
+ served
+ tor
+
+
+ elevator
+ served
+
+
+ Force
+ the
+
+
+ Force
+ Capitol
+
+
+ Force
+ Police
+
+
+ served
+ Force
+
+
+ recently
+ most
+
+
+ su
+ recently
+
+
+ su
+ was
+
+
+ su
+ the
+
+
+ elevator
+ su
+
+
+ served
+ su
+
+
+ su
+ perintendent
+
+
+ Gallery
+ the
+
+
+ Gallery
+ Senate
+
+
+ Gallery
+ Radio-TV
+
+
+ perintendent
+ Gallery
+
+
+ assisted
+ where
+
+
+ years
+ 17
+
+
+ assisted
+ years
+
+
+ assisted
+ he
+
+
+ worked
+ assisted
+
+
+ friends
+ our
+
+
+ assisted
+ friends
+
+
+ media
+ the
+
+
+ media
+ broadcast
+
+
+ assisted
+ media
+
+
+
+
+
+
+ Max
+ max
+ 12514
+ 12517
+ NN
+ PERSON
+
+
+ was
+ be
+ 12518
+ 12521
+ VBD
+ O
+
+
+ privileged
+ privileged
+ 12522
+ 12532
+ JJ
+ O
+
+
+ to
+ to
+ 12533
+ 12535
+ TO
+ O
+
+
+ witness
+ witness
+ 12536
+ 12543
+ NN
+ O
+
+
+ many
+ many
+ 12544
+ 12548
+ JJ
+ O
+
+
+ changes
+ change
+ 12550
+ 12557
+ NNS
+ O
+
+
+ that
+ that
+ 12558
+ 12562
+ WDT
+ O
+
+
+ have
+ have
+ 12563
+ 12567
+ VBP
+ O
+
+
+ occurred
+ occur
+ 12568
+ 12576
+ VBN
+ O
+
+
+ in
+ in
+ 12577
+ 12579
+ IN
+ O
+
+
+ the
+ the
+ 12580
+ 12583
+ DT
+ O
+
+
+ Congress
+ Congress
+ 12585
+ 12593
+ NNP
+ ORGANIZATION
+
+
+ .
+ .
+ 12593
+ 12594
+ .
+ O
+
+
+ (ROOT (S (NP (NN Max)) (VP (VBD was) (ADJP (JJ privileged) (PP (TO to) (NP (NP (NN witness) (JJ many) (NNS changes)) (SBAR (WHNP (WDT that)) (S (VP (VBP have) (VP (VBN occurred) (PP (IN in) (NP (DT the) (NNP Congress))))))))))) (. .)))
+
+
+ ROOT
+ privileged
+
+
+ privileged
+ Max
+
+
+ privileged
+ was
+
+
+ privileged
+ to
+
+
+ changes
+ witness
+
+
+ changes
+ many
+
+
+ to
+ changes
+
+
+ occurred
+ that
+
+
+ occurred
+ have
+
+
+ changes
+ occurred
+
+
+ occurred
+ in
+
+
+ Congress
+ the
+
+
+ in
+ Congress
+
+
+
+
+ ROOT
+ privileged
+
+
+ privileged
+ Max
+
+
+ privileged
+ was
+
+
+ changes
+ witness
+
+
+ changes
+ many
+
+
+ privileged
+ changes
+
+
+ occurred
+ that
+
+
+ occurred
+ have
+
+
+ changes
+ occurred
+
+
+ Congress
+ the
+
+
+ occurred
+ Congress
+
+
+
+
+ ROOT
+ privileged
+
+
+ privileged
+ Max
+
+
+ privileged
+ was
+
+
+ changes
+ witness
+
+
+ changes
+ many
+
+
+ privileged
+ changes
+
+
+ occurred
+ that
+
+
+ occurred
+ have
+
+
+ changes
+ occurred
+
+
+ Congress
+ the
+
+
+ occurred
+ Congress
+
+
+
+
+
+
+ I
+ I
+ 12595
+ 12596
+ PRP
+ O
+
+
+ was
+ be
+ 12597
+ 12600
+ VBD
+ O
+
+
+ privileged
+ privileged
+ 12601
+ 12611
+ JJ
+ O
+
+
+ to
+ to
+ 12612
+ 12614
+ TO
+ O
+
+
+ have
+ have
+ 12615
+ 12619
+ VB
+ O
+
+
+ his
+ he
+ 12620
+ 12623
+ PRP$
+ O
+
+
+ support
+ support
+ 12625
+ 12632
+ NN
+ O
+
+
+ and
+ and
+ 12633
+ 12636
+ CC
+ O
+
+
+ assistance
+ assistance
+ 12637
+ 12647
+ NN
+ O
+
+
+ during
+ during
+ 12648
+ 12654
+ IN
+ O
+
+
+ my
+ my
+ 12655
+ 12657
+ PRP$
+ O
+
+
+ first
+ first
+ 12658
+ 12663
+ JJ
+ ORDINAL
+ 1.0
+
+
+ year
+ year
+ 12665
+ 12669
+ NN
+ DURATION
+ P1Y
+
+
+ as
+ as
+ 12670
+ 12672
+ IN
+ O
+
+
+ majority
+ majority
+ 12673
+ 12681
+ NN
+ O
+
+
+ leader
+ leader
+ 12682
+ 12688
+ NN
+ O
+
+
+ .
+ .
+ 12688
+ 12689
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (VBD was) (ADJP (JJ privileged) (S (VP (TO to) (VP (VB have) (NP (PRP$ his) (NN support) (CC and) (NN assistance)) (PP (IN during) (NP (NP (PRP$ my) (JJ first) (NN year)) (PP (IN as) (NP (NN majority) (NN leader)))))))))) (. .)))
+
+
+ ROOT
+ privileged
+
+
+ privileged
+ I
+
+
+ privileged
+ was
+
+
+ have
+ to
+
+
+ privileged
+ have
+
+
+ support
+ his
+
+
+ have
+ support
+
+
+ support
+ and
+
+
+ support
+ assistance
+
+
+ have
+ during
+
+
+ year
+ my
+
+
+ year
+ first
+
+
+ during
+ year
+
+
+ year
+ as
+
+
+ leader
+ majority
+
+
+ as
+ leader
+
+
+
+
+ ROOT
+ privileged
+
+
+ privileged
+ I
+
+
+ privileged
+ was
+
+
+ have
+ to
+
+
+ privileged
+ have
+
+
+ support
+ his
+
+
+ have
+ support
+
+
+ support
+ assistance
+
+
+ year
+ my
+
+
+ year
+ first
+
+
+ have
+ year
+
+
+ leader
+ majority
+
+
+ year
+ leader
+
+
+
+
+ ROOT
+ privileged
+
+
+ privileged
+ I
+
+
+ privileged
+ was
+
+
+ have
+ to
+
+
+ privileged
+ have
+
+
+ support
+ his
+
+
+ have
+ support
+
+
+ have
+ assistance
+
+
+ support
+ assistance
+
+
+ year
+ my
+
+
+ year
+ first
+
+
+ have
+ year
+
+
+ leader
+ majority
+
+
+ year
+ leader
+
+
+
+
+
+
+ Shortly
+ shortly
+ 12693
+ 12700
+ RB
+ O
+
+
+ before
+ before
+ 12701
+ 12707
+ IN
+ O
+
+
+ the
+ the
+ 12708
+ 12711
+ DT
+ O
+
+
+ holidays
+ holiday
+ 12712
+ 12720
+ NNS
+ O
+
+
+ ,
+ ,
+ 12720
+ 12721
+ ,
+ O
+
+
+ Max
+ Max
+ 12722
+ 12725
+ NNP
+ PERSON
+
+
+ an
+ a
+ 12726
+ 12728
+ DT
+ O
+
+
+ -
+ -
+ 12728
+ 12729
+ :
+ O
+
+
+ nounced
+ nounce
+ 12731
+ 12738
+ VBD
+ O
+
+
+ his
+ he
+ 12739
+ 12742
+ PRP$
+ O
+
+
+ retirement
+ retirement
+ 12743
+ 12753
+ NN
+ O
+
+
+ .
+ .
+ 12753
+ 12754
+ .
+ O
+
+
+ (ROOT (FRAG (PP (RB Shortly) (IN before) (NP (NP (DT the) (NNS holidays)) (, ,) (NP (NNP Max) (DT an)))) (: -) (S (VP (VBD nounced) (NP (PRP$ his) (NN retirement)))) (. .)))
+
+
+ ROOT
+ nounced
+
+
+ before
+ Shortly
+
+
+ nounced
+ before
+
+
+ holidays
+ the
+
+
+ before
+ holidays
+
+
+ holidays
+ Max
+
+
+ Max
+ an
+
+
+ retirement
+ his
+
+
+ nounced
+ retirement
+
+
+
+
+ ROOT
+ nounced
+
+
+ nounced
+ Shortly
+
+
+ holidays
+ the
+
+
+ nounced
+ holidays
+
+
+ holidays
+ Max
+
+
+ Max
+ an
+
+
+ retirement
+ his
+
+
+ nounced
+ retirement
+
+
+
+
+ ROOT
+ nounced
+
+
+ nounced
+ Shortly
+
+
+ holidays
+ the
+
+
+ nounced
+ holidays
+
+
+ holidays
+ Max
+
+
+ Max
+ an
+
+
+ retirement
+ his
+
+
+ nounced
+ retirement
+
+
+
+
+
+
+ I
+ I
+ 12755
+ 12756
+ PRP
+ O
+
+
+ understand
+ understand
+ 12757
+ 12767
+ VBP
+ O
+
+
+ that
+ that
+ 12769
+ 12773
+ IN
+ O
+
+
+ he
+ he
+ 12774
+ 12776
+ PRP
+ O
+
+
+ and
+ and
+ 12777
+ 12780
+ CC
+ O
+
+
+ his
+ he
+ 12781
+ 12784
+ PRP$
+ O
+
+
+ wife
+ wife
+ 12785
+ 12789
+ NN
+ O
+
+
+ ,
+ ,
+ 12789
+ 12790
+ ,
+ O
+
+
+ Sylvia
+ Sylvia
+ 12791
+ 12797
+ NNP
+ PERSON
+
+
+ ,
+ ,
+ 12797
+ 12798
+ ,
+ O
+
+
+ are
+ be
+ 12799
+ 12802
+ VBP
+ O
+
+
+ now
+ now
+ 12803
+ 12806
+ RB
+ DATE
+ PRESENT_REF
+ PRESENT_REF
+
+
+ enjoying
+ enjoy
+ 12808
+ 12816
+ VBG
+ O
+
+
+ the
+ the
+ 12817
+ 12820
+ DT
+ O
+
+
+ sunny
+ sunny
+ 12821
+ 12826
+ JJ
+ O
+
+
+ skies
+ sky
+ 12827
+ 12832
+ NNS
+ O
+
+
+ of
+ of
+ 12833
+ 12835
+ IN
+ O
+
+
+ Florida
+ Florida
+ 12836
+ 12843
+ NNP
+ LOCATION
+
+
+ for
+ for
+ 12844
+ 12847
+ IN
+ O
+
+
+ NGRESSIONAL
+ NGRESSIONAL
+ 12851
+ 12862
+ NNP
+ O
+
+
+ RECORD-SENATE
+ RECORD-SENATE
+ 12863
+ 12876
+ NNP
+ O
+
+
+ the
+ the
+ 12880
+ 12883
+ DT
+ O
+
+
+ winter
+ winter
+ 12884
+ 12890
+ NN
+ DATE
+ XXXX-WI
+ XXXX-WI
+
+
+ months
+ month
+ 12891
+ 12897
+ NNS
+ DURATION
+ PXM
+
+
+ .
+ .
+ 12897
+ 12898
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (VBP understand) (SBAR (IN that) (S (NP (NP (NP (PRP he)) (CC and) (NP (PRP$ his) (NN wife))) (, ,) (NP (NNP Sylvia)) (, ,)) (VP (VBP are) (ADVP (RB now)) (VP (VBG enjoying) (NP (NP (DT the) (JJ sunny) (NNS skies)) (PP (IN of) (NP (NNP Florida)))) (PP (IN for) (NP (NP (NNP NGRESSIONAL) (NNP RECORD-SENATE)) (NP (DT the) (NN winter) (NNS months))))))))) (. .)))
+
+
+ ROOT
+ understand
+
+
+ understand
+ I
+
+
+ enjoying
+ that
+
+
+ enjoying
+ he
+
+
+ he
+ and
+
+
+ wife
+ his
+
+
+ he
+ wife
+
+
+ he
+ Sylvia
+
+
+ enjoying
+ are
+
+
+ enjoying
+ now
+
+
+ understand
+ enjoying
+
+
+ skies
+ the
+
+
+ skies
+ sunny
+
+
+ enjoying
+ skies
+
+
+ skies
+ of
+
+
+ of
+ Florida
+
+
+ enjoying
+ for
+
+
+ RECORD-SENATE
+ NGRESSIONAL
+
+
+ for
+ RECORD-SENATE
+
+
+ months
+ the
+
+
+ months
+ winter
+
+
+ RECORD-SENATE
+ months
+
+
+
+
+ ROOT
+ understand
+
+
+ understand
+ I
+
+
+ enjoying
+ that
+
+
+ enjoying
+ he
+
+
+ wife
+ his
+
+
+ he
+ wife
+
+
+ he
+ Sylvia
+
+
+ enjoying
+ are
+
+
+ enjoying
+ now
+
+
+ understand
+ enjoying
+
+
+ skies
+ the
+
+
+ skies
+ sunny
+
+
+ enjoying
+ skies
+
+
+ skies
+ Florida
+
+
+ RECORD-SENATE
+ NGRESSIONAL
+
+
+ enjoying
+ RECORD-SENATE
+
+
+ months
+ the
+
+
+ months
+ winter
+
+
+ RECORD-SENATE
+ months
+
+
+
+
+ ROOT
+ understand
+
+
+ understand
+ I
+
+
+ enjoying
+ that
+
+
+ enjoying
+ he
+
+
+ wife
+ his
+
+
+ he
+ wife
+
+
+ enjoying
+ wife
+
+
+ he
+ Sylvia
+
+
+ enjoying
+ are
+
+
+ enjoying
+ now
+
+
+ understand
+ enjoying
+
+
+ skies
+ the
+
+
+ skies
+ sunny
+
+
+ enjoying
+ skies
+
+
+ skies
+ Florida
+
+
+ RECORD-SENATE
+ NGRESSIONAL
+
+
+ enjoying
+ RECORD-SENATE
+
+
+ months
+ the
+
+
+ months
+ winter
+
+
+ RECORD-SENATE
+ months
+
+
+
+
+
+
+ On
+ on
+ 12899
+ 12901
+ IN
+ O
+
+
+ behalf
+ behalf
+ 12902
+ 12908
+ NN
+ O
+
+
+ of
+ of
+ 12909
+ 12911
+ IN
+ O
+
+
+ all
+ all
+ 12912
+ 12915
+ DT
+ O
+
+
+ my
+ my
+ 12917
+ 12919
+ PRP$
+ O
+
+
+ colleagues
+ colleague
+ 12920
+ 12930
+ NNS
+ O
+
+
+ in
+ in
+ 12931
+ 12933
+ IN
+ O
+
+
+ Congress
+ Congress
+ 12934
+ 12942
+ NNP
+ ORGANIZATION
+
+
+ ,
+ ,
+ 12942
+ 12943
+ ,
+ O
+
+
+ I
+ I
+ 12944
+ 12945
+ PRP
+ O
+
+
+ wish
+ wish
+ 12946
+ 12950
+ VBP
+ O
+
+
+ Max
+ max
+ 12951
+ 12954
+ NN
+ PERSON
+
+
+ and
+ and
+ 12956
+ 12959
+ CC
+ O
+
+
+ Sylvia
+ Sylvia
+ 12960
+ 12966
+ NNP
+ PERSON
+
+
+ a
+ a
+ 12967
+ 12968
+ DT
+ O
+
+
+ most
+ most
+ 12969
+ 12973
+ RBS
+ O
+
+
+ happy
+ happy
+ 12974
+ 12979
+ JJ
+ O
+
+
+ and
+ and
+ 12980
+ 12983
+ CC
+ O
+
+
+ healthy
+ healthy
+ 12984
+ 12991
+ JJ
+ O
+
+
+ retirement
+ retirement
+ 12993
+ 13003
+ NN
+ O
+
+
+ .
+ .
+ 13003
+ 13004
+ .
+ O
+
+
+ (ROOT (S (PP (IN On) (NP (NP (NN behalf)) (PP (IN of) (NP (DT all) (PRP$ my) (NNS colleagues))) (PP (IN in) (NP (NNP Congress))))) (, ,) (NP (PRP I)) (VP (VBP wish) (NP (NP (NN Max)) (CC and) (NP (NP (NNP Sylvia)) (NP (DT a) (ADJP (RBS most) (JJ happy) (CC and) (JJ healthy)) (NN retirement))))) (. .)))
+
+
+ ROOT
+ wish
+
+
+ wish
+ On
+
+
+ On
+ behalf
+
+
+ behalf
+ of
+
+
+ colleagues
+ all
+
+
+ colleagues
+ my
+
+
+ of
+ colleagues
+
+
+ behalf
+ in
+
+
+ in
+ Congress
+
+
+ wish
+ I
+
+
+ wish
+ Max
+
+
+ Max
+ and
+
+
+ Max
+ Sylvia
+
+
+ retirement
+ a
+
+
+ happy
+ most
+
+
+ retirement
+ happy
+
+
+ happy
+ and
+
+
+ happy
+ healthy
+
+
+ Sylvia
+ retirement
+
+
+
+
+ ROOT
+ wish
+
+
+ colleagues
+ all
+
+
+ colleagues
+ my
+
+
+ wish
+ colleagues
+
+
+ wish
+ Congress
+
+
+ wish
+ I
+
+
+ wish
+ Max
+
+
+ Max
+ Sylvia
+
+
+ retirement
+ a
+
+
+ happy
+ most
+
+
+ retirement
+ happy
+
+
+ happy
+ healthy
+
+
+ Sylvia
+ retirement
+
+
+
+
+ ROOT
+ wish
+
+
+ colleagues
+ all
+
+
+ colleagues
+ my
+
+
+ wish
+ colleagues
+
+
+ wish
+ Congress
+
+
+ wish
+ I
+
+
+ wish
+ Max
+
+
+ wish
+ Sylvia
+
+
+ Max
+ Sylvia
+
+
+ retirement
+ a
+
+
+ happy
+ most
+
+
+ retirement
+ happy
+
+
+ happy
+ healthy
+
+
+ retirement
+ healthy
+
+
+ Sylvia
+ retirement
+
+
+
+
+
+
+ He
+ he
+ 13005
+ 13007
+ PRP
+ O
+
+
+ will
+ will
+ 13008
+ 13012
+ MD
+ O
+
+
+ be
+ be
+ 13013
+ 13015
+ VB
+ O
+
+
+ missed
+ miss
+ 13016
+ 13022
+ VBN
+ O
+
+
+ .
+ .
+ 13022
+ 13023
+ .
+ O
+
+
+ (ROOT (S (NP (PRP He)) (VP (MD will) (VP (VB be) (VP (VBN missed)))) (. .)))
+
+
+ ROOT
+ missed
+
+
+ missed
+ He
+
+
+ missed
+ will
+
+
+ missed
+ be
+
+
+
+
+ ROOT
+ missed
+
+
+ missed
+ He
+
+
+ missed
+ will
+
+
+ missed
+ be
+
+
+
+
+ ROOT
+ missed
+
+
+ missed
+ He
+
+
+ missed
+ will
+
+
+ missed
+ be
+
+
+
+
+
+
+ I
+ I
+ 13027
+ 13028
+ PRP
+ O
+
+
+ also
+ also
+ 13029
+ 13033
+ RB
+ O
+
+
+ want
+ want
+ 13034
+ 13038
+ VBP
+ O
+
+
+ to
+ to
+ 13039
+ 13041
+ TO
+ O
+
+
+ take
+ take
+ 13042
+ 13046
+ VB
+ O
+
+
+ this
+ this
+ 13047
+ 13051
+ DT
+ O
+
+
+ opportunity
+ opportunity
+ 13052
+ 13063
+ NN
+ O
+
+
+ to
+ to
+ 13065
+ 13067
+ TO
+ O
+
+
+ extend
+ extend
+ 13068
+ 13074
+ VB
+ O
+
+
+ to
+ to
+ 13075
+ 13077
+ TO
+ O
+
+
+ his
+ he
+ 13078
+ 13081
+ PRP$
+ O
+
+
+ successor
+ successor
+ 13082
+ 13091
+ NN
+ O
+
+
+ ,
+ ,
+ 13091
+ 13092
+ ,
+ O
+
+
+ Larry
+ Larry
+ 13093
+ 13098
+ NNP
+ PERSON
+
+
+ Jane
+ Jane
+ 13099
+ 13103
+ NNP
+ PERSON
+
+
+ -
+ -
+ 13103
+ 13104
+ :
+ O
+
+
+ zich
+ zich
+ 13106
+ 13110
+ NN
+ O
+
+
+ ,
+ ,
+ 13110
+ 13111
+ ,
+ O
+
+
+ the
+ the
+ 13112
+ 13115
+ DT
+ O
+
+
+ very
+ very
+ 13116
+ 13120
+ RB
+ O
+
+
+ best
+ best
+ 13121
+ 13125
+ JJS
+ O
+
+
+ wishes
+ wish
+ 13126
+ 13132
+ NNS
+ O
+
+
+ in
+ in
+ 13133
+ 13135
+ IN
+ O
+
+
+ his
+ he
+ 13136
+ 13139
+ PRP$
+ O
+
+
+ new
+ new
+ 13140
+ 13143
+ JJ
+ O
+
+
+ role
+ role
+ 13145
+ 13149
+ NN
+ O
+
+
+ .
+ .
+ 13149
+ 13150
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (ADVP (RB also)) (VP (VBP want) (S (VP (TO to) (VP (VB take) (NP (DT this) (NN opportunity) (S (VP (TO to) (VP (VB extend) (PP (TO to) (NP (NP (PRP$ his) (NN successor)) (, ,) (NP (NP (NNP Larry) (NNP Jane)) (: -) (NP (NP (NN zich)) (, ,) (NP (NP (DT the) (ADJP (RB very) (JJS best)) (NNS wishes)) (PP (IN in) (NP (PRP$ his) (JJ new) (NN role)))))))))))))))) (. .)))
+
+
+ ROOT
+ want
+
+
+ want
+ I
+
+
+ want
+ also
+
+
+ take
+ to
+
+
+ want
+ take
+
+
+ opportunity
+ this
+
+
+ take
+ opportunity
+
+
+ extend
+ to
+
+
+ opportunity
+ extend
+
+
+ extend
+ to
+
+
+ successor
+ his
+
+
+ to
+ successor
+
+
+ Jane
+ Larry
+
+
+ successor
+ Jane
+
+
+ Jane
+ zich
+
+
+ wishes
+ the
+
+
+ best
+ very
+
+
+ wishes
+ best
+
+
+ zich
+ wishes
+
+
+ wishes
+ in
+
+
+ role
+ his
+
+
+ role
+ new
+
+
+ in
+ role
+
+
+
+
+ ROOT
+ want
+
+
+ want
+ I
+
+
+ want
+ also
+
+
+ take
+ to
+
+
+ want
+ take
+
+
+ opportunity
+ this
+
+
+ take
+ opportunity
+
+
+ extend
+ to
+
+
+ opportunity
+ extend
+
+
+ successor
+ his
+
+
+ extend
+ successor
+
+
+ Jane
+ Larry
+
+
+ successor
+ Jane
+
+
+ Jane
+ zich
+
+
+ wishes
+ the
+
+
+ best
+ very
+
+
+ wishes
+ best
+
+
+ zich
+ wishes
+
+
+ role
+ his
+
+
+ role
+ new
+
+
+ wishes
+ role
+
+
+
+
+ ROOT
+ want
+
+
+ want
+ I
+
+
+ want
+ also
+
+
+ take
+ to
+
+
+ want
+ take
+
+
+ opportunity
+ this
+
+
+ take
+ opportunity
+
+
+ extend
+ to
+
+
+ opportunity
+ extend
+
+
+ successor
+ his
+
+
+ extend
+ successor
+
+
+ Jane
+ Larry
+
+
+ successor
+ Jane
+
+
+ Jane
+ zich
+
+
+ wishes
+ the
+
+
+ best
+ very
+
+
+ wishes
+ best
+
+
+ zich
+ wishes
+
+
+ role
+ his
+
+
+ role
+ new
+
+
+ wishes
+ role
+
+
+
+
+
+
+ I
+ I
+ 13151
+ 13152
+ PRP
+ O
+
+
+ know
+ know
+ 13153
+ 13157
+ VBP
+ O
+
+
+ he
+ he
+ 13158
+ 13160
+ PRP
+ O
+
+
+ is
+ be
+ 13161
+ 13163
+ VBZ
+ O
+
+
+ up
+ up
+ 13164
+ 13166
+ RB
+ O
+
+
+ to
+ to
+ 13167
+ 13169
+ TO
+ O
+
+
+ the
+ the
+ 13170
+ 13173
+ DT
+ O
+
+
+ task
+ task
+ 13174
+ 13178
+ NN
+ O
+
+
+ .
+ .
+ 13178
+ 13179
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (VBP know) (SBAR (S (NP (PRP he)) (VP (VBZ is) (ADVP (RB up) (PP (TO to) (NP (DT the) (NN task)))))))) (. .)))
+
+
+ ROOT
+ know
+
+
+ know
+ I
+
+
+ is
+ he
+
+
+ know
+ is
+
+
+ is
+ up
+
+
+ up
+ to
+
+
+ task
+ the
+
+
+ to
+ task
+
+
+
+
+ ROOT
+ know
+
+
+ know
+ I
+
+
+ is
+ he
+
+
+ know
+ is
+
+
+ is
+ up
+
+
+ task
+ the
+
+
+ up
+ task
+
+
+
+
+ ROOT
+ know
+
+
+ know
+ I
+
+
+ is
+ he
+
+
+ know
+ is
+
+
+ is
+ up
+
+
+ task
+ the
+
+
+ up
+ task
+
+
+
+
+
+
+ AN
+ a
+ 13182
+ 13184
+ DT
+ O
+
+
+ ENVIRONMENTAL
+ environmental
+ 13185
+ 13198
+ JJ
+ O
+
+
+ DIVIDEND
+ dividend
+ 13199
+ 13207
+ NN
+ O
+
+
+ :
+ :
+ 13207
+ 13208
+ :
+ O
+
+
+ CAPITALIZING
+ capitalize
+ 13212
+ 13224
+ VBG
+ O
+
+
+ ON
+ on
+ 13225
+ 13227
+ IN
+ O
+
+
+ NEW
+ NEW
+ 13228
+ 13231
+ NNP
+ O
+
+
+ OPPOR
+ OPPOR
+ 13232
+ 13237
+ NNP
+ O
+
+
+ -
+ -
+ 13237
+ 13238
+ :
+ O
+
+
+ TUNITIES
+ TUNITIES
+ 13242
+ 13250
+ NNP
+ O
+
+
+ FOR
+ for
+ 13251
+ 13254
+ IN
+ O
+
+
+ INTERNATION
+ INTERNATION
+ 13255
+ 13266
+ NNP
+ ORGANIZATION
+
+
+ -
+ -
+ 13266
+ 13267
+ :
+ O
+
+
+ AL
+ AL
+ 13271
+ 13273
+ NNP
+ O
+
+
+ ACTION
+ ACTION
+ 13274
+ 13280
+ NNP
+ O
+
+
+ Mr.
+ Mr.
+ 13284
+ 13287
+ NNP
+ O
+
+
+ MITCHELL
+ MITCHELL
+ 13288
+ 13296
+ NNP
+ PERSON
+
+
+ .
+ .
+ 13296
+ 13297
+ .
+ O
+
+
+ (ROOT (NP (NP (DT AN) (JJ ENVIRONMENTAL) (NN DIVIDEND)) (: :) (NP (NP (VBG CAPITALIZING)) (PP (IN ON) (NP (NNP NEW) (NNP OPPOR)))) (: -) (NP (NP (NNP TUNITIES)) (PP (IN FOR) (NP (NNP INTERNATION)))) (: -) (NP (NP (NNP AL) (NNP ACTION)) (NP (NNP Mr.) (NNP MITCHELL))) (. .)))
+
+
+ ROOT
+ DIVIDEND
+
+
+ DIVIDEND
+ AN
+
+
+ DIVIDEND
+ ENVIRONMENTAL
+
+
+ DIVIDEND
+ CAPITALIZING
+
+
+ CAPITALIZING
+ ON
+
+
+ OPPOR
+ NEW
+
+
+ ON
+ OPPOR
+
+
+ DIVIDEND
+ TUNITIES
+
+
+ TUNITIES
+ FOR
+
+
+ FOR
+ INTERNATION
+
+
+ ACTION
+ AL
+
+
+ DIVIDEND
+ ACTION
+
+
+ MITCHELL
+ Mr.
+
+
+ ACTION
+ MITCHELL
+
+
+
+
+ ROOT
+ DIVIDEND
+
+
+ DIVIDEND
+ AN
+
+
+ DIVIDEND
+ ENVIRONMENTAL
+
+
+ DIVIDEND
+ CAPITALIZING
+
+
+ OPPOR
+ NEW
+
+
+ CAPITALIZING
+ OPPOR
+
+
+ DIVIDEND
+ TUNITIES
+
+
+ TUNITIES
+ INTERNATION
+
+
+ ACTION
+ AL
+
+
+ DIVIDEND
+ ACTION
+
+
+ MITCHELL
+ Mr.
+
+
+ ACTION
+ MITCHELL
+
+
+
+
+ ROOT
+ DIVIDEND
+
+
+ DIVIDEND
+ AN
+
+
+ DIVIDEND
+ ENVIRONMENTAL
+
+
+ DIVIDEND
+ CAPITALIZING
+
+
+ OPPOR
+ NEW
+
+
+ CAPITALIZING
+ OPPOR
+
+
+ DIVIDEND
+ TUNITIES
+
+
+ TUNITIES
+ INTERNATION
+
+
+ ACTION
+ AL
+
+
+ DIVIDEND
+ ACTION
+
+
+ MITCHELL
+ Mr.
+
+
+ ACTION
+ MITCHELL
+
+
+
+
+
+
+ Mr.
+ Mr.
+ 13298
+ 13301
+ NNP
+ O
+
+
+ President
+ President
+ 13302
+ 13311
+ NNP
+ O
+
+
+ ,
+ ,
+ 13311
+ 13312
+ ,
+ O
+
+
+ I
+ I
+ 13313
+ 13314
+ PRP
+ O
+
+
+ ask
+ ask
+ 13316
+ 13319
+ VBP
+ O
+
+
+ unanimous
+ unanimous
+ 13320
+ 13329
+ JJ
+ O
+
+
+ consent
+ consent
+ 13330
+ 13337
+ NN
+ O
+
+
+ that
+ that
+ 13338
+ 13342
+ IN
+ O
+
+
+ a
+ a
+ 13343
+ 13344
+ DT
+ O
+
+
+ speech
+ speech
+ 13345
+ 13351
+ NN
+ O
+
+
+ given
+ give
+ 13353
+ 13358
+ VBN
+ O
+
+
+ by
+ by
+ 13359
+ 13361
+ IN
+ O
+
+
+ the
+ the
+ 13362
+ 13365
+ DT
+ O
+
+
+ distinguished
+ distinguished
+ 13366
+ 13379
+ JJ
+ O
+
+
+ chairman
+ chairman
+ 13380
+ 13388
+ NN
+ O
+
+
+ of
+ of
+ 13390
+ 13392
+ IN
+ O
+
+
+ the
+ the
+ 13393
+ 13396
+ DT
+ O
+
+
+ Senate
+ Senate
+ 13397
+ 13403
+ NNP
+ ORGANIZATION
+
+
+ Foreign
+ Foreign
+ 13404
+ 13411
+ NNP
+ ORGANIZATION
+
+
+ Relations
+ Relations
+ 13412
+ 13421
+ NNP
+ ORGANIZATION
+
+
+ Com
+ Com
+ 13422
+ 13425
+ NNP
+ ORGANIZATION
+
+
+ -
+ -
+ 13425
+ 13426
+ :
+ O
+
+
+ mittee
+ mittee
+ 13428
+ 13434
+ NN
+ O
+
+
+ ,
+ ,
+ 13434
+ 13435
+ ,
+ O
+
+
+ Senator
+ Senator
+ 13436
+ 13443
+ NNP
+ O
+
+
+ CLAIBORNE
+ CLAIBORNE
+ 13444
+ 13453
+ NNP
+ O
+
+
+ PELL
+ PELL
+ 13454
+ 13458
+ NNP
+ O
+
+
+ of
+ of
+ 13459
+ 13461
+ IN
+ O
+
+
+ Rhode
+ Rhode
+ 13463
+ 13468
+ NNP
+ LOCATION
+
+
+ Island
+ Island
+ 13469
+ 13475
+ NNP
+ LOCATION
+
+
+ ,
+ ,
+ 13475
+ 13476
+ ,
+ O
+
+
+ be
+ be
+ 13477
+ 13479
+ VB
+ O
+
+
+ inserted
+ insert
+ 13480
+ 13488
+ VBN
+ O
+
+
+ in
+ in
+ 13489
+ 13491
+ IN
+ O
+
+
+ the
+ the
+ 13492
+ 13495
+ DT
+ O
+
+
+ RECORD
+ record
+ 13497
+ 13503
+ NN
+ O
+
+
+ .
+ .
+ 13503
+ 13504
+ .
+ O
+
+
+ (ROOT (S (NP (NNP Mr.) (NNP President)) (PRN (, ,) (S (NP (PRP I)) (VP (VBP ask) (NP (JJ unanimous) (NN consent)) (SBAR (IN that) (S (NP (DT a) (NN speech)) (VP (VBN given) (PP (IN by) (NP (NP (NP (DT the) (JJ distinguished) (NN chairman)) (PP (IN of) (NP (DT the) (NNP Senate) (NNP Foreign) (NNP Relations) (NNP Com)))) (: -) (NP (NP (NN mittee)) (, ,) (NP (NP (NNP Senator) (NNP CLAIBORNE) (NNP PELL)) (PP (IN of) (NP (NNP Rhode) (NNP Island)))))))))))) (, ,)) (VP (VB be) (VP (VBN inserted) (PP (IN in) (NP (DT the) (NN RECORD))))) (. .)))
+
+
+ ROOT
+ inserted
+
+
+ President
+ Mr.
+
+
+ inserted
+ President
+
+
+ ask
+ I
+
+
+ inserted
+ ask
+
+
+ consent
+ unanimous
+
+
+ ask
+ consent
+
+
+ given
+ that
+
+
+ speech
+ a
+
+
+ given
+ speech
+
+
+ ask
+ given
+
+
+ given
+ by
+
+
+ chairman
+ the
+
+
+ chairman
+ distinguished
+
+
+ by
+ chairman
+
+
+ chairman
+ of
+
+
+ Com
+ the
+
+
+ Com
+ Senate
+
+
+ Com
+ Foreign
+
+
+ Com
+ Relations
+
+
+ of
+ Com
+
+
+ chairman
+ mittee
+
+
+ PELL
+ Senator
+
+
+ PELL
+ CLAIBORNE
+
+
+ mittee
+ PELL
+
+
+ PELL
+ of
+
+
+ Island
+ Rhode
+
+
+ of
+ Island
+
+
+ inserted
+ be
+
+
+ inserted
+ in
+
+
+ RECORD
+ the
+
+
+ in
+ RECORD
+
+
+
+
+ ROOT
+ inserted
+
+
+ President
+ Mr.
+
+
+ inserted
+ President
+
+
+ ask
+ I
+
+
+ inserted
+ ask
+
+
+ consent
+ unanimous
+
+
+ ask
+ consent
+
+
+ given
+ that
+
+
+ speech
+ a
+
+
+ given
+ speech
+
+
+ ask
+ given
+
+
+ chairman
+ the
+
+
+ chairman
+ distinguished
+
+
+ given
+ chairman
+
+
+ Com
+ the
+
+
+ Com
+ Senate
+
+
+ Com
+ Foreign
+
+
+ Com
+ Relations
+
+
+ chairman
+ Com
+
+
+ chairman
+ mittee
+
+
+ PELL
+ Senator
+
+
+ PELL
+ CLAIBORNE
+
+
+ mittee
+ PELL
+
+
+ Island
+ Rhode
+
+
+ PELL
+ Island
+
+
+ inserted
+ be
+
+
+ RECORD
+ the
+
+
+ inserted
+ RECORD
+
+
+
+
+ ROOT
+ inserted
+
+
+ President
+ Mr.
+
+
+ inserted
+ President
+
+
+ ask
+ I
+
+
+ inserted
+ ask
+
+
+ consent
+ unanimous
+
+
+ ask
+ consent
+
+
+ given
+ that
+
+
+ speech
+ a
+
+
+ given
+ speech
+
+
+ ask
+ given
+
+
+ chairman
+ the
+
+
+ chairman
+ distinguished
+
+
+ given
+ chairman
+
+
+ Com
+ the
+
+
+ Com
+ Senate
+
+
+ Com
+ Foreign
+
+
+ Com
+ Relations
+
+
+ chairman
+ Com
+
+
+ chairman
+ mittee
+
+
+ PELL
+ Senator
+
+
+ PELL
+ CLAIBORNE
+
+
+ mittee
+ PELL
+
+
+ Island
+ Rhode
+
+
+ PELL
+ Island
+
+
+ inserted
+ be
+
+
+ RECORD
+ the
+
+
+ inserted
+ RECORD
+
+
+
+
+
+
+ The
+ the
+ 13508
+ 13511
+ DT
+ O
+
+
+ honorable
+ honorable
+ 13512
+ 13521
+ JJ
+ O
+
+
+ chairman
+ chairman
+ 13522
+ 13530
+ NN
+ O
+
+
+ of
+ of
+ 13531
+ 13533
+ IN
+ O
+
+
+ the
+ the
+ 13534
+ 13537
+ DT
+ O
+
+
+ For
+ for
+ 13538
+ 13541
+ IN
+ O
+
+
+ -
+ -
+ 13541
+ 13542
+ :
+ O
+
+
+ eign
+ eign
+ 13544
+ 13548
+ NN
+ O
+
+
+ Relations
+ Relations
+ 13549
+ 13558
+ NNP
+ ORGANIZATION
+
+
+ Committee
+ Committee
+ 13559
+ 13568
+ NNP
+ ORGANIZATION
+
+
+ recently
+ recently
+ 13569
+ 13577
+ RB
+ DATE
+ PAST_REF
+ PAST_REF
+
+
+ ad
+ ad
+ 13578
+ 13580
+ NN
+ O
+
+
+ -
+ -
+ 13580
+ 13581
+ :
+ O
+
+
+ dressed
+ dress
+ 13583
+ 13590
+ VBN
+ O
+
+
+ the
+ the
+ 13591
+ 13594
+ DT
+ O
+
+
+ Global
+ global
+ 13595
+ 13601
+ JJ
+ O
+
+
+ Forum
+ Forum
+ 13602
+ 13607
+ NNP
+ O
+
+
+ on
+ on
+ 13608
+ 13610
+ IN
+ O
+
+
+ Environ
+ Environ
+ 13611
+ 13618
+ NNP
+ LOCATION
+
+
+ -
+ -
+ 13618
+ 13619
+ :
+ O
+
+
+ ment
+ ment
+ 13621
+ 13625
+ NN
+ O
+
+
+ and
+ and
+ 13626
+ 13629
+ CC
+ O
+
+
+ Development
+ development
+ 13630
+ 13641
+ NN
+ O
+
+
+ for
+ for
+ 13642
+ 13645
+ IN
+ O
+
+
+ Survival
+ Survival
+ 13646
+ 13654
+ NNP
+ O
+
+
+ in
+ in
+ 13655
+ 13657
+ IN
+ O
+
+
+ Moscow
+ Moscow
+ 13659
+ 13665
+ NNP
+ LOCATION
+
+
+ .
+ .
+ 13665
+ 13666
+ .
+ O
+
+
+ (ROOT (X (X (NP (NP (DT The) (JJ honorable) (NN chairman)) (PP (IN of) (FRAG (X (X (DT the)) (PP (IN For))) (: -) (NP (NN eign))))) (NP (NNP Relations) (NNP Committee)) (NP (NP (RB recently)) (NP (NN ad)))) (: -) (VP (VBN dressed) (NP (NP (NP (DT the) (JJ Global) (NNP Forum)) (PP (IN on) (NP (NNP Environ)))) (: -) (NP (NP (NN ment) (CC and) (NN Development)) (PP (IN for) (NP (NNP Survival))))) (PP (IN in) (NP (NNP Moscow)))) (. .)))
+
+
+ ROOT
+ dressed
+
+
+ chairman
+ The
+
+
+ chairman
+ honorable
+
+
+ recently
+ chairman
+
+
+ chairman
+ of
+
+
+ For
+ the
+
+
+ eign
+ For
+
+
+ of
+ eign
+
+
+ Committee
+ Relations
+
+
+ recently
+ Committee
+
+
+ dressed
+ recently
+
+
+ recently
+ ad
+
+
+ Forum
+ the
+
+
+ Forum
+ Global
+
+
+ dressed
+ Forum
+
+
+ Forum
+ on
+
+
+ on
+ Environ
+
+
+ Forum
+ ment
+
+
+ ment
+ and
+
+
+ ment
+ Development
+
+
+ ment
+ for
+
+
+ for
+ Survival
+
+
+ dressed
+ in
+
+
+ in
+ Moscow
+
+
+
+
+ ROOT
+ dressed
+
+
+ chairman
+ The
+
+
+ chairman
+ honorable
+
+
+ recently
+ chairman
+
+
+ chairman
+ of
+
+
+ For
+ the
+
+
+ eign
+ For
+
+
+ of
+ eign
+
+
+ Committee
+ Relations
+
+
+ recently
+ Committee
+
+
+ dressed
+ recently
+
+
+ recently
+ ad
+
+
+ Forum
+ the
+
+
+ Forum
+ Global
+
+
+ dressed
+ Forum
+
+
+ Forum
+ Environ
+
+
+ Forum
+ ment
+
+
+ ment
+ Development
+
+
+ ment
+ Survival
+
+
+ dressed
+ Moscow
+
+
+
+
+ ROOT
+ dressed
+
+
+ chairman
+ The
+
+
+ chairman
+ honorable
+
+
+ recently
+ chairman
+
+
+ chairman
+ of
+
+
+ For
+ the
+
+
+ eign
+ For
+
+
+ of
+ eign
+
+
+ Committee
+ Relations
+
+
+ recently
+ Committee
+
+
+ dressed
+ recently
+
+
+ recently
+ ad
+
+
+ Forum
+ the
+
+
+ Forum
+ Global
+
+
+ dressed
+ Forum
+
+
+ Forum
+ Environ
+
+
+ Forum
+ ment
+
+
+ Forum
+ Development
+
+
+ ment
+ Development
+
+
+ ment
+ Survival
+
+
+ dressed
+ Moscow
+
+
+
+
+
+
+ His
+ he
+ 13667
+ 13670
+ PRP$
+ O
+
+
+ remarks
+ remark
+ 13671
+ 13678
+ NNS
+ O
+
+
+ focus
+ focus
+ 13679
+ 13684
+ VBP
+ O
+
+
+ on
+ on
+ 13685
+ 13687
+ IN
+ O
+
+
+ the
+ the
+ 13688
+ 13691
+ DT
+ O
+
+
+ cat
+ cat
+ 13692
+ 13695
+ NN
+ O
+
+
+ -
+ -
+ 13695
+ 13696
+ :
+ O
+
+
+ astrophic
+ astrophic
+ 13698
+ 13707
+ JJ
+ O
+
+
+ threats
+ threat
+ 13708
+ 13715
+ NNS
+ O
+
+
+ to
+ to
+ 13716
+ 13718
+ TO
+ O
+
+
+ the
+ the
+ 13719
+ 13722
+ DT
+ O
+
+
+ world
+ world
+ 13723
+ 13728
+ NN
+ O
+
+
+ 's
+ 's
+ 13728
+ 13730
+ POS
+ O
+
+
+ envi
+ envi
+ 13731
+ 13735
+ SYM
+ O
+
+
+ -
+ -
+ 13735
+ 13736
+ :
+ O
+
+
+ ronment-including
+ ronment-including
+ 13738
+ 13755
+ NN
+ O
+
+
+ global
+ global
+ 13760
+ 13766
+ JJ
+ O
+
+
+ climate
+ climate
+ 13769
+ 13776
+ NN
+ O
+
+
+ change
+ change
+ 13778
+ 13784
+ NN
+ O
+
+
+ ,
+ ,
+ 13784
+ 13785
+ ,
+ O
+
+
+ ozone
+ ozone
+ 13786
+ 13791
+ NN
+ O
+
+
+ depletion
+ depletion
+ 13792
+ 13801
+ NN
+ O
+
+
+ and
+ and
+ 13802
+ 13805
+ CC
+ O
+
+
+ a
+ a
+ 13806
+ 13807
+ DT
+ O
+
+
+ host
+ host
+ 13808
+ 13812
+ NN
+ O
+
+
+ of
+ of
+ 13813
+ 13815
+ IN
+ O
+
+
+ problems
+ problem
+ 13817
+ 13825
+ NNS
+ O
+
+
+ that
+ that
+ 13826
+ 13830
+ WDT
+ O
+
+
+ require
+ require
+ 13831
+ 13838
+ VBP
+ O
+
+
+ international
+ international
+ 13839
+ 13852
+ JJ
+ O
+
+
+ cooperation
+ cooperation
+ 13854
+ 13865
+ NN
+ O
+
+
+ .
+ .
+ 13865
+ 13866
+ .
+ O
+
+
+ (ROOT (S (NP (PRP$ His) (NNS remarks)) (VP (VBP focus) (PP (IN on) (NP (NP (DT the) (NN cat)) (: -) (NP (NP (JJ astrophic) (NNS threats)) (PP (TO to) (NP (NP (DT the) (NN world) (POS 's)) (NP (FRAG (X (SYM envi)) (: -) (NP (NN ronment-including))))))))) (NP (NP (JJ global) (NN climate) (NN change)) (, ,) (NP (NN ozone) (NN depletion)) (CC and) (NP (NP (DT a) (NN host)) (PP (IN of) (NP (NP (NNS problems)) (SBAR (WHNP (WDT that)) (S (VP (VBP require) (NP (JJ international) (NN cooperation)))))))))) (. .)))
+
+
+ ROOT
+ focus
+
+
+ remarks
+ His
+
+
+ focus
+ remarks
+
+
+ focus
+ on
+
+
+ cat
+ the
+
+
+ on
+ cat
+
+
+ threats
+ astrophic
+
+
+ cat
+ threats
+
+
+ threats
+ to
+
+
+ world
+ the
+
+
+ to
+ world
+
+
+ world
+ 's
+
+
+ ronment-including
+ envi
+
+
+ world
+ ronment-including
+
+
+ change
+ global
+
+
+ change
+ climate
+
+
+ focus
+ change
+
+
+ depletion
+ ozone
+
+
+ change
+ depletion
+
+
+ change
+ and
+
+
+ host
+ a
+
+
+ change
+ host
+
+
+ host
+ of
+
+
+ of
+ problems
+
+
+ require
+ that
+
+
+ problems
+ require
+
+
+ cooperation
+ international
+
+
+ require
+ cooperation
+
+
+
+
+ ROOT
+ focus
+
+
+ remarks
+ His
+
+
+ focus
+ remarks
+
+
+ cat
+ the
+
+
+ focus
+ cat
+
+
+ threats
+ astrophic
+
+
+ cat
+ threats
+
+
+ world
+ the
+
+
+ threats
+ world
+
+
+ world
+ 's
+
+
+ ronment-including
+ envi
+
+
+ world
+ ronment-including
+
+
+ change
+ global
+
+
+ change
+ climate
+
+
+ focus
+ change
+
+
+ depletion
+ ozone
+
+
+ change
+ depletion
+
+
+ host
+ a
+
+
+ change
+ host
+
+
+ host
+ problems
+
+
+ require
+ that
+
+
+ problems
+ require
+
+
+ cooperation
+ international
+
+
+ require
+ cooperation
+
+
+
+
+ ROOT
+ focus
+
+
+ remarks
+ His
+
+
+ focus
+ remarks
+
+
+ cat
+ the
+
+
+ focus
+ cat
+
+
+ threats
+ astrophic
+
+
+ cat
+ threats
+
+
+ world
+ the
+
+
+ threats
+ world
+
+
+ world
+ 's
+
+
+ ronment-including
+ envi
+
+
+ world
+ ronment-including
+
+
+ change
+ global
+
+
+ change
+ climate
+
+
+ focus
+ change
+
+
+ depletion
+ ozone
+
+
+ focus
+ depletion
+
+
+ change
+ depletion
+
+
+ host
+ a
+
+
+ focus
+ host
+
+
+ change
+ host
+
+
+ host
+ problems
+
+
+ require
+ that
+
+
+ problems
+ require
+
+
+ cooperation
+ international
+
+
+ require
+ cooperation
+
+
+
+
+
+
+ I
+ I
+ 13870
+ 13871
+ PRP
+ O
+
+
+ would
+ would
+ 13872
+ 13877
+ MD
+ O
+
+
+ like
+ like
+ 13878
+ 13882
+ VB
+ O
+
+
+ to
+ to
+ 13883
+ 13885
+ TO
+ O
+
+
+ call
+ call
+ 13886
+ 13890
+ VB
+ O
+
+
+ this
+ this
+ 13891
+ 13895
+ DT
+ O
+
+
+ important
+ important
+ 13896
+ 13905
+ JJ
+ O
+
+
+ speech
+ speech
+ 13907
+ 13913
+ NN
+ O
+
+
+ to
+ to
+ 13914
+ 13916
+ TO
+ O
+
+
+ the
+ the
+ 13917
+ 13920
+ DT
+ O
+
+
+ attention
+ attention
+ 13921
+ 13930
+ NN
+ O
+
+
+ of
+ of
+ 13931
+ 13933
+ IN
+ O
+
+
+ my
+ my
+ 13934
+ 13936
+ PRP$
+ O
+
+
+ col
+ col
+ 13937
+ 13940
+ NN
+ O
+
+
+ -
+ -
+ 13940
+ 13941
+ :
+ O
+
+
+ leagues
+ league
+ 13943
+ 13950
+ NNS
+ O
+
+
+ .
+ .
+ 13950
+ 13951
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (MD would) (VP (VB like) (S (VP (TO to) (VP (VB call) (NP (DT this) (JJ important) (NN speech)) (PP (TO to) (NP (NP (NP (DT the) (NN attention)) (PP (IN of) (NP (PRP$ my) (NN col)))) (: -) (NP (NNS leagues))))))))) (. .)))
+
+
+ ROOT
+ like
+
+
+ like
+ I
+
+
+ like
+ would
+
+
+ call
+ to
+
+
+ like
+ call
+
+
+ speech
+ this
+
+
+ speech
+ important
+
+
+ call
+ speech
+
+
+ call
+ to
+
+
+ attention
+ the
+
+
+ to
+ attention
+
+
+ attention
+ of
+
+
+ col
+ my
+
+
+ of
+ col
+
+
+ attention
+ leagues
+
+
+
+
+ ROOT
+ like
+
+
+ like
+ I
+
+
+ like
+ would
+
+
+ call
+ to
+
+
+ like
+ call
+
+
+ speech
+ this
+
+
+ speech
+ important
+
+
+ call
+ speech
+
+
+ attention
+ the
+
+
+ call
+ attention
+
+
+ col
+ my
+
+
+ attention
+ col
+
+
+ attention
+ leagues
+
+
+
+
+ ROOT
+ like
+
+
+ like
+ I
+
+
+ like
+ would
+
+
+ call
+ to
+
+
+ like
+ call
+
+
+ speech
+ this
+
+
+ speech
+ important
+
+
+ call
+ speech
+
+
+ attention
+ the
+
+
+ call
+ attention
+
+
+ col
+ my
+
+
+ attention
+ col
+
+
+ attention
+ leagues
+
+
+
+
+
+
+ Not
+ not
+ 13952
+ 13955
+ RB
+ O
+
+
+ only
+ only
+ 13956
+ 13960
+ RB
+ O
+
+
+ does
+ do
+ 13961
+ 13965
+ VBZ
+ O
+
+
+ it
+ it
+ 13966
+ 13968
+ PRP
+ O
+
+
+ deal
+ deal
+ 13969
+ 13973
+ VB
+ O
+
+
+ with
+ with
+ 13974
+ 13978
+ IN
+ O
+
+
+ one
+ one
+ 13979
+ 13982
+ CD
+ NUMBER
+ 1.0
+
+
+ of
+ of
+ 13984
+ 13986
+ IN
+ O
+
+
+ the
+ the
+ 13987
+ 13990
+ DT
+ O
+
+
+ most
+ most
+ 13991
+ 13995
+ RBS
+ O
+
+
+ significant
+ significant
+ 13996
+ 14007
+ JJ
+ O
+
+
+ problems
+ problem
+ 14008
+ 14016
+ NNS
+ O
+
+
+ of
+ of
+ 14017
+ 14019
+ IN
+ O
+
+
+ our
+ we
+ 14021
+ 14024
+ PRP$
+ O
+
+
+ times
+ time
+ 14025
+ 14030
+ NNS
+ O
+
+
+ ,
+ ,
+ 14030
+ 14031
+ ,
+ O
+
+
+ it
+ it
+ 14032
+ 14034
+ PRP
+ O
+
+
+ does
+ do
+ 14035
+ 14039
+ VBZ
+ O
+
+
+ so
+ so
+ 14040
+ 14042
+ RB
+ O
+
+
+ with
+ with
+ 14043
+ 14047
+ IN
+ O
+
+
+ eloquence
+ eloquence
+ 14048
+ 14057
+ NN
+ O
+
+
+ and
+ and
+ 14059
+ 14062
+ CC
+ O
+
+
+ clarity
+ clarity
+ 14063
+ 14070
+ NN
+ O
+
+
+ .
+ .
+ 14070
+ 14071
+ .
+ O
+
+
+ (ROOT (S (SINV (CONJP (RB Not) (RB only)) (VBZ does) (NP (PRP it)) (VP (VB deal) (PP (IN with) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (RBS most) (JJ significant) (NNS problems)) (PP (IN of) (NP (PRP$ our) (NNS times))))))))) (, ,) (NP (PRP it)) (VP (VBZ does) (ADVP (RB so)) (PP (IN with) (NP (NN eloquence) (CC and) (NN clarity)))) (. .)))
+
+
+ ROOT
+ does
+
+
+ only
+ Not
+
+
+ deal
+ only
+
+
+ deal
+ does
+
+
+ deal
+ it
+
+
+ does
+ deal
+
+
+ deal
+ with
+
+
+ with
+ one
+
+
+ one
+ of
+
+
+ problems
+ the
+
+
+ problems
+ most
+
+
+ problems
+ significant
+
+
+ of
+ problems
+
+
+ problems
+ of
+
+
+ times
+ our
+
+
+ of
+ times
+
+
+ does
+ it
+
+
+ does
+ so
+
+
+ does
+ with
+
+
+ with
+ eloquence
+
+
+ eloquence
+ and
+
+
+ eloquence
+ clarity
+
+
+
+
+ ROOT
+ does
+
+
+ only
+ Not
+
+
+ deal
+ only
+
+
+ deal
+ does
+
+
+ deal
+ it
+
+
+ does
+ deal
+
+
+ deal
+ one
+
+
+ problems
+ the
+
+
+ problems
+ most
+
+
+ problems
+ significant
+
+
+ one
+ problems
+
+
+ times
+ our
+
+
+ problems
+ times
+
+
+ does
+ it
+
+
+ does
+ so
+
+
+ does
+ eloquence
+
+
+ eloquence
+ clarity
+
+
+
+
+ ROOT
+ does
+
+
+ only
+ Not
+
+
+ deal
+ only
+
+
+ deal
+ does
+
+
+ deal
+ it
+
+
+ does
+ deal
+
+
+ deal
+ one
+
+
+ problems
+ the
+
+
+ problems
+ most
+
+
+ problems
+ significant
+
+
+ one
+ problems
+
+
+ times
+ our
+
+
+ problems
+ times
+
+
+ does
+ it
+
+
+ does
+ so
+
+
+ does
+ eloquence
+
+
+ does
+ clarity
+
+
+ eloquence
+ clarity
+
+
+
+
+
+
+ I
+ I
+ 14072
+ 14073
+ PRP
+ O
+
+
+ hope
+ hope
+ 14074
+ 14078
+ VBP
+ O
+
+
+ other
+ other
+ 14079
+ 14084
+ JJ
+ O
+
+
+ Senators
+ senator
+ 14085
+ 14093
+ NNS
+ O
+
+
+ will
+ will
+ 14094
+ 14098
+ MD
+ O
+
+
+ take
+ take
+ 14100
+ 14104
+ VB
+ O
+
+
+ the
+ the
+ 14105
+ 14108
+ DT
+ O
+
+
+ time
+ time
+ 14109
+ 14113
+ NN
+ O
+
+
+ to
+ to
+ 14114
+ 14116
+ TO
+ O
+
+
+ review
+ review
+ 14117
+ 14123
+ VB
+ O
+
+
+ Senator
+ Senator
+ 14124
+ 14131
+ NNP
+ O
+
+
+ PELL
+ PELL
+ 14132
+ 14136
+ NNP
+ O
+
+
+ 'S
+ 's
+ 14136
+ 14138
+ POS
+ O
+
+
+ statement
+ statement
+ 14140
+ 14149
+ NN
+ O
+
+
+ .
+ .
+ 14149
+ 14150
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (VBP hope) (SBAR (S (NP (JJ other) (NNS Senators)) (VP (MD will) (VP (VB take) (NP (DT the) (NN time) (S (VP (TO to) (VP (VB review) (NP (NP (NNP Senator) (NNP PELL) (POS 'S)) (NN statement))))))))))) (. .)))
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ Senators
+ other
+
+
+ take
+ Senators
+
+
+ take
+ will
+
+
+ hope
+ take
+
+
+ time
+ the
+
+
+ take
+ time
+
+
+ review
+ to
+
+
+ time
+ review
+
+
+ PELL
+ Senator
+
+
+ statement
+ PELL
+
+
+ PELL
+ 'S
+
+
+ review
+ statement
+
+
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ Senators
+ other
+
+
+ take
+ Senators
+
+
+ take
+ will
+
+
+ hope
+ take
+
+
+ time
+ the
+
+
+ take
+ time
+
+
+ review
+ to
+
+
+ time
+ review
+
+
+ PELL
+ Senator
+
+
+ statement
+ PELL
+
+
+ review
+ statement
+
+
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ Senators
+ other
+
+
+ take
+ Senators
+
+
+ take
+ will
+
+
+ hope
+ take
+
+
+ time
+ the
+
+
+ take
+ time
+
+
+ review
+ to
+
+
+ time
+ review
+
+
+ PELL
+ Senator
+
+
+ statement
+ PELL
+
+
+ review
+ statement
+
+
+
+
+
+
+ There
+ there
+ 14154
+ 14159
+ EX
+ O
+
+
+ being
+ be
+ 14160
+ 14165
+ VBG
+ O
+
+
+ no
+ no
+ 14166
+ 14168
+ DT
+ O
+
+
+ objection
+ objection
+ 14169
+ 14178
+ NN
+ O
+
+
+ ,
+ ,
+ 14178
+ 14179
+ ,
+ O
+
+
+ the
+ the
+ 14180
+ 14183
+ DT
+ O
+
+
+ re
+ re
+ 14184
+ 14186
+ SYM
+ O
+
+
+ -
+ -
+ 14186
+ 14187
+ :
+ O
+
+
+ marks
+ mark
+ 14189
+ 14194
+ NNS
+ O
+
+
+ werc
+ werc
+ 14195
+ 14199
+ JJ
+ O
+
+
+ ordered
+ order
+ 14200
+ 14207
+ VBN
+ O
+
+
+ to
+ to
+ 14208
+ 14210
+ TO
+ O
+
+
+ be
+ be
+ 14211
+ 14213
+ VB
+ O
+
+
+ printed
+ print
+ 14214
+ 14221
+ VBN
+ O
+
+
+ in
+ in
+ 14222
+ 14224
+ IN
+ O
+
+
+ the
+ the
+ 14226
+ 14229
+ DT
+ O
+
+
+ RECORD
+ RECORD
+ 14230
+ 14236
+ NNP
+ O
+
+
+ ,
+ ,
+ 14236
+ 14237
+ ,
+ O
+
+
+ as
+ as
+ 14238
+ 14240
+ IN
+ O
+
+
+ follows
+ follow
+ 14241
+ 14248
+ VBZ
+ O
+
+
+ :
+ :
+ 14248
+ 14249
+ :
+ O
+
+
+ AN
+ a
+ 14251
+ 14253
+ DT
+ O
+
+
+ ENVIRONMENTAL
+ environmental
+ 14254
+ 14267
+ JJ
+ O
+
+
+ DIVIDEND
+ dividend
+ 14268
+ 14276
+ NN
+ O
+
+
+ :
+ :
+ 14276
+ 14277
+ :
+ O
+
+
+ CAPITALIZING
+ capitalize
+ 14278
+ 14290
+ VBG
+ O
+
+
+ ON
+ on
+ 14294
+ 14296
+ IN
+ O
+
+
+ NEw
+ NEw
+ 14297
+ 14300
+ NNP
+ O
+
+
+ OPPORTUNITIES
+ OPPORTUNITIES
+ 14301
+ 14314
+ NNP
+ O
+
+
+ FOR
+ for
+ 14315
+ 14318
+ IN
+ O
+
+
+ INTERNATIONAL
+ INTERNATIONAL
+ 14319
+ 14332
+ NNP
+ O
+
+
+ AcTION
+ AcTION
+ 14336
+ 14342
+ NNP
+ O
+
+
+ -LRB-
+ -lrb-
+ 14344
+ 14345
+ -LRB-
+ O
+
+
+ Remarks
+ remark
+ 14345
+ 14352
+ NNS
+ O
+
+
+ by
+ by
+ 14353
+ 14355
+ IN
+ O
+
+
+ Senator
+ Senator
+ 14356
+ 14363
+ NNP
+ O
+
+
+ Claiborne
+ Claiborne
+ 14364
+ 14373
+ NNP
+ PERSON
+
+
+ Pell
+ Pell
+ 14374
+ 14378
+ NNP
+ PERSON
+
+
+ ,
+ ,
+ 14378
+ 14379
+ ,
+ O
+
+
+ Global
+ Global
+ 14380
+ 14386
+ NNP
+ O
+
+
+ Forum
+ Forum
+ 14390
+ 14395
+ NNP
+ O
+
+
+ on
+ on
+ 14396
+ 14398
+ IN
+ O
+
+
+ Environment
+ Environment
+ 14399
+ 14410
+ NNP
+ O
+
+
+ and
+ and
+ 14411
+ 14414
+ CC
+ O
+
+
+ Development
+ Development
+ 14415
+ 14426
+ NNP
+ O
+
+
+ ,
+ ,
+ 14426
+ 14427
+ ,
+ O
+
+
+ Moscow
+ Moscow
+ 14431
+ 14437
+ NNP
+ LOCATION
+
+
+ ,
+ ,
+ 14437
+ 14438
+ ,
+ O
+
+
+ U.S.S.R.
+ U.S.S.R.
+ 14439
+ 14447
+ NNP
+ ORGANIZATION
+
+
+ ,
+ ,
+ 14447
+ 14448
+ ,
+ O
+
+
+ January
+ January
+ 14449
+ 14456
+ NNP
+ DATE
+ 1990-01-17
+ 1990-01-17
+
+
+ 17
+ 17
+ 14457
+ 14459
+ CD
+ DATE
+ 1990-01-17
+ 1990-01-17
+
+
+ ,
+ ,
+ 14459
+ 14460
+ ,
+ DATE
+ 1990-01-17
+ 1990-01-17
+
+
+ 1990
+ 1990
+ 14461
+ 14465
+ CD
+ DATE
+ 1990-01-17
+ 1990-01-17
+
+
+ -RRB-
+ -rrb-
+ 14465
+ 14466
+ -RRB-
+ O
+
+
+ We
+ we
+ 14470
+ 14472
+ PRP
+ O
+
+
+ are
+ be
+ 14473
+ 14476
+ VBP
+ O
+
+
+ gathered
+ gather
+ 14477
+ 14485
+ VBN
+ O
+
+
+ here
+ here
+ 14486
+ 14490
+ RB
+ O
+
+
+ at
+ at
+ 14491
+ 14493
+ IN
+ O
+
+
+ an
+ a
+ 14494
+ 14496
+ DT
+ O
+
+
+ extraordinary
+ extraordinary
+ 14497
+ 14510
+ JJ
+ O
+
+
+ time
+ time
+ 14512
+ 14516
+ NN
+ O
+
+
+ in
+ in
+ 14517
+ 14519
+ IN
+ O
+
+
+ human
+ human
+ 14520
+ 14525
+ JJ
+ O
+
+
+ history
+ history
+ 14526
+ 14533
+ NN
+ O
+
+
+ .
+ .
+ 14533
+ 14534
+ .
+ O
+
+
+ (ROOT (UCP (S (NP (EX There)) (VP (VBG being) (NP (NP (NP (DT no) (NN objection)) (, ,) (NP (DT the))) (X (SYM re))))) (: -) (NP (NP (NP (NNS marks) (JJ werc)) (VP (VBN ordered) (S (VP (TO to) (VP (VB be) (VP (VBN printed) (PP (IN in) (NP (DT the) (NNP RECORD))))))) (, ,) (SBAR (IN as) (S (VP (VBZ follows) (: :) (S (NP (DT AN) (JJ ENVIRONMENTAL) (NN DIVIDEND)) (: :) (VP (VBG CAPITALIZING)))))))) (PP (IN ON) (NP (NP (NNP NEw) (NNP OPPORTUNITIES)) (PP (IN FOR) (NP (NP (NP (NNP INTERNATIONAL) (NNP AcTION)) (PRN (-LRB- -LRB-) (NP (NP (NP (NNS Remarks)) (PP (IN by) (NP (NNP Senator) (NNP Claiborne) (NNP Pell)))) (, ,) (NP (NP (NNP Global) (NNP Forum)) (PP (IN on) (NP (NNP Environment) (CC and) (NNP Development)))) (, ,) (NP (NP (NNP Moscow)) (, ,) (NP (NNP U.S.S.R.) (, ,) (NNP January) (CD 17) (, ,) (CD 1990)))) (-RRB- -RRB-))) (SBAR (S (NP (PRP We)) (VP (VBP are) (VP (VBN gathered) (ADVP (RB here)) (PP (IN at) (NP (NP (DT an) (JJ extraordinary) (NN time)) (PP (IN in) (NP (JJ human) (NN history)))))))))))))) (. .)))
+
+
+ ROOT
+ being
+
+
+ being
+ There
+
+
+ objection
+ no
+
+
+ being
+ objection
+
+
+ objection
+ the
+
+
+ objection
+ re
+
+
+ being
+ marks
+
+
+ marks
+ werc
+
+
+ marks
+ ordered
+
+
+ printed
+ to
+
+
+ printed
+ be
+
+
+ ordered
+ printed
+
+
+ printed
+ in
+
+
+ RECORD
+ the
+
+
+ in
+ RECORD
+
+
+ follows
+ as
+
+
+ ordered
+ follows
+
+
+ DIVIDEND
+ AN
+
+
+ DIVIDEND
+ ENVIRONMENTAL
+
+
+ CAPITALIZING
+ DIVIDEND
+
+
+ follows
+ CAPITALIZING
+
+
+ marks
+ ON
+
+
+ OPPORTUNITIES
+ NEw
+
+
+ ON
+ OPPORTUNITIES
+
+
+ OPPORTUNITIES
+ FOR
+
+
+ AcTION
+ INTERNATIONAL
+
+
+ FOR
+ AcTION
+
+
+ AcTION
+ Remarks
+
+
+ Remarks
+ by
+
+
+ Pell
+ Senator
+
+
+ Pell
+ Claiborne
+
+
+ by
+ Pell
+
+
+ Forum
+ Global
+
+
+ Remarks
+ Forum
+
+
+ Forum
+ on
+
+
+ on
+ Environment
+
+
+ Environment
+ and
+
+
+ Environment
+ Development
+
+
+ Remarks
+ Moscow
+
+
+ January
+ U.S.S.R.
+
+
+ Moscow
+ January
+
+
+ January
+ 17
+
+
+ January
+ 1990
+
+
+ gathered
+ We
+
+
+ gathered
+ are
+
+
+ AcTION
+ gathered
+
+
+ gathered
+ here
+
+
+ gathered
+ at
+
+
+ time
+ an
+
+
+ time
+ extraordinary
+
+
+ at
+ time
+
+
+ time
+ in
+
+
+ history
+ human
+
+
+ in
+ history
+
+
+
+
+ ROOT
+ being
+
+
+ being
+ There
+
+
+ objection
+ no
+
+
+ being
+ objection
+
+
+ objection
+ the
+
+
+ objection
+ re
+
+
+ being
+ marks
+
+
+ marks
+ werc
+
+
+ marks
+ ordered
+
+
+ printed
+ to
+
+
+ printed
+ be
+
+
+ ordered
+ printed
+
+
+ RECORD
+ the
+
+
+ printed
+ RECORD
+
+
+ follows
+ as
+
+
+ ordered
+ follows
+
+
+ DIVIDEND
+ AN
+
+
+ DIVIDEND
+ ENVIRONMENTAL
+
+
+ CAPITALIZING
+ DIVIDEND
+
+
+ follows
+ CAPITALIZING
+
+
+ OPPORTUNITIES
+ NEw
+
+
+ marks
+ OPPORTUNITIES
+
+
+ AcTION
+ INTERNATIONAL
+
+
+ OPPORTUNITIES
+ AcTION
+
+
+ AcTION
+ Remarks
+
+
+ Pell
+ Senator
+
+
+ Pell
+ Claiborne
+
+
+ Remarks
+ Pell
+
+
+ Forum
+ Global
+
+
+ Remarks
+ Forum
+
+
+ Forum
+ Environment
+
+
+ Environment
+ Development
+
+
+ Remarks
+ Moscow
+
+
+ January
+ U.S.S.R.
+
+
+ Moscow
+ January
+
+
+ January
+ 17
+
+
+ January
+ 1990
+
+
+ gathered
+ We
+
+
+ gathered
+ are
+
+
+ AcTION
+ gathered
+
+
+ gathered
+ here
+
+
+ time
+ an
+
+
+ time
+ extraordinary
+
+
+ gathered
+ time
+
+
+ history
+ human
+
+
+ time
+ history
+
+
+
+
+ ROOT
+ being
+
+
+ being
+ There
+
+
+ objection
+ no
+
+
+ being
+ objection
+
+
+ objection
+ the
+
+
+ objection
+ re
+
+
+ being
+ marks
+
+
+ marks
+ werc
+
+
+ marks
+ ordered
+
+
+ printed
+ to
+
+
+ printed
+ be
+
+
+ ordered
+ printed
+
+
+ RECORD
+ the
+
+
+ printed
+ RECORD
+
+
+ follows
+ as
+
+
+ ordered
+ follows
+
+
+ DIVIDEND
+ AN
+
+
+ DIVIDEND
+ ENVIRONMENTAL
+
+
+ CAPITALIZING
+ DIVIDEND
+
+
+ follows
+ CAPITALIZING
+
+
+ OPPORTUNITIES
+ NEw
+
+
+ marks
+ OPPORTUNITIES
+
+
+ AcTION
+ INTERNATIONAL
+
+
+ OPPORTUNITIES
+ AcTION
+
+
+ AcTION
+ Remarks
+
+
+ Pell
+ Senator
+
+
+ Pell
+ Claiborne
+
+
+ Remarks
+ Pell
+
+
+ Forum
+ Global
+
+
+ Remarks
+ Forum
+
+
+ Forum
+ Environment
+
+
+ Forum
+ Development
+
+
+ Environment
+ Development
+
+
+ Remarks
+ Moscow
+
+
+ January
+ U.S.S.R.
+
+
+ Moscow
+ January
+
+
+ January
+ 17
+
+
+ January
+ 1990
+
+
+ gathered
+ We
+
+
+ gathered
+ are
+
+
+ AcTION
+ gathered
+
+
+ gathered
+ here
+
+
+ time
+ an
+
+
+ time
+ extraordinary
+
+
+ gathered
+ time
+
+
+ history
+ human
+
+
+ time
+ history
+
+
+
+
+
+
+ In
+ in
+ 14535
+ 14537
+ IN
+ O
+
+
+ a
+ a
+ 14538
+ 14539
+ DT
+ O
+
+
+ matter
+ matter
+ 14540
+ 14546
+ NN
+ O
+
+
+ of
+ of
+ 14547
+ 14549
+ IN
+ O
+
+
+ months
+ month
+ 14551
+ 14557
+ NNS
+ DURATION
+ PXM
+
+
+ a
+ a
+ 14558
+ 14559
+ DT
+ O
+
+
+ series
+ series
+ 14560
+ 14566
+ NN
+ O
+
+
+ of
+ of
+ 14567
+ 14569
+ IN
+ O
+
+
+ popular
+ popular
+ 14570
+ 14577
+ JJ
+ O
+
+
+ movements
+ movement
+ 14578
+ 14587
+ NNS
+ O
+
+
+ have
+ have
+ 14588
+ 14592
+ VBP
+ O
+
+
+ transformed
+ transform
+ 14594
+ 14605
+ VBN
+ O
+
+
+ Europe
+ Europe
+ 14606
+ 14612
+ NNP
+ LOCATION
+
+
+ .
+ .
+ 14612
+ 14613
+ .
+ O
+
+
+ (ROOT (S (PP (IN In) (NP (NP (DT a) (NN matter)) (PP (IN of) (NP (NNS months))))) (NP (NP (DT a) (NN series)) (PP (IN of) (NP (JJ popular) (NNS movements)))) (VP (VBP have) (VP (VBN transformed) (NP (NNP Europe)))) (. .)))
+
+
+ ROOT
+ transformed
+
+
+ transformed
+ In
+
+
+ matter
+ a
+
+
+ In
+ matter
+
+
+ matter
+ of
+
+
+ of
+ months
+
+
+ series
+ a
+
+
+ transformed
+ series
+
+
+ series
+ of
+
+
+ movements
+ popular
+
+
+ of
+ movements
+
+
+ transformed
+ have
+
+
+ transformed
+ Europe
+
+
+
+
+ ROOT
+ transformed
+
+
+ matter
+ a
+
+
+ transformed
+ matter
+
+
+ matter
+ months
+
+
+ series
+ a
+
+
+ transformed
+ series
+
+
+ movements
+ popular
+
+
+ series
+ movements
+
+
+ transformed
+ have
+
+
+ transformed
+ Europe
+
+
+
+
+ ROOT
+ transformed
+
+
+ matter
+ a
+
+
+ transformed
+ matter
+
+
+ matter
+ months
+
+
+ series
+ a
+
+
+ transformed
+ series
+
+
+ movements
+ popular
+
+
+ series
+ movements
+
+
+ transformed
+ have
+
+
+ transformed
+ Europe
+
+
+
+
+
+
+ The
+ the
+ 14614
+ 14617
+ DT
+ O
+
+
+ Iron
+ Iron
+ 14618
+ 14622
+ NNP
+ MISC
+
+
+ Curtain
+ Curtain
+ 14623
+ 14630
+ NNP
+ MISC
+
+
+ has
+ have
+ 14631
+ 14634
+ VBZ
+ O
+
+
+ ceased
+ cease
+ 14636
+ 14642
+ VBN
+ O
+
+
+ to
+ to
+ 14643
+ 14645
+ TO
+ O
+
+
+ be
+ be
+ 14646
+ 14648
+ VB
+ O
+
+
+ a
+ a
+ 14649
+ 14650
+ DT
+ O
+
+
+ barrier
+ barrier
+ 14651
+ 14658
+ NN
+ O
+
+
+ between
+ between
+ 14659
+ 14666
+ IN
+ O
+
+
+ East
+ East
+ 14667
+ 14671
+ NNP
+ O
+
+
+ and
+ and
+ 14672
+ 14675
+ CC
+ O
+
+
+ West
+ West
+ 14677
+ 14681
+ NNP
+ O
+
+
+ .
+ .
+ 14681
+ 14682
+ .
+ O
+
+
+ (ROOT (S (NP (DT The) (NNP Iron) (NNP Curtain)) (VP (VBZ has) (VP (VBN ceased) (S (VP (TO to) (VP (VB be) (NP (NP (DT a) (NN barrier)) (PP (IN between) (NP (NNP East) (CC and) (NNP West))))))))) (. .)))
+
+
+ ROOT
+ ceased
+
+
+ Curtain
+ The
+
+
+ Curtain
+ Iron
+
+
+ ceased
+ Curtain
+
+
+ ceased
+ has
+
+
+ barrier
+ to
+
+
+ barrier
+ be
+
+
+ barrier
+ a
+
+
+ ceased
+ barrier
+
+
+ barrier
+ between
+
+
+ between
+ East
+
+
+ East
+ and
+
+
+ East
+ West
+
+
+
+
+ ROOT
+ ceased
+
+
+ Curtain
+ The
+
+
+ Curtain
+ Iron
+
+
+ ceased
+ Curtain
+
+
+ ceased
+ has
+
+
+ barrier
+ to
+
+
+ barrier
+ be
+
+
+ barrier
+ a
+
+
+ ceased
+ barrier
+
+
+ barrier
+ East
+
+
+ East
+ West
+
+
+
+
+ ROOT
+ ceased
+
+
+ Curtain
+ The
+
+
+ Curtain
+ Iron
+
+
+ ceased
+ Curtain
+
+
+ ceased
+ has
+
+
+ barrier
+ to
+
+
+ barrier
+ be
+
+
+ barrier
+ a
+
+
+ ceased
+ barrier
+
+
+ barrier
+ East
+
+
+ barrier
+ West
+
+
+ East
+ West
+
+
+
+
+
+
+ A
+ a
+ 14683
+ 14684
+ DT
+ O
+
+
+ democratically
+ democratically
+ 14685
+ 14699
+ RB
+ O
+
+
+ elected
+ elect
+ 14700
+ 14707
+ VBN
+ O
+
+
+ government
+ government
+ 14708
+ 14718
+ NN
+ O
+
+
+ has
+ have
+ 14720
+ 14723
+ VBZ
+ O
+
+
+ taken
+ take
+ 14724
+ 14729
+ VBN
+ O
+
+
+ power
+ power
+ 14730
+ 14735
+ NN
+ O
+
+
+ in
+ in
+ 14736
+ 14738
+ IN
+ O
+
+
+ Poland
+ Poland
+ 14739
+ 14745
+ NNP
+ LOCATION
+
+
+ ,
+ ,
+ 14745
+ 14746
+ ,
+ O
+
+
+ and
+ and
+ 14747
+ 14750
+ CC
+ O
+
+
+ in
+ in
+ 14751
+ 14753
+ IN
+ O
+
+
+ the
+ the
+ 14754
+ 14757
+ DT
+ DURATION
+ PXM
+
+
+ next
+ next
+ 14758
+ 14762
+ JJ
+ DURATION
+ PXM
+
+
+ few
+ few
+ 14764
+ 14767
+ JJ
+ DURATION
+ PXM
+
+
+ months
+ month
+ 14768
+ 14774
+ NNS
+ DURATION
+ PXM
+
+
+ free
+ free
+ 14775
+ 14779
+ JJ
+ O
+
+
+ elcdtions
+ elcdtion
+ 14780
+ 14789
+ NNS
+ O
+
+
+ will
+ will
+ 14790
+ 14794
+ MD
+ O
+
+
+ be
+ be
+ 14795
+ 14797
+ VB
+ O
+
+
+ held
+ hold
+ 14798
+ 14802
+ VBN
+ O
+
+
+ in
+ in
+ 14803
+ 14805
+ IN
+ O
+
+
+ East
+ East
+ 14807
+ 14811
+ NNP
+ LOCATION
+
+
+ Germany
+ Germany
+ 14812
+ 14819
+ NNP
+ LOCATION
+
+
+ ,
+ ,
+ 14819
+ 14820
+ ,
+ O
+
+
+ Czechoslovakia
+ Czechoslovakia
+ 14821
+ 14835
+ NNP
+ LOCATION
+
+
+ ,
+ ,
+ 14835
+ 14836
+ ,
+ O
+
+
+ Bulgaria
+ Bulgaria
+ 14837
+ 14845
+ NNP
+ LOCATION
+
+
+ ,
+ ,
+ 14845
+ 14846
+ ,
+ O
+
+
+ Hungary
+ Hungary
+ 14848
+ 14855
+ NNP
+ LOCATION
+
+
+ ,
+ ,
+ 14855
+ 14856
+ ,
+ O
+
+
+ and
+ and
+ 14857
+ 14860
+ CC
+ O
+
+
+ Romania
+ Romania
+ 14861
+ 14868
+ NNP
+ LOCATION
+
+
+ .
+ .
+ 14868
+ 14869
+ .
+ O
+
+
+ (ROOT (S (S (NP (DT A) (ADJP (RB democratically) (VBN elected)) (NN government)) (VP (VBZ has) (VP (VBN taken) (NP (NP (NN power)) (PP (IN in) (NP (NNP Poland))))))) (, ,) (CC and) (S (PP (IN in) (NP (DT the) (JJ next) (JJ few) (NNS months))) (NP (JJ free) (NNS elcdtions)) (VP (MD will) (VP (VB be) (VP (VBN held) (PP (IN in) (NP (NP (NNP East) (NNP Germany) (, ,) (NNP Czechoslovakia) (, ,) (NNP Bulgaria) (, ,) (NNP Hungary) (, ,)) (CC and) (NP (NNP Romania)))))))) (. .)))
+
+
+ ROOT
+ taken
+
+
+ government
+ A
+
+
+ elected
+ democratically
+
+
+ government
+ elected
+
+
+ taken
+ government
+
+
+ taken
+ has
+
+
+ taken
+ power
+
+
+ power
+ in
+
+
+ in
+ Poland
+
+
+ taken
+ and
+
+
+ held
+ in
+
+
+ months
+ the
+
+
+ months
+ next
+
+
+ months
+ few
+
+
+ in
+ months
+
+
+ elcdtions
+ free
+
+
+ held
+ elcdtions
+
+
+ held
+ will
+
+
+ held
+ be
+
+
+ taken
+ held
+
+
+ held
+ in
+
+
+ Hungary
+ East
+
+
+ Hungary
+ Germany
+
+
+ Hungary
+ Czechoslovakia
+
+
+ Hungary
+ Bulgaria
+
+
+ in
+ Hungary
+
+
+ Hungary
+ and
+
+
+ Hungary
+ Romania
+
+
+
+
+ ROOT
+ taken
+
+
+ government
+ A
+
+
+ elected
+ democratically
+
+
+ government
+ elected
+
+
+ taken
+ government
+
+
+ taken
+ has
+
+
+ taken
+ power
+
+
+ power
+ Poland
+
+
+ months
+ the
+
+
+ months
+ next
+
+
+ months
+ few
+
+
+ held
+ months
+
+
+ elcdtions
+ free
+
+
+ held
+ elcdtions
+
+
+ held
+ will
+
+
+ held
+ be
+
+
+ taken
+ held
+
+
+ Hungary
+ East
+
+
+ Hungary
+ Germany
+
+
+ Hungary
+ Czechoslovakia
+
+
+ Hungary
+ Bulgaria
+
+
+ held
+ Hungary
+
+
+ Hungary
+ Romania
+
+
+
+
+ ROOT
+ taken
+
+
+ government
+ A
+
+
+ elected
+ democratically
+
+
+ government
+ elected
+
+
+ taken
+ government
+
+
+ taken
+ has
+
+
+ taken
+ power
+
+
+ power
+ Poland
+
+
+ months
+ the
+
+
+ months
+ next
+
+
+ months
+ few
+
+
+ held
+ months
+
+
+ elcdtions
+ free
+
+
+ held
+ elcdtions
+
+
+ held
+ will
+
+
+ held
+ be
+
+
+ taken
+ held
+
+
+ Hungary
+ East
+
+
+ Hungary
+ Germany
+
+
+ Hungary
+ Czechoslovakia
+
+
+ Hungary
+ Bulgaria
+
+
+ held
+ Hungary
+
+
+ held
+ Romania
+
+
+ Hungary
+ Romania
+
+
+
+
+
+
+ In
+ in
+ 14870
+ 14872
+ IN
+ O
+
+
+ addition
+ addition
+ 14873
+ 14881
+ NN
+ O
+
+
+ ,
+ ,
+ 14881
+ 14882
+ ,
+ O
+
+
+ the
+ the
+ 14883
+ 14886
+ DT
+ O
+
+
+ Soviet
+ Soviet
+ 14888
+ 14894
+ NNP
+ LOCATION
+
+
+ Union
+ Union
+ 14895
+ 14900
+ NNP
+ LOCATION
+
+
+ is
+ be
+ 14901
+ 14903
+ VBZ
+ O
+
+
+ well
+ well
+ 14904
+ 14908
+ RB
+ O
+
+
+ along
+ along
+ 14909
+ 14914
+ IN
+ O
+
+
+ on
+ on
+ 14915
+ 14917
+ IN
+ O
+
+
+ a
+ a
+ 14918
+ 14919
+ DT
+ O
+
+
+ path
+ path
+ 14920
+ 14924
+ NN
+ O
+
+
+ to
+ to
+ 14925
+ 14927
+ TO
+ O
+
+
+ free
+ free
+ 14928
+ 14932
+ JJ
+ O
+
+
+ -
+ -
+ 14932
+ 14933
+ :
+ O
+
+
+ dom
+ dom
+ 14935
+ 14938
+ NN
+ O
+
+
+ ,
+ ,
+ 14938
+ 14939
+ ,
+ O
+
+
+ openness
+ openness
+ 14940
+ 14948
+ NN
+ O
+
+
+ and
+ and
+ 14949
+ 14952
+ CC
+ O
+
+
+ democratic
+ democratic
+ 14953
+ 14963
+ JJ
+ O
+
+
+ renewal
+ renewal
+ 14964
+ 14971
+ NN
+ O
+
+
+ .
+ .
+ 14971
+ 14972
+ .
+ O
+
+
+ (ROOT (S (PP (IN In) (NP (NN addition))) (, ,) (NP (DT the) (NNP Soviet) (NNP Union)) (VP (VBZ is) (ADVP (RB well) (IN along)) (PP (IN on) (NP (NP (NP (DT a) (NN path)) (PP (TO to) (NP (JJ free)))) (: -) (NP (NP (NN dom)) (, ,) (NP (NN openness)) (CC and) (NP (JJ democratic) (NN renewal)))))) (. .)))
+
+
+ ROOT
+ is
+
+
+ is
+ In
+
+
+ In
+ addition
+
+
+ Union
+ the
+
+
+ Union
+ Soviet
+
+
+ is
+ Union
+
+
+ along
+ well
+
+
+ is
+ along
+
+
+ is
+ on
+
+
+ path
+ a
+
+
+ on
+ path
+
+
+ path
+ to
+
+
+ to
+ free
+
+
+ path
+ dom
+
+
+ dom
+ openness
+
+
+ dom
+ and
+
+
+ renewal
+ democratic
+
+
+ dom
+ renewal
+
+
+
+
+ ROOT
+ is
+
+
+ is
+ addition
+
+
+ Union
+ the
+
+
+ Union
+ Soviet
+
+
+ is
+ Union
+
+
+ along
+ well
+
+
+ is
+ along
+
+
+ path
+ a
+
+
+ is
+ path
+
+
+ path
+ free
+
+
+ path
+ dom
+
+
+ dom
+ openness
+
+
+ renewal
+ democratic
+
+
+ dom
+ renewal
+
+
+
+
+ ROOT
+ is
+
+
+ is
+ addition
+
+
+ Union
+ the
+
+
+ Union
+ Soviet
+
+
+ is
+ Union
+
+
+ along
+ well
+
+
+ is
+ along
+
+
+ path
+ a
+
+
+ is
+ path
+
+
+ path
+ free
+
+
+ path
+ dom
+
+
+ path
+ openness
+
+
+ dom
+ openness
+
+
+ renewal
+ democratic
+
+
+ path
+ renewal
+
+
+ dom
+ renewal
+
+
+
+
+
+
+ With
+ with
+ 14976
+ 14980
+ IN
+ O
+
+
+ the
+ the
+ 14981
+ 14984
+ DT
+ O
+
+
+ changes
+ change
+ 14985
+ 14992
+ NNS
+ O
+
+
+ in
+ in
+ 14993
+ 14995
+ IN
+ O
+
+
+ Eastern
+ Eastern
+ 14996
+ 15003
+ NNP
+ LOCATION
+
+
+ Europe
+ Europe
+ 15004
+ 15010
+ NNP
+ LOCATION
+
+
+ and
+ and
+ 15011
+ 15014
+ CC
+ O
+
+
+ the
+ the
+ 15016
+ 15019
+ DT
+ O
+
+
+ Soviet
+ soviet
+ 15020
+ 15026
+ JJ
+ MISC
+
+
+ U
+ U
+ 15027
+ 15028
+ NNP
+ O
+
+
+ nion
+ nion
+ 15029
+ 15033
+ NNP
+ O
+
+
+ ,
+ ,
+ 15033
+ 15034
+ ,
+ O
+
+
+ East
+ East
+ 15035
+ 15039
+ NNP
+ O
+
+
+ and
+ and
+ 15040
+ 15043
+ CC
+ O
+
+
+ West
+ West
+ 15044
+ 15048
+ NNP
+ O
+
+
+ will
+ will
+ 15049
+ 15053
+ MD
+ O
+
+
+ begin
+ begin
+ 15054
+ 15059
+ VB
+ O
+
+
+ to
+ to
+ 15061
+ 15063
+ TO
+ O
+
+
+ share
+ share
+ 15064
+ 15069
+ VB
+ O
+
+
+ common
+ common
+ 15070
+ 15076
+ JJ
+ O
+
+
+ values
+ value
+ 15077
+ 15083
+ NNS
+ O
+
+
+ of
+ of
+ 15084
+ 15086
+ IN
+ O
+
+
+ a
+ a
+ 15087
+ 15088
+ DT
+ O
+
+
+ belief
+ belief
+ 15089
+ 15095
+ NN
+ O
+
+
+ in
+ in
+ 15096
+ 15098
+ IN
+ O
+
+
+ indi
+ indus
+ 15099
+ 15103
+ NN
+ O
+
+
+ -
+ -
+ 15103
+ 15104
+ :
+ O
+
+
+ vidual
+ vidual
+ 15106
+ 15112
+ JJ
+ O
+
+
+ rights
+ rights
+ 15113
+ 15119
+ NNS
+ O
+
+
+ and
+ and
+ 15120
+ 15123
+ CC
+ O
+
+
+ democratic
+ democratic
+ 15124
+ 15134
+ JJ
+ O
+
+
+ institutions
+ institution
+ 15135
+ 15147
+ NNS
+ O
+
+
+ .
+ .
+ 15147
+ 15148
+ .
+ O
+
+
+ (ROOT (S (PP (IN With) (NP (NP (DT the) (NNS changes)) (PP (IN in) (NP (NP (NNP Eastern) (NNP Europe)) (CC and) (NP (DT the) (JJ Soviet) (NNP U) (NNP nion)))))) (, ,) (NP (NNP East) (CC and) (NNP West)) (VP (MD will) (VP (VB begin) (S (VP (TO to) (VP (VB share) (NP (NP (NP (JJ common) (NNS values)) (PP (IN of) (NP (NP (DT a) (NN belief)) (PP (IN in) (NP (NN indi)))))) (: -) (NP (NP (JJ vidual) (NNS rights)) (CC and) (NP (JJ democratic) (NNS institutions))))))))) (. .)))
+
+
+ ROOT
+ begin
+
+
+ begin
+ With
+
+
+ changes
+ the
+
+
+ With
+ changes
+
+
+ changes
+ in
+
+
+ Europe
+ Eastern
+
+
+ in
+ Europe
+
+
+ Europe
+ and
+
+
+ nion
+ the
+
+
+ nion
+ Soviet
+
+
+ nion
+ U
+
+
+ Europe
+ nion
+
+
+ begin
+ East
+
+
+ East
+ and
+
+
+ East
+ West
+
+
+ begin
+ will
+
+
+ share
+ to
+
+
+ begin
+ share
+
+
+ values
+ common
+
+
+ share
+ values
+
+
+ values
+ of
+
+
+ belief
+ a
+
+
+ of
+ belief
+
+
+ belief
+ in
+
+
+ in
+ indi
+
+
+ rights
+ vidual
+
+
+ values
+ rights
+
+
+ rights
+ and
+
+
+ institutions
+ democratic
+
+
+ rights
+ institutions
+
+
+
+
+ ROOT
+ begin
+
+
+ changes
+ the
+
+
+ begin
+ changes
+
+
+ Europe
+ Eastern
+
+
+ changes
+ Europe
+
+
+ nion
+ the
+
+
+ nion
+ Soviet
+
+
+ nion
+ U
+
+
+ Europe
+ nion
+
+
+ begin
+ East
+
+
+ East
+ West
+
+
+ begin
+ will
+
+
+ share
+ to
+
+
+ begin
+ share
+
+
+ values
+ common
+
+
+ share
+ values
+
+
+ belief
+ a
+
+
+ values
+ belief
+
+
+ belief
+ indi
+
+
+ rights
+ vidual
+
+
+ values
+ rights
+
+
+ institutions
+ democratic
+
+
+ rights
+ institutions
+
+
+
+
+ ROOT
+ begin
+
+
+ changes
+ the
+
+
+ begin
+ changes
+
+
+ Europe
+ Eastern
+
+
+ changes
+ Europe
+
+
+ nion
+ the
+
+
+ nion
+ Soviet
+
+
+ nion
+ U
+
+
+ changes
+ nion
+
+
+ Europe
+ nion
+
+
+ begin
+ East
+
+
+ East
+ West
+
+
+ begin
+ West
+
+
+ begin
+ will
+
+
+ share
+ to
+
+
+ begin
+ share
+
+
+ values
+ common
+
+
+ share
+ values
+
+
+ belief
+ a
+
+
+ values
+ belief
+
+
+ belief
+ indi
+
+
+ rights
+ vidual
+
+
+ values
+ rights
+
+
+ institutions
+ democratic
+
+
+ values
+ institutions
+
+
+ rights
+ institutions
+
+
+
+
+
+
+ The
+ the
+ 15150
+ 15153
+ DT
+ O
+
+
+ wave
+ wave
+ 15154
+ 15158
+ NN
+ O
+
+
+ of
+ of
+ 15159
+ 15161
+ IN
+ O
+
+
+ democracy
+ democracy
+ 15162
+ 15171
+ NN
+ O
+
+
+ is
+ be
+ 15172
+ 15174
+ VBZ
+ O
+
+
+ also
+ also
+ 15175
+ 15179
+ RB
+ O
+
+
+ spreading
+ spread
+ 15180
+ 15189
+ VBG
+ O
+
+
+ to
+ to
+ 15190
+ 15192
+ TO
+ O
+
+
+ the
+ the
+ 15194
+ 15197
+ DT
+ O
+
+
+ developing
+ develop
+ 15198
+ 15208
+ VBG
+ O
+
+
+ world
+ world
+ 15209
+ 15214
+ NN
+ O
+
+
+ .
+ .
+ 15214
+ 15215
+ .
+ O
+
+
+ (ROOT (S (NP (NP (DT The) (NN wave)) (PP (IN of) (NP (NN democracy)))) (VP (VBZ is) (ADVP (RB also)) (VP (VBG spreading) (PP (TO to) (NP (DT the) (VBG developing) (NN world))))) (. .)))
+
+
+ ROOT
+ spreading
+
+
+ wave
+ The
+
+
+ spreading
+ wave
+
+
+ wave
+ of
+
+
+ of
+ democracy
+
+
+ spreading
+ is
+
+
+ spreading
+ also
+
+
+ spreading
+ to
+
+
+ world
+ the
+
+
+ world
+ developing
+
+
+ to
+ world
+
+
+
+
+ ROOT
+ spreading
+
+
+ wave
+ The
+
+
+ spreading
+ wave
+
+
+ wave
+ democracy
+
+
+ spreading
+ is
+
+
+ spreading
+ also
+
+
+ world
+ the
+
+
+ world
+ developing
+
+
+ spreading
+ world
+
+
+
+
+ ROOT
+ spreading
+
+
+ wave
+ The
+
+
+ spreading
+ wave
+
+
+ wave
+ democracy
+
+
+ spreading
+ is
+
+
+ spreading
+ also
+
+
+ world
+ the
+
+
+ world
+ developing
+
+
+ spreading
+ world
+
+
+
+
+
+
+ With
+ with
+ 15216
+ 15220
+ IN
+ O
+
+
+ the
+ the
+ 15221
+ 15224
+ DT
+ O
+
+
+ recent
+ recent
+ 15225
+ 15231
+ JJ
+ O
+
+
+ elec
+ elec
+ 15232
+ 15236
+ NN
+ O
+
+
+ -
+ -
+ 15236
+ 15237
+ :
+ O
+
+
+ tions
+ tion
+ 15239
+ 15244
+ NNS
+ O
+
+
+ in
+ in
+ 15245
+ 15247
+ IN
+ O
+
+
+ Chile
+ Chile
+ 15248
+ 15253
+ NNP
+ LOCATION
+
+
+ ,
+ ,
+ 15253
+ 15254
+ ,
+ O
+
+
+ every
+ every
+ 15255
+ 15260
+ DT
+ O
+
+
+ government
+ government
+ 15261
+ 15271
+ NN
+ O
+
+
+ in
+ in
+ 15272
+ 15274
+ IN
+ O
+
+
+ South
+ South
+ 15275
+ 15280
+ NNP
+ LOCATION
+
+
+ America
+ America
+ 15282
+ 15289
+ NNP
+ LOCATION
+
+
+ will
+ will
+ 15290
+ 15294
+ MD
+ O
+
+
+ be
+ be
+ 15295
+ 15297
+ VB
+ O
+
+
+ a
+ a
+ 15298
+ 15299
+ DT
+ O
+
+
+ democracy
+ democracy
+ 15300
+ 15309
+ NN
+ O
+
+
+ .
+ .
+ 15309
+ 15310
+ .
+ O
+
+
+ (ROOT (S (PP (IN With) (NP (NP (DT the) (JJ recent) (NN elec)) (: -) (NP (NP (NNS tions)) (PP (IN in) (NP (NNP Chile)))))) (, ,) (NP (NP (DT every) (NN government)) (PP (IN in) (NP (NNP South) (NNP America)))) (VP (MD will) (VP (VB be) (NP (DT a) (NN democracy)))) (. .)))
+
+
+ ROOT
+ democracy
+
+
+ democracy
+ With
+
+
+ elec
+ the
+
+
+ elec
+ recent
+
+
+ With
+ elec
+
+
+ elec
+ tions
+
+
+ tions
+ in
+
+
+ in
+ Chile
+
+
+ government
+ every
+
+
+ democracy
+ government
+
+
+ government
+ in
+
+
+ America
+ South
+
+
+ in
+ America
+
+
+ democracy
+ will
+
+
+ democracy
+ be
+
+
+ democracy
+ a
+
+
+
+
+ ROOT
+ democracy
+
+
+ elec
+ the
+
+
+ elec
+ recent
+
+
+ democracy
+ elec
+
+
+ elec
+ tions
+
+
+ tions
+ Chile
+
+
+ government
+ every
+
+
+ democracy
+ government
+
+
+ America
+ South
+
+
+ government
+ America
+
+
+ democracy
+ will
+
+
+ democracy
+ be
+
+
+ democracy
+ a
+
+
+
+
+ ROOT
+ democracy
+
+
+ elec
+ the
+
+
+ elec
+ recent
+
+
+ democracy
+ elec
+
+
+ elec
+ tions
+
+
+ tions
+ Chile
+
+
+ government
+ every
+
+
+ democracy
+ government
+
+
+ America
+ South
+
+
+ government
+ America
+
+
+ democracy
+ will
+
+
+ democracy
+ be
+
+
+ democracy
+ a
+
+
+
+
+
+
+ Elsewhere
+ elsewhere
+ 15311
+ 15320
+ RB
+ O
+
+
+ In
+ in
+ 15321
+ 15323
+ IN
+ O
+
+
+ the
+ the
+ 15325
+ 15328
+ DT
+ O
+
+
+ just
+ just
+ 15329
+ 15333
+ RB
+ O
+
+
+ concluded
+ conclude
+ 15334
+ 15343
+ VBN
+ O
+
+
+ decade
+ decade
+ 15344
+ 15350
+ NN
+ DURATION
+ P10Y
+
+
+ ,
+ ,
+ 15350
+ 15351
+ ,
+ O
+
+
+ dictatorships
+ dictatorship
+ 15352
+ 15365
+ NNS
+ O
+
+
+ in
+ in
+ 15366
+ 15368
+ IN
+ O
+
+
+ the
+ the
+ 15370
+ 15373
+ DT
+ O
+
+
+ Philippines
+ Philippines
+ 15374
+ 15385
+ NNPS
+ LOCATION
+
+
+ and
+ and
+ 15386
+ 15389
+ CC
+ O
+
+
+ Pakistan
+ Pakistan
+ 15390
+ 15398
+ NNP
+ LOCATION
+
+
+ have
+ have
+ 15399
+ 15403
+ VBP
+ O
+
+
+ disap
+ disap
+ 15404
+ 15409
+ NN
+ O
+
+
+ -
+ -
+ 15409
+ 15410
+ :
+ O
+
+
+ peared
+ pear
+ 15412
+ 15418
+ VBN
+ O
+
+
+ and
+ and
+ 15419
+ 15422
+ CC
+ O
+
+
+ India
+ India
+ 15423
+ 15428
+ NNP
+ LOCATION
+
+
+ 's
+ 's
+ 15428
+ 15430
+ POS
+ O
+
+
+ recent
+ recent
+ 15431
+ 15437
+ JJ
+ O
+
+
+ elections
+ election
+ 15438
+ 15447
+ NNS
+ O
+
+
+ ,
+ ,
+ 15447
+ 15448
+ ,
+ O
+
+
+ the
+ the
+ 15449
+ 15452
+ DT
+ O
+
+
+ larg
+ larg
+ 15453
+ 15457
+ NN
+ O
+
+
+ -
+ -
+ 15457
+ 15458
+ :
+ O
+
+
+ est
+ est
+ 15460
+ 15463
+ NN
+ O
+
+
+ exercise
+ exercise
+ 15464
+ 15472
+ NN
+ O
+
+
+ of
+ of
+ 15473
+ 15475
+ IN
+ O
+
+
+ popular
+ popular
+ 15476
+ 15483
+ JJ
+ O
+
+
+ choice
+ choice
+ 15484
+ 15490
+ NN
+ O
+
+
+ in
+ in
+ 15491
+ 15493
+ IN
+ O
+
+
+ human
+ human
+ 15494
+ 15499
+ JJ
+ O
+
+
+ his
+ he
+ 15500
+ 15503
+ PRP$
+ O
+
+
+ -
+ -
+ 15503
+ 15504
+ :
+ O
+
+
+ tory
+ tory
+ 15506
+ 15510
+ JJ
+ O
+
+
+ ,
+ ,
+ 15510
+ 15511
+ ,
+ O
+
+
+ reminds
+ remind
+ 15512
+ 15519
+ VBZ
+ O
+
+
+ us
+ we
+ 15520
+ 15522
+ PRP
+ O
+
+
+ of
+ of
+ 15523
+ 15525
+ IN
+ O
+
+
+ the
+ the
+ 15526
+ 15529
+ DT
+ O
+
+
+ appeal
+ appeal
+ 15530
+ 15536
+ NN
+ O
+
+
+ of
+ of
+ 15537
+ 15539
+ IN
+ O
+
+
+ democracy
+ democracy
+ 15540
+ 15549
+ NN
+ O
+
+
+ to
+ to
+ 15551
+ 15553
+ TO
+ O
+
+
+ even
+ even
+ 15554
+ 15558
+ RB
+ O
+
+
+ the
+ the
+ 15559
+ 15562
+ DT
+ O
+
+
+ world
+ world
+ 15563
+ 15568
+ NN
+ O
+
+
+ 's
+ 's
+ 15568
+ 15570
+ POS
+ O
+
+
+ poorest
+ poorest
+ 15571
+ 15578
+ JJS
+ O
+
+
+ people
+ people
+ 15579
+ 15585
+ NNS
+ O
+
+
+ .
+ .
+ 15585
+ 15586
+ .
+ O
+
+
+ (ROOT (S (PP (ADVP (RB Elsewhere)) (IN In) (NP (DT the) (RB just) (VBN concluded) (NN decade))) (, ,) (NP (NP (NNS dictatorships)) (PP (IN in) (NP (NP (DT the) (NNPS Philippines)) (CC and) (NP (NNP Pakistan))))) (VP (VBP have) (NP (NP (NN disap)) (: -) (S (S (VP (VBN peared))) (CC and) (S (NP (NP (NP (NNP India) (POS 's)) (JJ recent) (NNS elections)) (, ,) (NP (NP (DT the) (NN larg)) (PRN (: -) (S (NP (NP (NN est) (NN exercise)) (PP (IN of) (NP (NP (JJ popular) (NN choice)) (PP (IN in) (NP (JJ human)))))) (NP (PRP$ his))) (: -))) (ADJP (JJ tory)) (, ,)) (VP (VBZ reminds) (NP (PRP us)) (PP (PP (IN of) (NP (NP (DT the) (NN appeal)) (PP (IN of) (NP (NN democracy))))) (PP (TO to) (RB even)))))))) (NP (NP (DT the) (NN world) (POS 's)) (JJS poorest) (NNS people)) (. .)))
+
+
+ ROOT
+ have
+
+
+ In
+ Elsewhere
+
+
+ have
+ In
+
+
+ decade
+ the
+
+
+ decade
+ just
+
+
+ decade
+ concluded
+
+
+ In
+ decade
+
+
+ have
+ dictatorships
+
+
+ dictatorships
+ in
+
+
+ Philippines
+ the
+
+
+ in
+ Philippines
+
+
+ Philippines
+ and
+
+
+ Philippines
+ Pakistan
+
+
+ have
+ disap
+
+
+ disap
+ peared
+
+
+ peared
+ and
+
+
+ elections
+ India
+
+
+ India
+ 's
+
+
+ elections
+ recent
+
+
+ reminds
+ elections
+
+
+ larg
+ the
+
+
+ elections
+ larg
+
+
+ exercise
+ est
+
+
+ his
+ exercise
+
+
+ exercise
+ of
+
+
+ choice
+ popular
+
+
+ of
+ choice
+
+
+ choice
+ in
+
+
+ in
+ human
+
+
+ larg
+ his
+
+
+ elections
+ tory
+
+
+ peared
+ reminds
+
+
+ reminds
+ us
+
+
+ reminds
+ of
+
+
+ appeal
+ the
+
+
+ of
+ appeal
+
+
+ appeal
+ of
+
+
+ of
+ democracy
+
+
+ of
+ to
+
+
+ to
+ even
+
+
+ world
+ the
+
+
+ people
+ world
+
+
+ world
+ 's
+
+
+ people
+ poorest
+
+
+ have
+ people
+
+
+
+
+ ROOT
+ have
+
+
+ have
+ Elsewhere
+
+
+ decade
+ the
+
+
+ decade
+ just
+
+
+ decade
+ concluded
+
+
+ have
+ decade
+
+
+ have
+ dictatorships
+
+
+ Philippines
+ the
+
+
+ dictatorships
+ Philippines
+
+
+ Philippines
+ Pakistan
+
+
+ have
+ disap
+
+
+ disap
+ peared
+
+
+ elections
+ India
+
+
+ elections
+ recent
+
+
+ reminds
+ elections
+
+
+ larg
+ the
+
+
+ elections
+ larg
+
+
+ exercise
+ est
+
+
+ his
+ exercise
+
+
+ choice
+ popular
+
+
+ exercise
+ choice
+
+
+ choice
+ human
+
+
+ larg
+ his
+
+
+ elections
+ tory
+
+
+ peared
+ reminds
+
+
+ reminds
+ us
+
+
+ appeal
+ the
+
+
+ reminds
+ appeal
+
+
+ appeal
+ democracy
+
+
+ reminds
+ to
+
+
+ to
+ even
+
+
+ world
+ the
+
+
+ people
+ world
+
+
+ people
+ poorest
+
+
+ have
+ people
+
+
+
+
+ ROOT
+ have
+
+
+ have
+ Elsewhere
+
+
+ decade
+ the
+
+
+ decade
+ just
+
+
+ decade
+ concluded
+
+
+ have
+ decade
+
+
+ have
+ dictatorships
+
+
+ Philippines
+ the
+
+
+ dictatorships
+ Philippines
+
+
+ dictatorships
+ Pakistan
+
+
+ Philippines
+ Pakistan
+
+
+ have
+ disap
+
+
+ disap
+ peared
+
+
+ elections
+ India
+
+
+ elections
+ recent
+
+
+ reminds
+ elections
+
+
+ larg
+ the
+
+
+ elections
+ larg
+
+
+ exercise
+ est
+
+
+ his
+ exercise
+
+
+ choice
+ popular
+
+
+ exercise
+ choice
+
+
+ choice
+ human
+
+
+ larg
+ his
+
+
+ elections
+ tory
+
+
+ disap
+ reminds
+
+
+ peared
+ reminds
+
+
+ reminds
+ us
+
+
+ appeal
+ the
+
+
+ reminds
+ appeal
+
+
+ appeal
+ democracy
+
+
+ reminds
+ to
+
+
+ to
+ even
+
+
+ world
+ the
+
+
+ people
+ world
+
+
+ people
+ poorest
+
+
+ have
+ people
+
+
+
+
+
+
+ Of
+ of
+ 15587
+ 15589
+ IN
+ O
+
+
+ course
+ course
+ 15591
+ 15597
+ NN
+ O
+
+
+ ,
+ ,
+ 15597
+ 15598
+ ,
+ O
+
+
+ there
+ there
+ 15599
+ 15604
+ EX
+ O
+
+
+ are
+ be
+ 15605
+ 15608
+ VBP
+ O
+
+
+ setbacks
+ setback
+ 15609
+ 15617
+ NNS
+ O
+
+
+ ,
+ ,
+ 15617
+ 15618
+ ,
+ O
+
+
+ as
+ as
+ 15619
+ 15621
+ IN
+ O
+
+
+ last
+ last
+ 15622
+ 15626
+ JJ
+ DATE
+ XXXX-06 OFFSET P-1Y
+
+
+
+ June
+ June
+ 15627
+ 15631
+ NNP
+ DATE
+ XXXX-06 OFFSET P-1Y
+
+
+
+ 's
+ 's
+ 15631
+ 15633
+ POS
+ O
+
+
+ events
+ event
+ 15635
+ 15641
+ NNS
+ O
+
+
+ in
+ in
+ 15642
+ 15644
+ IN
+ O
+
+
+ Tiananmen
+ Tiananmen
+ 15645
+ 15654
+ NNP
+ O
+
+
+ Square
+ Square
+ 15655
+ 15661
+ NNP
+ O
+
+
+ remind
+ remind
+ 15662
+ 15668
+ VB
+ O
+
+
+ us
+ we
+ 15669
+ 15671
+ PRP
+ O
+
+
+ ,
+ ,
+ 15671
+ 15672
+ ,
+ O
+
+
+ and
+ and
+ 15673
+ 15676
+ CC
+ O
+
+
+ democracy
+ democracy
+ 15678
+ 15687
+ NN
+ O
+
+
+ can
+ can
+ 15688
+ 15691
+ MD
+ O
+
+
+ be
+ be
+ 15692
+ 15694
+ VB
+ O
+
+
+ fragile
+ fragile
+ 15695
+ 15702
+ JJ
+ O
+
+
+ as
+ as
+ 15703
+ 15705
+ IN
+ O
+
+
+ witnessed
+ witness
+ 15706
+ 15715
+ VBN
+ O
+
+
+ by
+ by
+ 15716
+ 15718
+ IN
+ O
+
+
+ recent
+ recent
+ 15720
+ 15726
+ JJ
+ O
+
+
+ events
+ event
+ 15727
+ 15733
+ NNS
+ O
+
+
+ in
+ in
+ 15734
+ 15736
+ IN
+ O
+
+
+ Manila
+ Manila
+ 15737
+ 15743
+ NNP
+ LOCATION
+
+
+ .
+ .
+ 15743
+ 15744
+ .
+ O
+
+
+ (ROOT (S (PP (IN Of) (NP (NN course))) (, ,) (S (NP (EX there)) (VP (VBP are) (NP (NNS setbacks)) (, ,) (SBAR (IN as) (S (NP (NP (NP (JJ last) (NNP June) (POS 's)) (NNS events)) (PP (IN in) (NP (NNP Tiananmen) (NNP Square)))) (VP (VB remind) (NP (PRP us))))))) (, ,) (CC and) (S (NP (NN democracy)) (VP (MD can) (VP (VB be) (ADJP (JJ fragile)) (SBAR (IN as) (S (VP (VBN witnessed) (PP (IN by) (NP (NP (JJ recent) (NNS events)) (PP (IN in) (NP (NNP Manila))))))))))) (. .)))
+
+
+ ROOT
+ are
+
+
+ are
+ Of
+
+
+ Of
+ course
+
+
+ are
+ there
+
+
+ are
+ setbacks
+
+
+ remind
+ as
+
+
+ June
+ last
+
+
+ events
+ June
+
+
+ June
+ 's
+
+
+ remind
+ events
+
+
+ events
+ in
+
+
+ Square
+ Tiananmen
+
+
+ in
+ Square
+
+
+ are
+ remind
+
+
+ remind
+ us
+
+
+ are
+ and
+
+
+ fragile
+ democracy
+
+
+ fragile
+ can
+
+
+ fragile
+ be
+
+
+ are
+ fragile
+
+
+ witnessed
+ as
+
+
+ fragile
+ witnessed
+
+
+ witnessed
+ by
+
+
+ events
+ recent
+
+
+ by
+ events
+
+
+ events
+ in
+
+
+ in
+ Manila
+
+
+
+
+ ROOT
+ are
+
+
+ are
+ course
+
+
+ are
+ there
+
+
+ are
+ setbacks
+
+
+ remind
+ as
+
+
+ June
+ last
+
+
+ events
+ June
+
+
+ remind
+ events
+
+
+ Square
+ Tiananmen
+
+
+ events
+ Square
+
+
+ are
+ remind
+
+
+ remind
+ us
+
+
+ fragile
+ democracy
+
+
+ fragile
+ can
+
+
+ fragile
+ be
+
+
+ are
+ fragile
+
+
+ witnessed
+ as
+
+
+ fragile
+ witnessed
+
+
+ events
+ recent
+
+
+ witnessed
+ events
+
+
+ events
+ Manila
+
+
+
+
+ ROOT
+ are
+
+
+ are
+ course
+
+
+ are
+ there
+
+
+ are
+ setbacks
+
+
+ remind
+ as
+
+
+ June
+ last
+
+
+ events
+ June
+
+
+ remind
+ events
+
+
+ Square
+ Tiananmen
+
+
+ events
+ Square
+
+
+ are
+ remind
+
+
+ remind
+ us
+
+
+ fragile
+ democracy
+
+
+ fragile
+ can
+
+
+ fragile
+ be
+
+
+ are
+ fragile
+
+
+ witnessed
+ as
+
+
+ fragile
+ witnessed
+
+
+ events
+ recent
+
+
+ witnessed
+ events
+
+
+ events
+ Manila
+
+
+
+
+
+
+ Of
+ of
+ 15745
+ 15747
+ IN
+ O
+
+
+ the
+ the
+ 15748
+ 15751
+ DT
+ O
+
+
+ overall
+ overall
+ 15752
+ 15759
+ JJ
+ O
+
+
+ trend
+ trend
+ 15763
+ 15768
+ NN
+ O
+
+
+ ,
+ ,
+ 15768
+ 15769
+ ,
+ O
+
+
+ however
+ however
+ 15770
+ 15777
+ RB
+ O
+
+
+ ,
+ ,
+ 15777
+ 15778
+ ,
+ O
+
+
+ we
+ we
+ 15779
+ 15781
+ PRP
+ O
+
+
+ can
+ can
+ 15782
+ 15785
+ MD
+ O
+
+
+ be
+ be
+ 15786
+ 15788
+ VB
+ O
+
+
+ optimistic
+ optimistic
+ 15789
+ 15799
+ JJ
+ O
+
+
+ :
+ :
+ 15799
+ 15800
+ :
+ O
+
+
+ democ
+ democ
+ 15801
+ 15806
+ NN
+ O
+
+
+ -
+ -
+ 15806
+ 15807
+ :
+ O
+
+
+ racy
+ racy
+ 15809
+ 15813
+ JJ
+ O
+
+
+ Is
+ be
+ 15814
+ 15816
+ VBZ
+ O
+
+
+ indeed
+ indeed
+ 15817
+ 15823
+ RB
+ O
+
+
+ on
+ on
+ 15824
+ 15826
+ IN
+ O
+
+
+ the
+ the
+ 15827
+ 15830
+ DT
+ O
+
+
+ march
+ march
+ 15831
+ 15836
+ NN
+ DATE
+ XXXX-03
+ XXXX-03
+
+
+ .
+ .
+ 15836
+ 15837
+ .
+ O
+
+
+ (ROOT (S (PP (IN Of) (NP (DT the) (JJ overall) (NN trend))) (, ,) (ADVP (RB however)) (, ,) (NP (PRP we)) (VP (MD can) (VP (VB be) (ADJP (JJ optimistic)) (: :) (NP (NP (NN democ)) (: -) (S (NP (JJ racy)) (VP (VBZ Is) (ADVP (RB indeed)) (PP (IN on) (NP (DT the) (NN march)))))))) (. .)))
+
+
+ ROOT
+ optimistic
+
+
+ optimistic
+ Of
+
+
+ trend
+ the
+
+
+ trend
+ overall
+
+
+ Of
+ trend
+
+
+ optimistic
+ however
+
+
+ optimistic
+ we
+
+
+ optimistic
+ can
+
+
+ optimistic
+ be
+
+
+ optimistic
+ democ
+
+
+ Is
+ racy
+
+
+ democ
+ Is
+
+
+ Is
+ indeed
+
+
+ Is
+ on
+
+
+ march
+ the
+
+
+ on
+ march
+
+
+
+
+ ROOT
+ optimistic
+
+
+ trend
+ the
+
+
+ trend
+ overall
+
+
+ optimistic
+ trend
+
+
+ optimistic
+ however
+
+
+ optimistic
+ we
+
+
+ optimistic
+ can
+
+
+ optimistic
+ be
+
+
+ optimistic
+ democ
+
+
+ Is
+ racy
+
+
+ democ
+ Is
+
+
+ Is
+ indeed
+
+
+ march
+ the
+
+
+ Is
+ march
+
+
+
+
+ ROOT
+ optimistic
+
+
+ trend
+ the
+
+
+ trend
+ overall
+
+
+ optimistic
+ trend
+
+
+ optimistic
+ however
+
+
+ optimistic
+ we
+
+
+ optimistic
+ can
+
+
+ optimistic
+ be
+
+
+ optimistic
+ democ
+
+
+ Is
+ racy
+
+
+ democ
+ Is
+
+
+ Is
+ indeed
+
+
+ march
+ the
+
+
+ Is
+ march
+
+
+
+
+
+
+ It
+ it
+ 15841
+ 15843
+ PRP
+ O
+
+
+ is
+ be
+ 15844
+ 15846
+ VBZ
+ O
+
+
+ an
+ a
+ 15847
+ 15849
+ DT
+ O
+
+
+ interesting
+ interesting
+ 15850
+ 15861
+ JJ
+ O
+
+
+ fact
+ fact
+ 15862
+ 15866
+ NN
+ O
+
+
+ that
+ that
+ 15867
+ 15871
+ IN
+ O
+
+
+ modern
+ modern
+ 15872
+ 15878
+ JJ
+ O
+
+
+ histo
+ histo
+ 15879
+ 15884
+ NN
+ O
+
+
+ -
+ -
+ 15884
+ 15885
+ :
+ O
+
+
+ ry
+ ry
+ 15887
+ 15889
+ NN
+ O
+
+
+ has
+ have
+ 15890
+ 15893
+ VBZ
+ O
+
+
+ never
+ never
+ 15894
+ 15899
+ RB
+ O
+
+
+ known
+ know
+ 15900
+ 15905
+ VBN
+ O
+
+
+ a
+ a
+ 15906
+ 15907
+ DT
+ O
+
+
+ war
+ war
+ 15908
+ 15911
+ NN
+ O
+
+
+ between
+ between
+ 15912
+ 15919
+ IN
+ O
+
+
+ demo
+ demo
+ 15920
+ 15924
+ NN
+ O
+
+
+ -
+ -
+ 15924
+ 15925
+ :
+ O
+
+
+ cratic
+ cratic
+ 15927
+ 15933
+ JJ
+ O
+
+
+ states
+ state
+ 15934
+ 15940
+ NNS
+ O
+
+
+ .
+ .
+ 15940
+ 15941
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VBZ is) (NP (DT an) (JJ interesting) (NN fact)) (SBAR (IN that) (S (NP (NP (JJ modern) (NN histo)) (: -) (NP (NN ry))) (VP (VBZ has) (ADVP (RB never)) (VP (VBN known) (NP (NP (NP (DT a) (NN war)) (PP (IN between) (NP (NN demo)))) (: -) (NP (JJ cratic) (NNS states)))))))) (. .)))
+
+
+ ROOT
+ fact
+
+
+ fact
+ It
+
+
+ fact
+ is
+
+
+ fact
+ an
+
+
+ fact
+ interesting
+
+
+ known
+ that
+
+
+ histo
+ modern
+
+
+ known
+ histo
+
+
+ histo
+ ry
+
+
+ known
+ has
+
+
+ known
+ never
+
+
+ fact
+ known
+
+
+ war
+ a
+
+
+ known
+ war
+
+
+ war
+ between
+
+
+ between
+ demo
+
+
+ states
+ cratic
+
+
+ war
+ states
+
+
+
+
+ ROOT
+ fact
+
+
+ fact
+ It
+
+
+ fact
+ is
+
+
+ fact
+ an
+
+
+ fact
+ interesting
+
+
+ known
+ that
+
+
+ histo
+ modern
+
+
+ known
+ histo
+
+
+ histo
+ ry
+
+
+ known
+ has
+
+
+ known
+ never
+
+
+ fact
+ known
+
+
+ war
+ a
+
+
+ known
+ war
+
+
+ war
+ demo
+
+
+ states
+ cratic
+
+
+ war
+ states
+
+
+
+
+ ROOT
+ fact
+
+
+ fact
+ It
+
+
+ fact
+ is
+
+
+ fact
+ an
+
+
+ fact
+ interesting
+
+
+ known
+ that
+
+
+ histo
+ modern
+
+
+ known
+ histo
+
+
+ histo
+ ry
+
+
+ known
+ has
+
+
+ known
+ never
+
+
+ fact
+ known
+
+
+ war
+ a
+
+
+ known
+ war
+
+
+ war
+ demo
+
+
+ states
+ cratic
+
+
+ war
+ states
+
+
+
+
+
+
+ And
+ and
+ 15942
+ 15945
+ CC
+ O
+
+
+ ,
+ ,
+ 15945
+ 15946
+ ,
+ O
+
+
+ Indeed
+ indeed
+ 15947
+ 15953
+ RB
+ O
+
+
+ ,
+ ,
+ 15953
+ 15954
+ ,
+ O
+
+
+ the
+ the
+ 15955
+ 15958
+ DT
+ O
+
+
+ spread
+ spread
+ 15959
+ 15965
+ NN
+ O
+
+
+ of
+ of
+ 15966
+ 15968
+ IN
+ O
+
+
+ de
+ de
+ 15969
+ 15971
+ FW
+ O
+
+
+ -
+ -
+ 15971
+ 15972
+ :
+ O
+
+
+ mocracy
+ mocracy
+ 15974
+ 15981
+ NN
+ O
+
+
+ and
+ and
+ 15982
+ 15985
+ CC
+ O
+
+
+ freedom
+ freedom
+ 15986
+ 15993
+ NN
+ O
+
+
+ across
+ across
+ 15994
+ 16000
+ IN
+ O
+
+
+ Europe
+ Europe
+ 16001
+ 16007
+ NNP
+ LOCATION
+
+
+ has
+ have
+ 16008
+ 16011
+ VBZ
+ O
+
+
+ re
+ re
+ 16012
+ 16014
+ SYM
+ O
+
+
+ -
+ -
+ 16014
+ 16015
+ :
+ O
+
+
+ sulted
+ sulted
+ 16017
+ 16023
+ JJ
+ O
+
+
+ In
+ in
+ 16024
+ 16026
+ IN
+ O
+
+
+ a
+ a
+ 16027
+ 16028
+ DT
+ O
+
+
+ dramatic
+ dramatic
+ 16029
+ 16037
+ JJ
+ O
+
+
+ reduction
+ reduction
+ 16038
+ 16047
+ NN
+ O
+
+
+ of
+ of
+ 16048
+ 16050
+ IN
+ O
+
+
+ tensions
+ tension
+ 16051
+ 16059
+ NNS
+ O
+
+
+ .
+ .
+ 16059
+ 16060
+ .
+ O
+
+
+ (ROOT (S (CC And) (, ,) (ADVP (RB Indeed)) (, ,) (NP (NP (DT the) (NN spread)) (PP (IN of) (NP (NP (FW de)) (: -) (NP (NP (NN mocracy) (CC and) (NN freedom)) (PP (IN across) (NP (NNP Europe))))))) (VP (VBZ has) (FRAG (PP (X (SYM re)) (: -) (PP (NP (JJ sulted)) (IN In) (NP (NP (DT a) (JJ dramatic) (NN reduction)) (PP (IN of) (NP (NNS tensions))))) (. .))))))
+
+
+ ROOT
+ has
+
+
+ has
+ And
+
+
+ has
+ Indeed
+
+
+ spread
+ the
+
+
+ has
+ spread
+
+
+ spread
+ of
+
+
+ of
+ de
+
+
+ de
+ mocracy
+
+
+ mocracy
+ and
+
+
+ mocracy
+ freedom
+
+
+ mocracy
+ across
+
+
+ across
+ Europe
+
+
+ In
+ re
+
+
+ In
+ sulted
+
+
+ has
+ In
+
+
+ reduction
+ a
+
+
+ reduction
+ dramatic
+
+
+ In
+ reduction
+
+
+ reduction
+ of
+
+
+ of
+ tensions
+
+
+
+
+ ROOT
+ has
+
+
+ has
+ And
+
+
+ has
+ Indeed
+
+
+ spread
+ the
+
+
+ has
+ spread
+
+
+ spread
+ de
+
+
+ de
+ mocracy
+
+
+ mocracy
+ freedom
+
+
+ mocracy
+ Europe
+
+
+ In
+ re
+
+
+ In
+ sulted
+
+
+ has
+ In
+
+
+ reduction
+ a
+
+
+ reduction
+ dramatic
+
+
+ In
+ reduction
+
+
+ reduction
+ tensions
+
+
+
+
+ ROOT
+ has
+
+
+ has
+ And
+
+
+ has
+ Indeed
+
+
+ spread
+ the
+
+
+ has
+ spread
+
+
+ spread
+ de
+
+
+ de
+ mocracy
+
+
+ de
+ freedom
+
+
+ mocracy
+ freedom
+
+
+ mocracy
+ Europe
+
+
+ In
+ re
+
+
+ In
+ sulted
+
+
+ has
+ In
+
+
+ reduction
+ a
+
+
+ reduction
+ dramatic
+
+
+ In
+ reduction
+
+
+ reduction
+ tensions
+
+
+
+
+
+
+ In
+ in
+ 16062
+ 16064
+ IN
+ O
+
+
+ 1981
+ 1981
+ 16065
+ 16069
+ CD
+ DATE
+ 1981
+ 1981
+
+
+ ,
+ ,
+ 16069
+ 16070
+ ,
+ O
+
+
+ the
+ the
+ 16071
+ 16074
+ DT
+ O
+
+
+ Bulletin
+ Bulletin
+ 16075
+ 16083
+ NNP
+ O
+
+
+ of
+ of
+ 16084
+ 16086
+ IN
+ O
+
+
+ Atomic
+ atomic
+ 16087
+ 16093
+ JJ
+ O
+
+
+ Scientists
+ scientist
+ 16094
+ 16104
+ NNS
+ O
+
+
+ advanced
+ advance
+ 16106
+ 16114
+ VBD
+ O
+
+
+ the
+ the
+ 16115
+ 16118
+ DT
+ O
+
+
+ clock
+ clock
+ 16119
+ 16124
+ NN
+ O
+
+
+ of
+ of
+ 16125
+ 16127
+ IN
+ O
+
+
+ global
+ global
+ 16128
+ 16134
+ JJ
+ O
+
+
+ survival
+ survival
+ 16135
+ 16143
+ NN
+ O
+
+
+ to
+ to
+ 16144
+ 16146
+ TO
+ O
+
+
+ three
+ three
+ 16148
+ 16153
+ CD
+ DURATION
+ PT3M
+
+
+ minutes
+ minute
+ 16154
+ 16161
+ NNS
+ NUMBER
+ 0.0
+ PT3M
+
+
+ before
+ before
+ 16162
+ 16168
+ IN
+ O
+
+
+ the
+ the
+ 16169
+ 16172
+ DT
+ O
+
+
+ midnight
+ midnight
+ 16173
+ 16181
+ NN
+ TIME
+ T00:00
+ T00:00
+
+
+ of
+ of
+ 16182
+ 16184
+ IN
+ O
+
+
+ nucle
+ nucle
+ 16185
+ 16190
+ NN
+ O
+
+
+ -
+ -
+ 16190
+ 16191
+ :
+ O
+
+
+ ar
+ ar
+ 16193
+ 16195
+ NN
+ O
+
+
+ Armageddon
+ Armageddon
+ 16196
+ 16206
+ NNP
+ O
+
+
+ .
+ .
+ 16206
+ 16207
+ .
+ O
+
+
+ (ROOT (S (PP (IN In) (NP (CD 1981))) (, ,) (NP (NP (DT the) (NNP Bulletin)) (PP (IN of) (NP (JJ Atomic) (NNS Scientists)))) (VP (VBD advanced) (NP (NP (DT the) (NN clock)) (PP (IN of) (NP (JJ global) (NN survival)))) (PP (TO to) (NP (CD three) (NNS minutes))) (PP (IN before) (NP (NP (NP (DT the) (NN midnight)) (PP (IN of) (NP (NN nucle)))) (: -) (NP (NP (NN ar)) (NP (NNP Armageddon)))))) (. .)))
+
+
+ ROOT
+ advanced
+
+
+ advanced
+ In
+
+
+ In
+ 1981
+
+
+ Bulletin
+ the
+
+
+ advanced
+ Bulletin
+
+
+ Bulletin
+ of
+
+
+ Scientists
+ Atomic
+
+
+ of
+ Scientists
+
+
+ clock
+ the
+
+
+ advanced
+ clock
+
+
+ clock
+ of
+
+
+ survival
+ global
+
+
+ of
+ survival
+
+
+ advanced
+ to
+
+
+ minutes
+ three
+
+
+ to
+ minutes
+
+
+ advanced
+ before
+
+
+ midnight
+ the
+
+
+ before
+ midnight
+
+
+ midnight
+ of
+
+
+ of
+ nucle
+
+
+ midnight
+ ar
+
+
+ ar
+ Armageddon
+
+
+
+
+ ROOT
+ advanced
+
+
+ advanced
+ 1981
+
+
+ Bulletin
+ the
+
+
+ advanced
+ Bulletin
+
+
+ Scientists
+ Atomic
+
+
+ Bulletin
+ Scientists
+
+
+ clock
+ the
+
+
+ advanced
+ clock
+
+
+ survival
+ global
+
+
+ clock
+ survival
+
+
+ minutes
+ three
+
+
+ advanced
+ minutes
+
+
+ midnight
+ the
+
+
+ advanced
+ midnight
+
+
+ midnight
+ nucle
+
+
+ midnight
+ ar
+
+
+ ar
+ Armageddon
+
+
+
+
+ ROOT
+ advanced
+
+
+ advanced
+ 1981
+
+
+ Bulletin
+ the
+
+
+ advanced
+ Bulletin
+
+
+ Scientists
+ Atomic
+
+
+ Bulletin
+ Scientists
+
+
+ clock
+ the
+
+
+ advanced
+ clock
+
+
+ survival
+ global
+
+
+ clock
+ survival
+
+
+ minutes
+ three
+
+
+ advanced
+ minutes
+
+
+ midnight
+ the
+
+
+ advanced
+ midnight
+
+
+ midnight
+ nucle
+
+
+ midnight
+ ar
+
+
+ ar
+ Armageddon
+
+
+
+
+
+
+ Today
+ today
+ 16208
+ 16213
+ NN
+ DATE
+ THIS P1D
+
+
+
+ with
+ with
+ 16214
+ 16218
+ IN
+ O
+
+
+ a
+ a
+ 16219
+ 16220
+ DT
+ O
+
+
+ treaty
+ treaty
+ 16221
+ 16227
+ NN
+ O
+
+
+ on
+ on
+ 16228
+ 16230
+ IN
+ O
+
+
+ In
+ in
+ 16231
+ 16233
+ IN
+ O
+
+
+ -
+ -
+ 16233
+ 16234
+ :
+ O
+
+
+ termediate
+ termediate
+ 16236
+ 16246
+ JJ
+ O
+
+
+ Nuclear
+ nuclear
+ 16247
+ 16254
+ JJ
+ O
+
+
+ Forces
+ force
+ 16255
+ 16261
+ NNS
+ O
+
+
+ In
+ in
+ 16262
+ 16264
+ IN
+ O
+
+
+ place
+ place
+ 16265
+ 16270
+ NN
+ O
+
+
+ and
+ and
+ 16271
+ 16274
+ CC
+ O
+
+
+ agreements
+ agreement
+ 16276
+ 16286
+ NNS
+ O
+
+
+ for
+ for
+ 16287
+ 16290
+ IN
+ O
+
+
+ drastic
+ drastic
+ 16291
+ 16298
+ JJ
+ O
+
+
+ reductions
+ reduction
+ 16299
+ 16309
+ NNS
+ O
+
+
+ in
+ in
+ 16310
+ 16312
+ IN
+ O
+
+
+ strate
+ strate
+ 16313
+ 16319
+ NN
+ O
+
+
+ -
+ -
+ 16319
+ 16320
+ :
+ O
+
+
+ gic
+ gic
+ 16322
+ 16325
+ JJ
+ O
+
+
+ and
+ and
+ 16326
+ 16329
+ CC
+ O
+
+
+ conventional
+ conventional
+ 16330
+ 16342
+ JJ
+ O
+
+
+ forces
+ force
+ 16343
+ 16349
+ NNS
+ O
+
+
+ in
+ in
+ 16350
+ 16352
+ IN
+ O
+
+
+ the
+ the
+ 16353
+ 16356
+ DT
+ O
+
+
+ offing
+ offing
+ 16357
+ 16363
+ NN
+ O
+
+
+ ,
+ ,
+ 16363
+ 16364
+ ,
+ O
+
+
+ we
+ we
+ 16365
+ 16367
+ PRP
+ O
+
+
+ can
+ can
+ 16369
+ 16372
+ MD
+ O
+
+
+ see
+ see
+ 16373
+ 16376
+ VB
+ O
+
+
+ the
+ the
+ 16377
+ 16380
+ DT
+ O
+
+
+ hands
+ hand
+ 16381
+ 16386
+ NNS
+ O
+
+
+ of
+ of
+ 16387
+ 16389
+ IN
+ O
+
+
+ that
+ that
+ 16390
+ 16394
+ DT
+ O
+
+
+ clock
+ clock
+ 16395
+ 16400
+ NN
+ O
+
+
+ being
+ be
+ 16401
+ 16406
+ VBG
+ O
+
+
+ set
+ set
+ 16407
+ 16410
+ VBN
+ O
+
+
+ further
+ further
+ 16412
+ 16419
+ RB
+ O
+
+
+ back
+ back
+ 16420
+ 16424
+ RB
+ O
+
+
+ .
+ .
+ 16424
+ 16425
+ .
+ O
+
+
+ (ROOT (S (NP (NP (NN Today)) (PP (IN with) (NP (DT a) (NN treaty)))) (PP (IN on) (IN In) (NP (NP (: -) (NP (NP (JJ termediate) (JJ Nuclear) (NNS Forces)) (PP (IN In) (NP (NN place)))) (CC and) (NP (NP (NNS agreements)) (PP (IN for) (NP (NP (JJ drastic) (NNS reductions)) (PP (IN in) (NP (NN strate))))))) (: -) (NP (NP (ADJP (JJ gic) (CC and) (JJ conventional)) (NNS forces)) (PP (IN in) (NP (DT the) (NN offing)))))) (, ,) (NP (PRP we)) (VP (MD can) (VP (VB see) (NP (NP (DT the) (NNS hands)) (PP (IN of) (NP (NP (DT that) (NN clock)) (VP (VBG being) (VP (VBN set) (ADVP (RB further) (RB back))))))))) (. .)))
+
+
+ ROOT
+ see
+
+
+ see
+ Today
+
+
+ Today
+ with
+
+
+ treaty
+ a
+
+
+ with
+ treaty
+
+
+ In
+ on
+
+
+ see
+ In
+
+
+ Forces
+ termediate
+
+
+ Forces
+ Nuclear
+
+
+ In
+ Forces
+
+
+ Forces
+ In
+
+
+ In
+ place
+
+
+ Forces
+ and
+
+
+ Forces
+ agreements
+
+
+ agreements
+ for
+
+
+ reductions
+ drastic
+
+
+ for
+ reductions
+
+
+ reductions
+ in
+
+
+ in
+ strate
+
+
+ forces
+ gic
+
+
+ gic
+ and
+
+
+ gic
+ conventional
+
+
+ Forces
+ forces
+
+
+ forces
+ in
+
+
+ offing
+ the
+
+
+ in
+ offing
+
+
+ see
+ we
+
+
+ see
+ can
+
+
+ hands
+ the
+
+
+ see
+ hands
+
+
+ hands
+ of
+
+
+ clock
+ that
+
+
+ of
+ clock
+
+
+ set
+ being
+
+
+ clock
+ set
+
+
+ back
+ further
+
+
+ set
+ back
+
+
+
+
+ ROOT
+ see
+
+
+ see
+ Today
+
+
+ treaty
+ a
+
+
+ Today
+ treaty
+
+
+ see
+ on
+
+
+ Forces
+ termediate
+
+
+ Forces
+ Nuclear
+
+
+ see
+ Forces
+
+
+ Forces
+ place
+
+
+ Forces
+ agreements
+
+
+ reductions
+ drastic
+
+
+ agreements
+ reductions
+
+
+ reductions
+ strate
+
+
+ forces
+ gic
+
+
+ gic
+ conventional
+
+
+ Forces
+ forces
+
+
+ offing
+ the
+
+
+ forces
+ offing
+
+
+ see
+ we
+
+
+ see
+ can
+
+
+ hands
+ the
+
+
+ see
+ hands
+
+
+ clock
+ that
+
+
+ hands
+ clock
+
+
+ set
+ being
+
+
+ clock
+ set
+
+
+ back
+ further
+
+
+ set
+ back
+
+
+
+
+ ROOT
+ see
+
+
+ see
+ Today
+
+
+ treaty
+ a
+
+
+ Today
+ treaty
+
+
+ see
+ on
+
+
+ Forces
+ termediate
+
+
+ Forces
+ Nuclear
+
+
+ see
+ Forces
+
+
+ Forces
+ place
+
+
+ Forces
+ agreements
+
+
+ see
+ agreements
+
+
+ reductions
+ drastic
+
+
+ agreements
+ reductions
+
+
+ reductions
+ strate
+
+
+ forces
+ gic
+
+
+ gic
+ conventional
+
+
+ forces
+ conventional
+
+
+ Forces
+ forces
+
+
+ offing
+ the
+
+
+ forces
+ offing
+
+
+ see
+ we
+
+
+ see
+ can
+
+
+ hands
+ the
+
+
+ see
+ hands
+
+
+ clock
+ that
+
+
+ hands
+ clock
+
+
+ set
+ being
+
+
+ clock
+ set
+
+
+ back
+ further
+
+
+ set
+ back
+
+
+
+
+
+
+ We
+ we
+ 16429
+ 16431
+ PRP
+ O
+
+
+ in
+ in
+ 16432
+ 16434
+ IN
+ O
+
+
+ the
+ the
+ 16435
+ 16438
+ DT
+ O
+
+
+ United
+ United
+ 16439
+ 16445
+ NNP
+ LOCATION
+
+
+ States
+ States
+ 16446
+ 16452
+ NNPS
+ LOCATION
+
+
+ consider
+ consider
+ 16453
+ 16461
+ VB
+ O
+
+
+ the
+ the
+ 16462
+ 16465
+ DT
+ O
+
+
+ Eu
+ eu
+ 16466
+ 16468
+ NN
+ ORGANIZATION
+
+
+ -
+ -
+ 16468
+ 16469
+ :
+ O
+
+
+ ropean
+ ropean
+ 16471
+ 16477
+ NN
+ O
+
+
+ democracies
+ democracy
+ 16478
+ 16489
+ NNS
+ O
+
+
+ to
+ to
+ 16490
+ 16492
+ TO
+ O
+
+
+ be
+ be
+ 16493
+ 16495
+ VB
+ O
+
+
+ our
+ we
+ 16496
+ 16499
+ PRP$
+ O
+
+
+ friends
+ friend
+ 16500
+ 16507
+ NNS
+ O
+
+
+ and
+ and
+ 16508
+ 16511
+ CC
+ O
+
+
+ allies
+ ally
+ 16513
+ 16519
+ NNS
+ O
+
+
+ .
+ .
+ 16519
+ 16520
+ .
+ O
+
+
+ (ROOT (S (NP (NP (PRP We)) (PP (IN in) (NP (DT the) (NNP United) (NNPS States)))) (VP (VB consider) (NP (NP (DT the) (NN Eu)) (: -) (NP (NN ropean) (NNS democracies) (S (VP (TO to) (VP (VB be) (NP (PRP$ our) (NNS friends) (CC and) (NNS allies)))))))) (. .)))
+
+
+ ROOT
+ consider
+
+
+ consider
+ We
+
+
+ We
+ in
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ in
+ States
+
+
+ Eu
+ the
+
+
+ consider
+ Eu
+
+
+ democracies
+ ropean
+
+
+ Eu
+ democracies
+
+
+ friends
+ to
+
+
+ friends
+ be
+
+
+ friends
+ our
+
+
+ democracies
+ friends
+
+
+ friends
+ and
+
+
+ friends
+ allies
+
+
+
+
+ ROOT
+ consider
+
+
+ consider
+ We
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ We
+ States
+
+
+ Eu
+ the
+
+
+ consider
+ Eu
+
+
+ democracies
+ ropean
+
+
+ Eu
+ democracies
+
+
+ friends
+ to
+
+
+ friends
+ be
+
+
+ friends
+ our
+
+
+ democracies
+ friends
+
+
+ friends
+ allies
+
+
+
+
+ ROOT
+ consider
+
+
+ consider
+ We
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ We
+ States
+
+
+ Eu
+ the
+
+
+ consider
+ Eu
+
+
+ democracies
+ ropean
+
+
+ Eu
+ democracies
+
+
+ friends
+ to
+
+
+ friends
+ be
+
+
+ friends
+ our
+
+
+ democracies
+ friends
+
+
+ democracies
+ allies
+
+
+ friends
+ allies
+
+
+
+
+
+
+ Looking
+ look
+ 16521
+ 16528
+ VBG
+ O
+
+
+ ahead
+ ahead
+ 16529
+ 16534
+ RB
+ O
+
+
+ we
+ we
+ 16535
+ 16537
+ PRP
+ O
+
+
+ might
+ might
+ 16538
+ 16543
+ MD
+ O
+
+
+ ask
+ ask
+ 16544
+ 16547
+ VB
+ O
+
+
+ whether
+ whether
+ 16548
+ 16555
+ IN
+ O
+
+
+ democratic
+ democratic
+ 16557
+ 16567
+ JJ
+ O
+
+
+ nations
+ nation
+ 16568
+ 16575
+ NNS
+ O
+
+
+ in
+ in
+ 16576
+ 16578
+ IN
+ O
+
+
+ Eastern
+ Eastern
+ 16579
+ 16586
+ NNP
+ LOCATION
+
+
+ Europe
+ Europe
+ 16587
+ 16593
+ NNP
+ LOCATION
+
+
+ and
+ and
+ 16594
+ 16597
+ CC
+ O
+
+
+ the
+ the
+ 16599
+ 16602
+ DT
+ O
+
+
+ Soviet
+ Soviet
+ 16603
+ 16609
+ NNP
+ LOCATION
+
+
+ Union
+ Union
+ 16610
+ 16615
+ NNP
+ LOCATION
+
+
+ might
+ might
+ 16616
+ 16621
+ MD
+ O
+
+
+ also
+ also
+ 16622
+ 16626
+ RB
+ O
+
+
+ be
+ be
+ 16627
+ 16629
+ VB
+ O
+
+
+ our
+ we
+ 16630
+ 16633
+ PRP$
+ O
+
+
+ friends
+ friend
+ 16634
+ 16641
+ NNS
+ O
+
+
+ and
+ and
+ 16643
+ 16646
+ CC
+ O
+
+
+ allies
+ ally
+ 16647
+ 16653
+ NNS
+ O
+
+
+ ,
+ ,
+ 16653
+ 16654
+ ,
+ O
+
+
+ and
+ and
+ 16655
+ 16658
+ CC
+ O
+
+
+ if
+ if
+ 16659
+ 16661
+ IN
+ O
+
+
+ so
+ so
+ 16662
+ 16664
+ RB
+ O
+
+
+ ,
+ ,
+ 16664
+ 16665
+ ,
+ O
+
+
+ for
+ for
+ 16666
+ 16669
+ IN
+ O
+
+
+ what
+ what
+ 16670
+ 16674
+ WP
+ O
+
+
+ threat
+ threat
+ 16675
+ 16681
+ NN
+ O
+
+
+ do
+ do
+ 16682
+ 16684
+ VBP
+ O
+
+
+ we
+ we
+ 16685
+ 16687
+ PRP
+ O
+
+
+ need
+ need
+ 16689
+ 16693
+ VB
+ O
+
+
+ anything
+ anything
+ 16694
+ 16702
+ NN
+ O
+
+
+ comparable
+ comparable
+ 16703
+ 16713
+ JJ
+ O
+
+
+ to
+ to
+ 16714
+ 16716
+ TO
+ O
+
+
+ our
+ we
+ 16717
+ 16720
+ PRP$
+ O
+
+
+ existing
+ exist
+ 16721
+ 16729
+ VBG
+ O
+
+
+ level
+ level
+ 16731
+ 16736
+ NN
+ O
+
+
+ of
+ of
+ 16737
+ 16739
+ IN
+ O
+
+
+ armaments
+ armament
+ 16740
+ 16749
+ NNS
+ O
+
+
+ ?
+ ?
+ 16749
+ 16750
+ .
+ O
+
+
+ (ROOT (S (VP (VBG Looking) (S (ADVP (RB ahead)) (NP (PRP we)) (VP (MD might) (VP (VB ask) (NP (SBAR (IN whether) (S (NP (NP (JJ democratic) (NNS nations)) (PP (IN in) (NP (NP (NNP Eastern) (NNP Europe)) (CC and) (NP (DT the) (NNP Soviet) (NNP Union))))) (VP (MD might) (ADVP (RB also)) (VP (VB be) (NP (PRP$ our) (NNS friends) (CC and) (NNS allies)))))) (, ,) (CC and) (SBAR (IN if) (FRAG (ADVP (RB so))))) (, ,) (PP (IN for) (SBARQ (WHNP (WP what) (NN threat)) (SQ (VBP do) (NP (PRP we)) (VP (VB need) (S (NP (NN anything)) (ADJP (JJ comparable) (PP (TO to) (NP (NP (PRP$ our) (VBG existing) (NN level)) (PP (IN of) (NP (NNS armaments))))))))) (. ?)))))))))
+
+
+ ROOT
+ Looking
+
+
+ ask
+ ahead
+
+
+ ask
+ we
+
+
+ ask
+ might
+
+
+ Looking
+ ask
+
+
+ friends
+ whether
+
+
+ nations
+ democratic
+
+
+ friends
+ nations
+
+
+ nations
+ in
+
+
+ Europe
+ Eastern
+
+
+ in
+ Europe
+
+
+ Europe
+ and
+
+
+ Union
+ the
+
+
+ Union
+ Soviet
+
+
+ Europe
+ Union
+
+
+ friends
+ might
+
+
+ friends
+ also
+
+
+ friends
+ be
+
+
+ friends
+ our
+
+
+ ask
+ friends
+
+
+ friends
+ and
+
+
+ friends
+ allies
+
+
+ friends
+ and
+
+
+ so
+ if
+
+
+ friends
+ so
+
+
+ ask
+ for
+
+
+ threat
+ what
+
+
+ need
+ threat
+
+
+ need
+ do
+
+
+ need
+ we
+
+
+ for
+ need
+
+
+ comparable
+ anything
+
+
+ need
+ comparable
+
+
+ comparable
+ to
+
+
+ level
+ our
+
+
+ level
+ existing
+
+
+ to
+ level
+
+
+ level
+ of
+
+
+ of
+ armaments
+
+
+
+
+ ROOT
+ Looking
+
+
+ ask
+ ahead
+
+
+ ask
+ we
+
+
+ ask
+ might
+
+
+ Looking
+ ask
+
+
+ friends
+ whether
+
+
+ nations
+ democratic
+
+
+ friends
+ nations
+
+
+ Europe
+ Eastern
+
+
+ nations
+ Europe
+
+
+ Union
+ the
+
+
+ Union
+ Soviet
+
+
+ Europe
+ Union
+
+
+ friends
+ might
+
+
+ friends
+ also
+
+
+ friends
+ be
+
+
+ friends
+ our
+
+
+ ask
+ friends
+
+
+ friends
+ allies
+
+
+ so
+ if
+
+
+ friends
+ so
+
+
+ ask
+ for
+
+
+ threat
+ what
+
+
+ need
+ threat
+
+
+ need
+ do
+
+
+ need
+ we
+
+
+ for
+ need
+
+
+ comparable
+ anything
+
+
+ need
+ comparable
+
+
+ level
+ our
+
+
+ level
+ existing
+
+
+ comparable
+ level
+
+
+ level
+ armaments
+
+
+
+
+ ROOT
+ Looking
+
+
+ ask
+ ahead
+
+
+ ask
+ we
+
+
+ ask
+ might
+
+
+ Looking
+ ask
+
+
+ friends
+ whether
+
+
+ nations
+ democratic
+
+
+ friends
+ nations
+
+
+ Europe
+ Eastern
+
+
+ nations
+ Europe
+
+
+ Union
+ the
+
+
+ Union
+ Soviet
+
+
+ nations
+ Union
+
+
+ Europe
+ Union
+
+
+ friends
+ might
+
+
+ friends
+ also
+
+
+ friends
+ be
+
+
+ friends
+ our
+
+
+ ask
+ friends
+
+
+ ask
+ allies
+
+
+ friends
+ allies
+
+
+ so
+ if
+
+
+ ask
+ so
+
+
+ friends
+ so
+
+
+ ask
+ for
+
+
+ threat
+ what
+
+
+ need
+ threat
+
+
+ need
+ do
+
+
+ need
+ we
+
+
+ for
+ need
+
+
+ comparable
+ anything
+
+
+ need
+ comparable
+
+
+ level
+ our
+
+
+ level
+ existing
+
+
+ comparable
+ level
+
+
+ level
+ armaments
+
+
+
+
+
+
+ A
+ a
+ 16754
+ 16755
+ DT
+ O
+
+
+ more
+ more
+ 16756
+ 16760
+ JJR
+ O
+
+
+ peaceful
+ peaceful
+ 16761
+ 16769
+ JJ
+ O
+
+
+ world
+ world
+ 16770
+ 16775
+ NN
+ O
+
+
+ does
+ do
+ 16776
+ 16780
+ VBZ
+ O
+
+
+ not
+ not
+ 16781
+ 16784
+ RB
+ O
+
+
+ translate
+ translate
+ 16785
+ 16794
+ VB
+ O
+
+
+ into
+ into
+ 16796
+ 16800
+ IN
+ O
+
+
+ a
+ a
+ 16801
+ 16802
+ DT
+ O
+
+
+ problem-free
+ problem-free
+ 16803
+ 16815
+ JJ
+ O
+
+
+ world
+ world
+ 16816
+ 16821
+ NN
+ O
+
+
+ .
+ .
+ 16821
+ 16822
+ .
+ O
+
+
+ (ROOT (S (NP (DT A) (JJR more) (JJ peaceful) (NN world)) (VP (VBZ does) (RB not) (VP (VB translate) (PP (IN into) (NP (DT a) (JJ problem-free) (NN world))))) (. .)))
+
+
+ ROOT
+ translate
+
+
+ world
+ A
+
+
+ world
+ more
+
+
+ world
+ peaceful
+
+
+ translate
+ world
+
+
+ translate
+ does
+
+
+ translate
+ not
+
+
+ translate
+ into
+
+
+ world
+ a
+
+
+ world
+ problem-free
+
+
+ into
+ world
+
+
+
+
+ ROOT
+ translate
+
+
+ world
+ A
+
+
+ world
+ more
+
+
+ world
+ peaceful
+
+
+ translate
+ world
+
+
+ translate
+ does
+
+
+ translate
+ not
+
+
+ world
+ a
+
+
+ world
+ problem-free
+
+
+ translate
+ world
+
+
+
+
+ ROOT
+ translate
+
+
+ world
+ A
+
+
+ world
+ more
+
+
+ world
+ peaceful
+
+
+ translate
+ world
+
+
+ translate
+ does
+
+
+ translate
+ not
+
+
+ world
+ a
+
+
+ world
+ problem-free
+
+
+ translate
+ world
+
+
+
+
+
+
+ Indeed
+ indeed
+ 16823
+ 16829
+ RB
+ O
+
+
+ ,
+ ,
+ 16829
+ 16830
+ ,
+ O
+
+
+ as
+ as
+ 16831
+ 16833
+ IN
+ O
+
+
+ the
+ the
+ 16834
+ 16837
+ DT
+ O
+
+
+ threat
+ threat
+ 16839
+ 16845
+ NN
+ O
+
+
+ of
+ of
+ 16846
+ 16848
+ IN
+ O
+
+
+ nuclear
+ nuclear
+ 16849
+ 16856
+ JJ
+ O
+
+
+ incineration
+ incineration
+ 16857
+ 16869
+ NN
+ O
+
+
+ recedes
+ recede
+ 16870
+ 16877
+ VBZ
+ O
+
+
+ ,
+ ,
+ 16877
+ 16878
+ ,
+ O
+
+
+ we
+ we
+ 16879
+ 16881
+ PRP
+ O
+
+
+ can
+ can
+ 16883
+ 16886
+ MD
+ O
+
+
+ see
+ see
+ 16887
+ 16890
+ VB
+ O
+
+
+ more
+ more
+ 16891
+ 16895
+ JJR
+ O
+
+
+ clearly
+ clearly
+ 16896
+ 16903
+ RB
+ O
+
+
+ the
+ the
+ 16904
+ 16907
+ DT
+ O
+
+
+ danger
+ danger
+ 16908
+ 16914
+ NN
+ O
+
+
+ posed
+ pose
+ 16915
+ 16920
+ VBN
+ O
+
+
+ by
+ by
+ 16921
+ 16923
+ IN
+ O
+
+
+ environmental
+ environmental
+ 16925
+ 16938
+ JJ
+ O
+
+
+ degradation
+ degradation
+ 16939
+ 16950
+ NN
+ O
+
+
+ and
+ and
+ 16951
+ 16954
+ CC
+ O
+
+
+ global
+ global
+ 16955
+ 16961
+ JJ
+ O
+
+
+ cli
+ cli
+ 16962
+ 16965
+ SYM
+ O
+
+
+ -
+ -
+ 16965
+ 16966
+ :
+ O
+
+
+ mate
+ mate
+ 16968
+ 16972
+ NN
+ O
+
+
+ change
+ change
+ 16973
+ 16979
+ NN
+ O
+
+
+ .
+ .
+ 16979
+ 16980
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB Indeed)) (, ,) (SBAR (IN as) (S (NP (NP (DT the) (NN threat)) (PP (IN of) (NP (JJ nuclear) (NN incineration)))) (VP (VBZ recedes)))) (, ,) (NP (PRP we)) (VP (MD can) (VP (VB see) (NP (JJR more)) (S (VP (ADVP (RB clearly) (NP (DT the) (NN danger))) (VBN posed) (PP (IN by)) (NP (NP (NP (JJ environmental) (NN degradation)) (CC and) (NP (JJ global))) (X (X (SYM cli)) (: -) (NP (NN mate) (NN change)) (. .)))))))))
+
+
+ ROOT
+ see
+
+
+ see
+ Indeed
+
+
+ recedes
+ as
+
+
+ threat
+ the
+
+
+ recedes
+ threat
+
+
+ threat
+ of
+
+
+ incineration
+ nuclear
+
+
+ of
+ incineration
+
+
+ see
+ recedes
+
+
+ see
+ we
+
+
+ see
+ can
+
+
+ see
+ more
+
+
+ posed
+ clearly
+
+
+ danger
+ the
+
+
+ clearly
+ danger
+
+
+ see
+ posed
+
+
+ posed
+ by
+
+
+ degradation
+ environmental
+
+
+ posed
+ degradation
+
+
+ degradation
+ and
+
+
+ degradation
+ global
+
+
+ change
+ cli
+
+
+ change
+ mate
+
+
+ degradation
+ change
+
+
+
+
+ ROOT
+ see
+
+
+ see
+ Indeed
+
+
+ recedes
+ as
+
+
+ threat
+ the
+
+
+ recedes
+ threat
+
+
+ incineration
+ nuclear
+
+
+ threat
+ incineration
+
+
+ see
+ recedes
+
+
+ see
+ we
+
+
+ see
+ can
+
+
+ see
+ more
+
+
+ posed
+ clearly
+
+
+ danger
+ the
+
+
+ clearly
+ danger
+
+
+ see
+ posed
+
+
+ posed
+ by
+
+
+ degradation
+ environmental
+
+
+ posed
+ degradation
+
+
+ degradation
+ global
+
+
+ change
+ cli
+
+
+ change
+ mate
+
+
+ degradation
+ change
+
+
+
+
+ ROOT
+ see
+
+
+ see
+ Indeed
+
+
+ recedes
+ as
+
+
+ threat
+ the
+
+
+ recedes
+ threat
+
+
+ incineration
+ nuclear
+
+
+ threat
+ incineration
+
+
+ see
+ recedes
+
+
+ see
+ we
+
+
+ see
+ can
+
+
+ see
+ more
+
+
+ posed
+ clearly
+
+
+ danger
+ the
+
+
+ clearly
+ danger
+
+
+ see
+ posed
+
+
+ posed
+ by
+
+
+ degradation
+ environmental
+
+
+ posed
+ degradation
+
+
+ posed
+ global
+
+
+ degradation
+ global
+
+
+ change
+ cli
+
+
+ change
+ mate
+
+
+ degradation
+ change
+
+
+
+
+
+
+ As
+ as
+ 16981
+ 16983
+ IN
+ O
+
+
+ nuclear
+ nuclear
+ 16984
+ 16991
+ JJ
+ O
+
+
+ winter
+ winter
+ 16992
+ 16998
+ NN
+ DATE
+ XXXX-WI
+ XXXX-WI
+
+
+ would
+ would
+ 16999
+ 17004
+ MD
+ O
+
+
+ sud
+ sud
+ 17005
+ 17008
+ SYM
+ O
+
+
+ -
+ -
+ 17008
+ 17009
+ :
+ O
+
+
+ denly
+ denly
+ 17011
+ 17016
+ NN
+ O
+
+
+ alter
+ alter
+ 17017
+ 17022
+ VBP
+ O
+
+
+ man
+ man
+ 17023
+ 17026
+ NN
+ O
+
+
+ 's
+ 's
+ 17026
+ 17028
+ POS
+ O
+
+
+ climate
+ climate
+ 17029
+ 17036
+ NN
+ O
+
+
+ and
+ and
+ 17037
+ 17040
+ CC
+ O
+
+
+ prospects
+ prospects
+ 17041
+ 17050
+ NNS
+ O
+
+
+ for
+ for
+ 17051
+ 17054
+ IN
+ O
+
+
+ survival
+ survival
+ 17056
+ 17064
+ NN
+ O
+
+
+ ,
+ ,
+ 17064
+ 17065
+ ,
+ O
+
+
+ so
+ so
+ 17066
+ 17068
+ RB
+ O
+
+
+ might
+ might
+ 17069
+ 17074
+ MD
+ O
+
+
+ global
+ global
+ 17075
+ 17081
+ JJ
+ O
+
+
+ warming
+ warming
+ 17082
+ 17089
+ NN
+ O
+
+
+ albeit
+ albeit
+ 17090
+ 17096
+ IN
+ O
+
+
+ more
+ more
+ 17098
+ 17102
+ JJR
+ O
+
+
+ gradually
+ gradually
+ 17103
+ 17112
+ RB
+ O
+
+
+ .
+ .
+ 17112
+ 17113
+ .
+ O
+
+
+ (ROOT (PP (IN As) (NP (NP (JJ nuclear) (NN winter)) (SBAR (S (VP (MD would)))) (SBAR (FRAG (X (SYM sud)) (: -) (NP (NP (NN denly)) (SBAR (S (VP (VBP alter) (SBAR (S (NP (NP (NP (NN man) (POS 's)) (NN climate)) (CC and) (NP (NP (NNS prospects)) (PP (IN for) (NP (NN survival)))) (, ,)) (ADVP (RB so)) (VP (MD might) (VP (NP (JJ global) (NN warming)) (ADVP (IN albeit) (NP (NP (JJR more)) (ADVP (RB gradually)))))))))))) (. .))))))
+
+
+ ROOT
+ As
+
+
+ winter
+ nuclear
+
+
+ As
+ winter
+
+
+ winter
+ would
+
+
+ denly
+ sud
+
+
+ winter
+ denly
+
+
+ denly
+ alter
+
+
+ climate
+ man
+
+
+ man
+ 's
+
+
+ warming
+ climate
+
+
+ climate
+ and
+
+
+ climate
+ prospects
+
+
+ prospects
+ for
+
+
+ for
+ survival
+
+
+ warming
+ so
+
+
+ warming
+ might
+
+
+ warming
+ global
+
+
+ alter
+ warming
+
+
+ warming
+ albeit
+
+
+ albeit
+ more
+
+
+ more
+ gradually
+
+
+
+
+ ROOT
+ As
+
+
+ winter
+ nuclear
+
+
+ As
+ winter
+
+
+ winter
+ would
+
+
+ denly
+ sud
+
+
+ winter
+ denly
+
+
+ denly
+ alter
+
+
+ climate
+ man
+
+
+ warming
+ climate
+
+
+ climate
+ prospects
+
+
+ prospects
+ survival
+
+
+ warming
+ so
+
+
+ warming
+ might
+
+
+ warming
+ global
+
+
+ alter
+ warming
+
+
+ warming
+ albeit
+
+
+ albeit
+ more
+
+
+ more
+ gradually
+
+
+
+
+ ROOT
+ As
+
+
+ winter
+ nuclear
+
+
+ As
+ winter
+
+
+ winter
+ would
+
+
+ denly
+ sud
+
+
+ winter
+ denly
+
+
+ denly
+ alter
+
+
+ climate
+ man
+
+
+ warming
+ climate
+
+
+ climate
+ prospects
+
+
+ warming
+ prospects
+
+
+ prospects
+ survival
+
+
+ warming
+ so
+
+
+ warming
+ might
+
+
+ warming
+ global
+
+
+ alter
+ warming
+
+
+ warming
+ albeit
+
+
+ albeit
+ more
+
+
+ more
+ gradually
+
+
+
+
+
+
+ If
+ if
+ 17114
+ 17116
+ IN
+ O
+
+
+ we
+ we
+ 17117
+ 17119
+ PRP
+ O
+
+
+ do
+ do
+ 17120
+ 17122
+ VBP
+ O
+
+
+ nothing
+ nothing
+ 17123
+ 17130
+ NN
+ O
+
+
+ we
+ we
+ 17131
+ 17133
+ PRP
+ O
+
+
+ may
+ may
+ 17134
+ 17137
+ MD
+ O
+
+
+ be
+ be
+ 17138
+ 17140
+ VB
+ O
+
+
+ trading
+ trade
+ 17142
+ 17149
+ VBG
+ O
+
+
+ the
+ the
+ 17150
+ 17153
+ DT
+ O
+
+
+ risk
+ risk
+ 17154
+ 17158
+ NN
+ O
+
+
+ of
+ of
+ 17159
+ 17161
+ IN
+ O
+
+
+ a
+ a
+ 17162
+ 17163
+ DT
+ O
+
+
+ flash
+ flash
+ 17164
+ 17169
+ NN
+ O
+
+
+ fry
+ fry
+ 17170
+ 17173
+ NN
+ O
+
+
+ for
+ for
+ 17174
+ 17177
+ IN
+ O
+
+
+ the
+ the
+ 17178
+ 17181
+ DT
+ O
+
+
+ cer
+ cer
+ 17182
+ 17185
+ NN
+ O
+
+
+ -
+ -
+ 17185
+ 17186
+ :
+ O
+
+
+ tainty
+ tainty
+ 17188
+ 17194
+ NN
+ O
+
+
+ of
+ of
+ 17195
+ 17197
+ IN
+ O
+
+
+ a
+ a
+ 17198
+ 17199
+ DT
+ O
+
+
+ slow
+ slow
+ 17200
+ 17204
+ JJ
+ O
+
+
+ roasting
+ roasting
+ 17205
+ 17213
+ NN
+ O
+
+
+ .
+ .
+ 17213
+ 17214
+ .
+ O
+
+
+ (ROOT (S (SBAR (IN If) (S (NP (PRP we)) (VP (VBP do) (NP (NN nothing))))) (NP (PRP we)) (VP (MD may) (VP (VB be) (VP (VBG trading) (NP (NP (NP (DT the) (NN risk)) (PP (IN of) (NP (NP (DT a) (NN flash) (NN fry)) (PP (IN for) (NP (DT the) (NN cer)))))) (: -) (NP (NP (NN tainty)) (PP (IN of) (NP (DT a) (JJ slow) (NN roasting)))))))) (. .)))
+
+
+ ROOT
+ trading
+
+
+ do
+ If
+
+
+ do
+ we
+
+
+ trading
+ do
+
+
+ do
+ nothing
+
+
+ trading
+ we
+
+
+ trading
+ may
+
+
+ trading
+ be
+
+
+ risk
+ the
+
+
+ trading
+ risk
+
+
+ risk
+ of
+
+
+ fry
+ a
+
+
+ fry
+ flash
+
+
+ of
+ fry
+
+
+ fry
+ for
+
+
+ cer
+ the
+
+
+ for
+ cer
+
+
+ risk
+ tainty
+
+
+ tainty
+ of
+
+
+ roasting
+ a
+
+
+ roasting
+ slow
+
+
+ of
+ roasting
+
+
+
+
+ ROOT
+ trading
+
+
+ do
+ If
+
+
+ do
+ we
+
+
+ trading
+ do
+
+
+ do
+ nothing
+
+
+ trading
+ we
+
+
+ trading
+ may
+
+
+ trading
+ be
+
+
+ risk
+ the
+
+
+ trading
+ risk
+
+
+ fry
+ a
+
+
+ fry
+ flash
+
+
+ risk
+ fry
+
+
+ cer
+ the
+
+
+ fry
+ cer
+
+
+ risk
+ tainty
+
+
+ roasting
+ a
+
+
+ roasting
+ slow
+
+
+ tainty
+ roasting
+
+
+
+
+ ROOT
+ trading
+
+
+ do
+ If
+
+
+ do
+ we
+
+
+ trading
+ do
+
+
+ do
+ nothing
+
+
+ trading
+ we
+
+
+ trading
+ may
+
+
+ trading
+ be
+
+
+ risk
+ the
+
+
+ trading
+ risk
+
+
+ fry
+ a
+
+
+ fry
+ flash
+
+
+ risk
+ fry
+
+
+ cer
+ the
+
+
+ fry
+ cer
+
+
+ risk
+ tainty
+
+
+ roasting
+ a
+
+
+ roasting
+ slow
+
+
+ tainty
+ roasting
+
+
+
+
+
+
+ In
+ in
+ 17215
+ 17217
+ IN
+ O
+
+
+ the
+ the
+ 17218
+ 17221
+ DT
+ O
+
+
+ end
+ end
+ 17222
+ 17225
+ NN
+ O
+
+
+ ,
+ ,
+ 17225
+ 17226
+ ,
+ O
+
+
+ howev
+ howev
+ 17227
+ 17232
+ NN
+ O
+
+
+ -
+ -
+ 17232
+ 17233
+ :
+ O
+
+
+ er
+ er
+ 17235
+ 17237
+ NN
+ O
+
+
+ ,
+ ,
+ 17237
+ 17238
+ ,
+ O
+
+
+ the
+ the
+ 17239
+ 17242
+ DT
+ O
+
+
+ results
+ result
+ 17243
+ 17250
+ NNS
+ O
+
+
+ can
+ can
+ 17251
+ 17254
+ MD
+ O
+
+
+ be
+ be
+ 17255
+ 17257
+ VB
+ O
+
+
+ comparably
+ comparably
+ 17258
+ 17268
+ RB
+ O
+
+
+ cata
+ cata
+ 17269
+ 17273
+ FW
+ O
+
+
+ -
+ -
+ 17273
+ 17274
+ :
+ O
+
+
+ strophic
+ strophic
+ 17276
+ 17284
+ JJ
+ O
+
+
+ .
+ .
+ 17284
+ 17285
+ .
+ O
+
+
+ (ROOT (UCP (S (PP (IN In) (NP (DT the) (NN end) (, ,) (NN howev) (: -) (NN er))) (, ,) (NP (DT the) (NNS results)) (VP (MD can) (VP (VB be) (ADJP (RB comparably) (FW cata))))) (: -) (NP (JJ strophic)) (. .)))
+
+
+ ROOT
+ comparably
+
+
+ comparably
+ In
+
+
+ er
+ the
+
+
+ er
+ end
+
+
+ er
+ howev
+
+
+ In
+ er
+
+
+ results
+ the
+
+
+ comparably
+ results
+
+
+ comparably
+ can
+
+
+ comparably
+ be
+
+
+ comparably
+ cata
+
+
+ comparably
+ strophic
+
+
+
+
+ ROOT
+ comparably
+
+
+ er
+ the
+
+
+ er
+ end
+
+
+ er
+ howev
+
+
+ comparably
+ er
+
+
+ results
+ the
+
+
+ comparably
+ results
+
+
+ comparably
+ can
+
+
+ comparably
+ be
+
+
+ comparably
+ cata
+
+
+ comparably
+ strophic
+
+
+
+
+ ROOT
+ comparably
+
+
+ er
+ the
+
+
+ er
+ end
+
+
+ er
+ howev
+
+
+ comparably
+ er
+
+
+ results
+ the
+
+
+ comparably
+ results
+
+
+ comparably
+ can
+
+
+ comparably
+ be
+
+
+ comparably
+ cata
+
+
+ comparably
+ strophic
+
+
+
+
+
+
+ If
+ if
+ 17289
+ 17291
+ IN
+ O
+
+
+ a
+ a
+ 17292
+ 17293
+ DT
+ O
+
+
+ deteriorating
+ deteriorate
+ 17294
+ 17307
+ VBG
+ O
+
+
+ environment
+ environment
+ 17308
+ 17319
+ NN
+ O
+
+
+ is
+ be
+ 17320
+ 17322
+ VBZ
+ O
+
+
+ compara
+ compara
+ 17323
+ 17330
+ NN
+ O
+
+
+ -
+ -
+ 17330
+ 17331
+ :
+ O
+
+
+ ble
+ ble
+ 17333
+ 17336
+ NN
+ O
+
+
+ in
+ in
+ 17337
+ 17339
+ IN
+ O
+
+
+ consequence
+ consequence
+ 17340
+ 17351
+ NN
+ O
+
+
+ ,
+ ,
+ 17351
+ 17352
+ ,
+ O
+
+
+ if
+ if
+ 17353
+ 17355
+ IN
+ O
+
+
+ not
+ not
+ 17356
+ 17359
+ RB
+ O
+
+
+ immediacy
+ immediacy
+ 17360
+ 17369
+ NN
+ O
+
+
+ ,
+ ,
+ 17369
+ 17370
+ ,
+ O
+
+
+ to
+ to
+ 17371
+ 17373
+ TO
+ O
+
+
+ global
+ global
+ 17375
+ 17381
+ JJ
+ O
+
+
+ war
+ war
+ 17382
+ 17385
+ NN
+ O
+
+
+ ,
+ ,
+ 17385
+ 17386
+ ,
+ O
+
+
+ then
+ then
+ 17387
+ 17391
+ RB
+ O
+
+
+ logically
+ logically
+ 17392
+ 17401
+ RB
+ O
+
+
+ it
+ it
+ 17402
+ 17404
+ PRP
+ O
+
+
+ requires
+ require
+ 17405
+ 17413
+ VBZ
+ O
+
+
+ a
+ a
+ 17414
+ 17415
+ DT
+ O
+
+
+ com
+ com
+ 17416
+ 17419
+ NN
+ O
+
+
+ -
+ -
+ 17419
+ 17420
+ :
+ O
+
+
+ parable
+ parable
+ 17422
+ 17429
+ JJ
+ O
+
+
+ response
+ response
+ 17430
+ 17438
+ NN
+ O
+
+
+ .
+ .
+ 17438
+ 17439
+ .
+ O
+
+
+ (ROOT (S (SBAR (IN If) (S (NP (DT a) (VBG deteriorating) (NN environment)) (VP (VBZ is) (NP (NP (NN compara)) (: -) (NP (NP (NN ble)) (PP (IN in) (NP (NN consequence))))) (, ,) (SBAR (IN if) (RB not) (FRAG (NP (NN immediacy)))) (, ,) (PP (TO to) (NP (JJ global) (NN war)))))) (, ,) (ADVP (RB then) (RB logically)) (NP (PRP it)) (VP (VBZ requires) (NP (DT a) (NN com) (: -) (JJ parable) (NN response))) (. .)))
+
+
+ ROOT
+ requires
+
+
+ compara
+ If
+
+
+ environment
+ a
+
+
+ environment
+ deteriorating
+
+
+ compara
+ environment
+
+
+ compara
+ is
+
+
+ requires
+ compara
+
+
+ compara
+ ble
+
+
+ ble
+ in
+
+
+ in
+ consequence
+
+
+ immediacy
+ if
+
+
+ immediacy
+ not
+
+
+ compara
+ immediacy
+
+
+ compara
+ to
+
+
+ war
+ global
+
+
+ to
+ war
+
+
+ logically
+ then
+
+
+ requires
+ logically
+
+
+ requires
+ it
+
+
+ response
+ a
+
+
+ response
+ com
+
+
+ response
+ parable
+
+
+ requires
+ response
+
+
+
+
+ ROOT
+ requires
+
+
+ compara
+ If
+
+
+ environment
+ a
+
+
+ environment
+ deteriorating
+
+
+ compara
+ environment
+
+
+ compara
+ is
+
+
+ requires
+ compara
+
+
+ compara
+ ble
+
+
+ ble
+ consequence
+
+
+ immediacy
+ if
+
+
+ immediacy
+ not
+
+
+ compara
+ immediacy
+
+
+ war
+ global
+
+
+ compara
+ war
+
+
+ logically
+ then
+
+
+ requires
+ logically
+
+
+ requires
+ it
+
+
+ response
+ a
+
+
+ response
+ com
+
+
+ response
+ parable
+
+
+ requires
+ response
+
+
+
+
+ ROOT
+ requires
+
+
+ compara
+ If
+
+
+ environment
+ a
+
+
+ environment
+ deteriorating
+
+
+ compara
+ environment
+
+
+ compara
+ is
+
+
+ requires
+ compara
+
+
+ compara
+ ble
+
+
+ ble
+ consequence
+
+
+ immediacy
+ if
+
+
+ immediacy
+ not
+
+
+ compara
+ immediacy
+
+
+ war
+ global
+
+
+ compara
+ war
+
+
+ logically
+ then
+
+
+ requires
+ logically
+
+
+ requires
+ it
+
+
+ response
+ a
+
+
+ response
+ com
+
+
+ response
+ parable
+
+
+ requires
+ response
+
+
+
+
+
+
+ Put
+ put
+ 17440
+ 17443
+ VB
+ O
+
+
+ simply
+ simply
+ 17444
+ 17450
+ RB
+ O
+
+
+ ,
+ ,
+ 17450
+ 17451
+ ,
+ O
+
+
+ we
+ we
+ 17452
+ 17454
+ PRP
+ O
+
+
+ must
+ must
+ 17455
+ 17459
+ MD
+ O
+
+
+ be
+ be
+ 17460
+ 17462
+ VB
+ O
+
+
+ prepared
+ prepare
+ 17464
+ 17472
+ VBN
+ O
+
+
+ to
+ to
+ 17473
+ 17475
+ TO
+ O
+
+
+ come
+ come
+ 17476
+ 17480
+ VB
+ O
+
+
+ forward
+ forward
+ 17481
+ 17488
+ RB
+ O
+
+
+ with
+ with
+ 17489
+ 17493
+ IN
+ O
+
+
+ the
+ the
+ 17494
+ 17497
+ DT
+ O
+
+
+ re
+ re
+ 17498
+ 17500
+ NN
+ O
+
+
+ -
+ -
+ 17500
+ 17501
+ :
+ O
+
+
+ sources
+ source
+ 17503
+ 17510
+ NNS
+ O
+
+
+ to
+ to
+ 17511
+ 17513
+ TO
+ O
+
+
+ protect
+ protect
+ 17514
+ 17521
+ VB
+ O
+
+
+ our
+ we
+ 17522
+ 17525
+ PRP$
+ O
+
+
+ environment
+ environment
+ 17526
+ 17537
+ NN
+ O
+
+
+ .
+ .
+ 17537
+ 17538
+ .
+ O
+
+
+ (ROOT (S (S (VP (VB Put) (ADVP (RB simply)))) (, ,) (NP (PRP we)) (VP (MD must) (VP (VB be) (VP (VBN prepared) (S (VP (TO to) (VP (VB come) (ADVP (RB forward)) (PP (IN with) (NP (DT the) (NN re))) (: -) (S (NP (NNS sources)) (VP (TO to) (VP (VB protect) (NP (PRP$ our) (NN environment))))))))))) (. .)))
+
+
+ ROOT
+ prepared
+
+
+ prepared
+ Put
+
+
+ Put
+ simply
+
+
+ prepared
+ we
+
+
+ prepared
+ must
+
+
+ prepared
+ be
+
+
+ come
+ to
+
+
+ prepared
+ come
+
+
+ come
+ forward
+
+
+ come
+ with
+
+
+ re
+ the
+
+
+ with
+ re
+
+
+ protect
+ sources
+
+
+ protect
+ to
+
+
+ come
+ protect
+
+
+ environment
+ our
+
+
+ protect
+ environment
+
+
+
+
+ ROOT
+ prepared
+
+
+ prepared
+ Put
+
+
+ Put
+ simply
+
+
+ prepared
+ we
+
+
+ prepared
+ must
+
+
+ prepared
+ be
+
+
+ come
+ to
+
+
+ prepared
+ come
+
+
+ come
+ forward
+
+
+ re
+ the
+
+
+ come
+ re
+
+
+ protect
+ sources
+
+
+ protect
+ to
+
+
+ come
+ protect
+
+
+ environment
+ our
+
+
+ protect
+ environment
+
+
+
+
+ ROOT
+ prepared
+
+
+ prepared
+ Put
+
+
+ Put
+ simply
+
+
+ prepared
+ we
+
+
+ prepared
+ must
+
+
+ prepared
+ be
+
+
+ come
+ to
+
+
+ prepared
+ come
+
+
+ come
+ forward
+
+
+ re
+ the
+
+
+ come
+ re
+
+
+ protect
+ sources
+
+
+ protect
+ to
+
+
+ come
+ protect
+
+
+ environment
+ our
+
+
+ protect
+ environment
+
+
+
+
+
+
+ Today
+ today
+ 17539
+ 17544
+ NN
+ DATE
+ THIS P1D
+
+
+
+ my
+ my
+ 17546
+ 17548
+ PRP$
+ O
+
+
+ country
+ country
+ 17549
+ 17556
+ NN
+ O
+
+
+ spends
+ spend
+ 17557
+ 17563
+ VBZ
+ O
+
+
+ $
+ $
+ 17564
+ 17565
+ $
+ MONEY
+ $2.956E11
+
+
+ 295.6
+ 295.6
+ 17565
+ 17570
+ CD
+ MONEY
+ $2.956E11
+
+
+ billion
+ billion
+ 17571
+ 17578
+ CD
+ MONEY
+ $2.956E11
+
+
+ on
+ on
+ 17579
+ 17581
+ IN
+ O
+
+
+ defense
+ defense
+ 17582
+ 17589
+ NN
+ O
+
+
+ and
+ and
+ 17591
+ 17594
+ CC
+ O
+
+
+ $
+ $
+ 17595
+ 17596
+ $
+ MONEY
+ $5.6E9
+
+
+ 5.6
+ 5.6
+ 17596
+ 17599
+ CD
+ MONEY
+ $5.6E9
+
+
+ billion
+ billion
+ 17600
+ 17607
+ CD
+ MONEY
+ $5.6E9
+
+
+ at
+ at
+ 17608
+ 17610
+ IN
+ O
+
+
+ the
+ the
+ 17611
+ 17614
+ DT
+ O
+
+
+ federal
+ federal
+ 17615
+ 17622
+ JJ
+ O
+
+
+ level
+ level
+ 17623
+ 17628
+ NN
+ O
+
+
+ ,
+ ,
+ 17628
+ 17629
+ ,
+ O
+
+
+ or
+ or
+ 17630
+ 17632
+ CC
+ O
+
+
+ about
+ about
+ 17633
+ 17638
+ IN
+ O
+
+
+ one-fifteenth
+ one-fifteenth
+ 17640
+ 17653
+ JJ
+ ORDINAL
+
+
+ as
+ as
+ 17654
+ 17656
+ RB
+ O
+
+
+ much
+ much
+ 17657
+ 17661
+ RB
+ O
+
+
+ ,
+ ,
+ 17661
+ 17662
+ ,
+ O
+
+
+ on
+ on
+ 17663
+ 17665
+ IN
+ O
+
+
+ protecting
+ protect
+ 17666
+ 17676
+ VBG
+ O
+
+
+ our
+ we
+ 17677
+ 17680
+ PRP$
+ O
+
+
+ en
+ en
+ 17681
+ 17683
+ IN
+ O
+
+
+ -
+ -
+ 17683
+ 17684
+ :
+ O
+
+
+ vironment
+ vironment
+ 17686
+ 17695
+ NN
+ O
+
+
+ .
+ .
+ 17695
+ 17696
+ .
+ O
+
+
+ (ROOT (S (NP-TMP (NN Today)) (NP (PRP$ my) (NN country)) (VP (VBZ spends) (NP (NP (NP (QP ($ $) (CD 295.6) (CD billion))) (PP (IN on) (NP (NN defense)))) (CC and) (NP (NP (QP ($ $) (CD 5.6) (CD billion))) (PP (PP (IN at) (NP (DT the) (JJ federal) (NN level))) (, ,) (CC or) (PP (IN about) (NP (NP (JJ one-fifteenth)) (ADVP (RB as) (RB much)) (, ,) (PP (IN on) (S (VP (VBG protecting) (NP (PRP$ our)) (ADVP (IN en))))) (: -) (NP (NN vironment)))))))) (. .)))
+
+
+ ROOT
+ spends
+
+
+ spends
+ Today
+
+
+ country
+ my
+
+
+ spends
+ country
+
+
+ spends
+ $
+
+
+ $
+ 295.6
+
+
+ $
+ billion
+
+
+ $
+ on
+
+
+ on
+ defense
+
+
+ $
+ and
+
+
+ $
+ $
+
+
+ $
+ 5.6
+
+
+ $
+ billion
+
+
+ $
+ at
+
+
+ level
+ the
+
+
+ level
+ federal
+
+
+ at
+ level
+
+
+ at
+ or
+
+
+ at
+ about
+
+
+ about
+ one-fifteenth
+
+
+ much
+ as
+
+
+ one-fifteenth
+ much
+
+
+ one-fifteenth
+ on
+
+
+ on
+ protecting
+
+
+ protecting
+ our
+
+
+ protecting
+ en
+
+
+ one-fifteenth
+ vironment
+
+
+
+
+ ROOT
+ spends
+
+
+ spends
+ Today
+
+
+ country
+ my
+
+
+ spends
+ country
+
+
+ spends
+ $
+
+
+ $
+ 295.6
+
+
+ $
+ billion
+
+
+ $
+ defense
+
+
+ $
+ $
+
+
+ $
+ $
+
+
+ $
+ 5.6
+
+
+ $
+ billion
+
+
+ level
+ the
+
+
+ level
+ federal
+
+
+ $
+ level
+
+
+ $
+ one-fifteenth
+
+
+ much
+ as
+
+
+ one-fifteenth
+ much
+
+
+ one-fifteenth
+ protecting
+
+
+ protecting
+ our
+
+
+ protecting
+ en
+
+
+ one-fifteenth
+ vironment
+
+
+
+
+ ROOT
+ spends
+
+
+ spends
+ Today
+
+
+ country
+ my
+
+
+ spends
+ country
+
+
+ spends
+ $
+
+
+ $
+ 295.6
+
+
+ $
+ billion
+
+
+ $
+ defense
+
+
+ spends
+ $
+
+
+ $
+ $
+
+
+ $
+ $
+
+
+ $
+ $
+
+
+ $
+ 5.6
+
+
+ $
+ billion
+
+
+ level
+ the
+
+
+ level
+ federal
+
+
+ $
+ level
+
+
+ $
+ one-fifteenth
+
+
+ much
+ as
+
+
+ one-fifteenth
+ much
+
+
+ one-fifteenth
+ protecting
+
+
+ protecting
+ our
+
+
+ protecting
+ en
+
+
+ one-fifteenth
+ vironment
+
+
+
+
+
+
+ It
+ it
+ 17697
+ 17699
+ PRP
+ O
+
+
+ is
+ be
+ 17700
+ 17702
+ VBZ
+ O
+
+
+ not
+ not
+ 17703
+ 17706
+ RB
+ O
+
+
+ realistic
+ realistic
+ 17707
+ 17716
+ JJ
+ O
+
+
+ to
+ to
+ 17717
+ 17719
+ TO
+ O
+
+
+ expect
+ expect
+ 17720
+ 17726
+ VB
+ O
+
+
+ these
+ these
+ 17727
+ 17732
+ DT
+ O
+
+
+ proportions
+ proportion
+ 17734
+ 17745
+ NNS
+ O
+
+
+ to
+ to
+ 17746
+ 17748
+ TO
+ O
+
+
+ be
+ be
+ 17749
+ 17751
+ VB
+ O
+
+
+ reversed
+ reverse
+ 17752
+ 17760
+ VBN
+ O
+
+
+ ,
+ ,
+ 17760
+ 17761
+ ,
+ O
+
+
+ but
+ but
+ 17762
+ 17765
+ CC
+ O
+
+
+ they
+ they
+ 17766
+ 17770
+ PRP
+ O
+
+
+ must
+ must
+ 17771
+ 17775
+ MD
+ O
+
+
+ be
+ be
+ 17776
+ 17778
+ VB
+ O
+
+
+ changed
+ change
+ 17780
+ 17787
+ VBN
+ O
+
+
+ .
+ .
+ 17787
+ 17788
+ .
+ O
+
+
+ (ROOT (S (S (NP (PRP It)) (VP (VBZ is) (RB not) (ADJP (JJ realistic) (S (VP (TO to) (VP (VB expect) (S (NP (DT these) (NNS proportions)) (VP (TO to) (VP (VB be) (VP (VBN reversed))))))))))) (, ,) (CC but) (S (NP (PRP they)) (VP (MD must) (VP (VB be) (VP (VBN changed))))) (. .)))
+
+
+ ROOT
+ realistic
+
+
+ realistic
+ It
+
+
+ realistic
+ is
+
+
+ realistic
+ not
+
+
+ expect
+ to
+
+
+ realistic
+ expect
+
+
+ proportions
+ these
+
+
+ reversed
+ proportions
+
+
+ reversed
+ to
+
+
+ reversed
+ be
+
+
+ expect
+ reversed
+
+
+ realistic
+ but
+
+
+ changed
+ they
+
+
+ changed
+ must
+
+
+ changed
+ be
+
+
+ realistic
+ changed
+
+
+
+
+ ROOT
+ realistic
+
+
+ realistic
+ It
+
+
+ realistic
+ is
+
+
+ realistic
+ not
+
+
+ expect
+ to
+
+
+ realistic
+ expect
+
+
+ proportions
+ these
+
+
+ reversed
+ proportions
+
+
+ reversed
+ to
+
+
+ reversed
+ be
+
+
+ expect
+ reversed
+
+
+ changed
+ they
+
+
+ changed
+ must
+
+
+ changed
+ be
+
+
+ realistic
+ changed
+
+
+
+
+ ROOT
+ realistic
+
+
+ realistic
+ It
+
+
+ realistic
+ is
+
+
+ realistic
+ not
+
+
+ expect
+ to
+
+
+ realistic
+ expect
+
+
+ proportions
+ these
+
+
+ reversed
+ proportions
+
+
+ reversed
+ to
+
+
+ reversed
+ be
+
+
+ expect
+ reversed
+
+
+ changed
+ they
+
+
+ changed
+ must
+
+
+ changed
+ be
+
+
+ realistic
+ changed
+
+
+
+
+
+
+ The
+ the
+ 17792
+ 17795
+ DT
+ O
+
+
+ end
+ end
+ 17796
+ 17799
+ NN
+ O
+
+
+ of
+ of
+ 17800
+ 17802
+ IN
+ O
+
+
+ the
+ the
+ 17803
+ 17806
+ DT
+ O
+
+
+ Cold
+ Cold
+ 17807
+ 17811
+ NNP
+ O
+
+
+ War
+ War
+ 17812
+ 17815
+ NNP
+ O
+
+
+ is
+ be
+ 17816
+ 17818
+ VBZ
+ O
+
+
+ already
+ already
+ 17819
+ 17826
+ RB
+ O
+
+
+ lead
+ lead
+ 17827
+ 17831
+ VB
+ O
+
+
+ -
+ -
+ 17831
+ 17832
+ :
+ O
+
+
+ ing
+ ing
+ 17834
+ 17837
+ NN
+ O
+
+
+ to
+ to
+ 17838
+ 17840
+ TO
+ O
+
+
+ cuts
+ cut
+ 17841
+ 17845
+ NNS
+ O
+
+
+ in
+ in
+ 17846
+ 17848
+ IN
+ O
+
+
+ military
+ military
+ 17849
+ 17857
+ JJ
+ O
+
+
+ spending
+ spending
+ 17858
+ 17866
+ NN
+ O
+
+
+ .
+ .
+ 17866
+ 17867
+ .
+ O
+
+
+ (ROOT (S (NP (NP (DT The) (NN end)) (PP (IN of) (NP (DT the) (NNP Cold) (NNP War)))) (VP (VBZ is) (ADVP (RB already)) (S (VP (VP (VB lead)) (: -) (VP (NP (NN ing)) (PP (TO to) (NP (NP (NNS cuts)) (PP (IN in) (NP (JJ military) (NN spending))))))))) (. .)))
+
+
+ ROOT
+ is
+
+
+ end
+ The
+
+
+ is
+ end
+
+
+ end
+ of
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ of
+ War
+
+
+ is
+ already
+
+
+ is
+ lead
+
+
+ lead
+ ing
+
+
+ ing
+ to
+
+
+ to
+ cuts
+
+
+ cuts
+ in
+
+
+ spending
+ military
+
+
+ in
+ spending
+
+
+
+
+ ROOT
+ is
+
+
+ end
+ The
+
+
+ is
+ end
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ end
+ War
+
+
+ is
+ already
+
+
+ is
+ lead
+
+
+ lead
+ ing
+
+
+ ing
+ cuts
+
+
+ spending
+ military
+
+
+ cuts
+ spending
+
+
+
+
+ ROOT
+ is
+
+
+ end
+ The
+
+
+ is
+ end
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ end
+ War
+
+
+ is
+ already
+
+
+ is
+ lead
+
+
+ lead
+ ing
+
+
+ ing
+ cuts
+
+
+ spending
+ military
+
+
+ cuts
+ spending
+
+
+
+
+
+
+ This
+ this
+ 17868
+ 17872
+ DT
+ O
+
+
+ trend
+ trend
+ 17873
+ 17878
+ NN
+ O
+
+
+ should
+ should
+ 17880
+ 17886
+ MD
+ O
+
+
+ be
+ be
+ 17887
+ 17889
+ VB
+ O
+
+
+ accelerated
+ accelerate
+ 17890
+ 17901
+ VBN
+ O
+
+
+ as
+ as
+ 17902
+ 17904
+ IN
+ O
+
+
+ we
+ we
+ 17905
+ 17907
+ PRP
+ O
+
+
+ conclude
+ conclude
+ 17908
+ 17916
+ VBP
+ O
+
+
+ agree
+ agree
+ 17917
+ 17922
+ VBP
+ O
+
+
+ -
+ -
+ 17922
+ 17923
+ :
+ O
+
+
+ ments
+ ment
+ 17925
+ 17930
+ NNS
+ O
+
+
+ to
+ to
+ 17931
+ 17933
+ TO
+ O
+
+
+ reduce
+ reduce
+ 17934
+ 17940
+ VB
+ O
+
+
+ strategic
+ strategic
+ 17941
+ 17950
+ JJ
+ O
+
+
+ and
+ and
+ 17951
+ 17954
+ CC
+ O
+
+
+ conventional
+ conventional
+ 17955
+ 17967
+ JJ
+ O
+
+
+ arms
+ arm
+ 17969
+ 17973
+ NNS
+ O
+
+
+ .
+ .
+ 17973
+ 17974
+ .
+ O
+
+
+ (ROOT (S (NP (DT This) (NN trend)) (VP (MD should) (VP (VB be) (VP (VBN accelerated) (SBAR (IN as) (S (NP (PRP we)) (VP (VBP conclude) (SBAR (S (VP (VBP agree) (: -) (NP (NNS ments) (S (VP (TO to) (VP (VB reduce) (NP (ADJP (JJ strategic) (CC and) (JJ conventional)) (NNS arms))))))))))))))) (. .)))
+
+
+ ROOT
+ accelerated
+
+
+ trend
+ This
+
+
+ accelerated
+ trend
+
+
+ accelerated
+ should
+
+
+ accelerated
+ be
+
+
+ conclude
+ as
+
+
+ conclude
+ we
+
+
+ accelerated
+ conclude
+
+
+ conclude
+ agree
+
+
+ agree
+ ments
+
+
+ reduce
+ to
+
+
+ ments
+ reduce
+
+
+ arms
+ strategic
+
+
+ strategic
+ and
+
+
+ strategic
+ conventional
+
+
+ reduce
+ arms
+
+
+
+
+ ROOT
+ accelerated
+
+
+ trend
+ This
+
+
+ accelerated
+ trend
+
+
+ accelerated
+ should
+
+
+ accelerated
+ be
+
+
+ conclude
+ as
+
+
+ conclude
+ we
+
+
+ accelerated
+ conclude
+
+
+ conclude
+ agree
+
+
+ agree
+ ments
+
+
+ reduce
+ to
+
+
+ ments
+ reduce
+
+
+ arms
+ strategic
+
+
+ strategic
+ conventional
+
+
+ reduce
+ arms
+
+
+
+
+ ROOT
+ accelerated
+
+
+ trend
+ This
+
+
+ accelerated
+ trend
+
+
+ accelerated
+ should
+
+
+ accelerated
+ be
+
+
+ conclude
+ as
+
+
+ conclude
+ we
+
+
+ accelerated
+ conclude
+
+
+ conclude
+ agree
+
+
+ agree
+ ments
+
+
+ reduce
+ to
+
+
+ ments
+ reduce
+
+
+ arms
+ strategic
+
+
+ strategic
+ conventional
+
+
+ arms
+ conventional
+
+
+ reduce
+ arms
+
+
+
+
+
+
+ These
+ these
+ 17975
+ 17980
+ DT
+ O
+
+
+ will
+ will
+ 17981
+ 17985
+ MD
+ O
+
+
+ jave
+ jave
+ 17986
+ 17990
+ VB
+ O
+
+
+ substantial
+ substantial
+ 17991
+ 18002
+ JJ
+ O
+
+
+ money
+ money
+ 18003
+ 18008
+ NN
+ O
+
+
+ for
+ for
+ 18009
+ 18012
+ IN
+ O
+
+
+ both
+ both
+ 18014
+ 18018
+ CC
+ O
+
+
+ the
+ the
+ 18019
+ 18022
+ DT
+ O
+
+
+ countries
+ country
+ 18023
+ 18032
+ NNS
+ O
+
+
+ of
+ of
+ 18033
+ 18035
+ IN
+ O
+
+
+ NATO
+ NATO
+ 18036
+ 18040
+ NNP
+ ORGANIZATION
+
+
+ and
+ and
+ 18041
+ 18044
+ CC
+ O
+
+
+ those
+ those
+ 18045
+ 18050
+ DT
+ O
+
+
+ linked
+ link
+ 18052
+ 18058
+ VBN
+ O
+
+
+ to
+ to
+ 18059
+ 18061
+ TO
+ O
+
+
+ the
+ the
+ 18062
+ 18065
+ DT
+ O
+
+
+ Warsaw
+ Warsaw
+ 18066
+ 18072
+ NNP
+ LOCATION
+
+
+ Pact
+ Pact
+ 18073
+ 18077
+ NNP
+ O
+
+
+ .
+ .
+ 18077
+ 18078
+ .
+ O
+
+
+ (ROOT (S (NP (DT These)) (VP (MD will) (VP (VB jave) (NP (NP (JJ substantial) (NN money)) (PP (IN for) (NP (CC both) (NP (NP (DT the) (NNS countries)) (PP (IN of) (NP (NNP NATO)))) (CC and) (NP (DT those)))) (VP (VBN linked) (PP (TO to) (NP (DT the) (NNP Warsaw) (NNP Pact))))))) (. .)))
+
+
+ ROOT
+ jave
+
+
+ jave
+ These
+
+
+ jave
+ will
+
+
+ money
+ substantial
+
+
+ jave
+ money
+
+
+ money
+ for
+
+
+ countries
+ both
+
+
+ countries
+ the
+
+
+ for
+ countries
+
+
+ countries
+ of
+
+
+ of
+ NATO
+
+
+ countries
+ and
+
+
+ countries
+ those
+
+
+ money
+ linked
+
+
+ linked
+ to
+
+
+ Pact
+ the
+
+
+ Pact
+ Warsaw
+
+
+ to
+ Pact
+
+
+
+
+ ROOT
+ jave
+
+
+ jave
+ These
+
+
+ jave
+ will
+
+
+ money
+ substantial
+
+
+ jave
+ money
+
+
+ countries
+ both
+
+
+ countries
+ the
+
+
+ money
+ countries
+
+
+ countries
+ NATO
+
+
+ countries
+ those
+
+
+ money
+ linked
+
+
+ Pact
+ the
+
+
+ Pact
+ Warsaw
+
+
+ linked
+ Pact
+
+
+
+
+ ROOT
+ jave
+
+
+ jave
+ These
+
+
+ jave
+ will
+
+
+ money
+ substantial
+
+
+ jave
+ money
+
+
+ countries
+ both
+
+
+ countries
+ the
+
+
+ money
+ countries
+
+
+ countries
+ NATO
+
+
+ money
+ those
+
+
+ countries
+ those
+
+
+ money
+ linked
+
+
+ Pact
+ the
+
+
+ Pact
+ Warsaw
+
+
+ linked
+ Pact
+
+
+
+
+
+
+ We
+ we
+ 18079
+ 18081
+ PRP
+ O
+
+
+ have
+ have
+ 18082
+ 18086
+ VBP
+ O
+
+
+ suc
+ suc
+ 18087
+ 18090
+ SYM
+ O
+
+
+ -
+ -
+ 18090
+ 18091
+ :
+ O
+
+
+ cessfully
+ cessfully
+ 18093
+ 18102
+ NN
+ O
+
+
+ met
+ meet
+ 18103
+ 18106
+ VBD
+ O
+
+
+ the
+ the
+ 18107
+ 18110
+ DT
+ O
+
+
+ challenge
+ challenge
+ 18111
+ 18120
+ NN
+ O
+
+
+ of
+ of
+ 18121
+ 18123
+ IN
+ O
+
+
+ the
+ the
+ 18124
+ 18127
+ DT
+ O
+
+
+ Cold
+ Cold
+ 18128
+ 18132
+ NNP
+ MISC
+
+
+ War
+ War
+ 18133
+ 18136
+ NNP
+ MISC
+
+
+ .
+ .
+ 18136
+ 18137
+ .
+ O
+
+
+ (ROOT (S (NP (PRP We)) (VP (VBP have) (FRAG (X (SYM suc)) (: -) (NP (NP (NN cessfully)) (SBAR (S (VP (VBD met) (NP (NP (DT the) (NN challenge)) (PP (IN of) (NP (DT the) (NNP Cold) (NNP War)))))))) (. .)))))
+
+
+ ROOT
+ have
+
+
+ have
+ We
+
+
+ cessfully
+ suc
+
+
+ have
+ cessfully
+
+
+ cessfully
+ met
+
+
+ challenge
+ the
+
+
+ met
+ challenge
+
+
+ challenge
+ of
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ of
+ War
+
+
+
+
+ ROOT
+ have
+
+
+ have
+ We
+
+
+ cessfully
+ suc
+
+
+ have
+ cessfully
+
+
+ cessfully
+ met
+
+
+ challenge
+ the
+
+
+ met
+ challenge
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ challenge
+ War
+
+
+
+
+ ROOT
+ have
+
+
+ have
+ We
+
+
+ cessfully
+ suc
+
+
+ have
+ cessfully
+
+
+ cessfully
+ met
+
+
+ challenge
+ the
+
+
+ met
+ challenge
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ challenge
+ War
+
+
+
+
+
+
+ The
+ the
+ 18139
+ 18142
+ DT
+ O
+
+
+ question
+ question
+ 18143
+ 18151
+ NN
+ O
+
+
+ now
+ now
+ 18152
+ 18155
+ RB
+ DATE
+ PRESENT_REF
+ PRESENT_REF
+
+
+ is
+ be
+ 18156
+ 18158
+ VBZ
+ O
+
+
+ how
+ how
+ 18159
+ 18162
+ WRB
+ O
+
+
+ will
+ will
+ 18163
+ 18167
+ MD
+ O
+
+
+ we
+ we
+ 18168
+ 18170
+ PRP
+ O
+
+
+ meet
+ meet
+ 18171
+ 18175
+ VB
+ O
+
+
+ the
+ the
+ 18176
+ 18179
+ DT
+ O
+
+
+ challenge
+ challenge
+ 18181
+ 18190
+ NN
+ O
+
+
+ of
+ of
+ 18191
+ 18193
+ IN
+ O
+
+
+ peace
+ peace
+ 18194
+ 18199
+ NN
+ O
+
+
+ ?
+ ?
+ 18199
+ 18200
+ .
+ O
+
+
+ (ROOT (S (NP (DT The) (NN question)) (ADVP (RB now)) (VP (VBZ is) (SBARQ (WHADVP (WRB how)) (SQ (MD will) (NP (PRP we)) (VP (VB meet) (NP (NP (DT the) (NN challenge)) (PP (IN of) (NP (NN peace)))))))) (. ?)))
+
+
+ ROOT
+ is
+
+
+ question
+ The
+
+
+ is
+ question
+
+
+ is
+ now
+
+
+ meet
+ how
+
+
+ meet
+ will
+
+
+ meet
+ we
+
+
+ is
+ meet
+
+
+ challenge
+ the
+
+
+ meet
+ challenge
+
+
+ challenge
+ of
+
+
+ of
+ peace
+
+
+
+
+ ROOT
+ is
+
+
+ question
+ The
+
+
+ is
+ question
+
+
+ is
+ now
+
+
+ meet
+ how
+
+
+ meet
+ will
+
+
+ meet
+ we
+
+
+ is
+ meet
+
+
+ challenge
+ the
+
+
+ meet
+ challenge
+
+
+ challenge
+ peace
+
+
+
+
+ ROOT
+ is
+
+
+ question
+ The
+
+
+ is
+ question
+
+
+ is
+ now
+
+
+ meet
+ how
+
+
+ meet
+ will
+
+
+ meet
+ we
+
+
+ is
+ meet
+
+
+ challenge
+ the
+
+
+ meet
+ challenge
+
+
+ challenge
+ peace
+
+
+
+
+
+
+ Here
+ here
+ 18204
+ 18208
+ RB
+ O
+
+
+ I
+ I
+ 18209
+ 18210
+ PRP
+ O
+
+
+ would
+ would
+ 18211
+ 18216
+ MD
+ O
+
+
+ suggest
+ suggest
+ 18217
+ 18224
+ VB
+ O
+
+
+ that
+ that
+ 18225
+ 18229
+ IN
+ O
+
+
+ a
+ a
+ 18230
+ 18231
+ DT
+ O
+
+
+ meaningful
+ meaningful
+ 18232
+ 18242
+ JJ
+ O
+
+
+ percentage
+ percentage
+ 18244
+ 18254
+ NN
+ O
+
+
+ ,
+ ,
+ 18254
+ 18255
+ ,
+ O
+
+
+ perhaps
+ perhaps
+ 18256
+ 18263
+ RB
+ O
+
+
+ 15
+ 15
+ 18264
+ 18266
+ CD
+ PERCENT
+ %15.0
+
+
+ percent
+ percent
+ 18267
+ 18274
+ NN
+ PERCENT
+ %15.0
+
+
+ ,
+ ,
+ 18274
+ 18275
+ ,
+ O
+
+
+ of
+ of
+ 18276
+ 18278
+ IN
+ O
+
+
+ our
+ we
+ 18279
+ 18282
+ PRP$
+ O
+
+
+ pro-
+ pro-
+ 18283
+ 18287
+ JJ
+ O
+
+
+ spective
+ spective
+ 18289
+ 18297
+ JJ
+ O
+
+
+ peace
+ peace
+ 18298
+ 18303
+ NN
+ O
+
+
+ dividend
+ dividend
+ 18304
+ 18312
+ NN
+ O
+
+
+ be
+ be
+ 18313
+ 18315
+ VB
+ O
+
+
+ dedicated
+ dedicate
+ 18316
+ 18325
+ VBN
+ O
+
+
+ to
+ to
+ 18326
+ 18328
+ TO
+ O
+
+
+ the
+ the
+ 18329
+ 18332
+ DT
+ O
+
+
+ environment
+ environment
+ 18334
+ 18345
+ NN
+ O
+
+
+ .
+ .
+ 18345
+ 18346
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB Here)) (NP (PRP I)) (VP (MD would) (VP (VB suggest) (SBAR (IN that) (S (NP (NP (NP (DT a) (JJ meaningful) (NN percentage)) (, ,) (NP (RB perhaps) (CD 15) (NN percent)) (, ,)) (PP (IN of) (NP (PRP$ our) (JJ pro-) (JJ spective) (NN peace) (NN dividend)))) (VP (VB be) (VP (VBN dedicated) (PP (TO to) (NP (DT the) (NN environment))))))))) (. .)))
+
+
+ ROOT
+ suggest
+
+
+ suggest
+ Here
+
+
+ suggest
+ I
+
+
+ suggest
+ would
+
+
+ dedicated
+ that
+
+
+ percentage
+ a
+
+
+ percentage
+ meaningful
+
+
+ dedicated
+ percentage
+
+
+ percent
+ perhaps
+
+
+ percent
+ 15
+
+
+ percentage
+ percent
+
+
+ percentage
+ of
+
+
+ dividend
+ our
+
+
+ dividend
+ pro-
+
+
+ dividend
+ spective
+
+
+ dividend
+ peace
+
+
+ of
+ dividend
+
+
+ dedicated
+ be
+
+
+ suggest
+ dedicated
+
+
+ dedicated
+ to
+
+
+ environment
+ the
+
+
+ to
+ environment
+
+
+
+
+ ROOT
+ suggest
+
+
+ suggest
+ Here
+
+
+ suggest
+ I
+
+
+ suggest
+ would
+
+
+ dedicated
+ that
+
+
+ percentage
+ a
+
+
+ percentage
+ meaningful
+
+
+ dedicated
+ percentage
+
+
+ percent
+ perhaps
+
+
+ percent
+ 15
+
+
+ percentage
+ percent
+
+
+ dividend
+ our
+
+
+ dividend
+ pro-
+
+
+ dividend
+ spective
+
+
+ dividend
+ peace
+
+
+ percentage
+ dividend
+
+
+ dedicated
+ be
+
+
+ suggest
+ dedicated
+
+
+ environment
+ the
+
+
+ dedicated
+ environment
+
+
+
+
+ ROOT
+ suggest
+
+
+ suggest
+ Here
+
+
+ suggest
+ I
+
+
+ suggest
+ would
+
+
+ dedicated
+ that
+
+
+ percentage
+ a
+
+
+ percentage
+ meaningful
+
+
+ dedicated
+ percentage
+
+
+ percent
+ perhaps
+
+
+ percent
+ 15
+
+
+ percentage
+ percent
+
+
+ dividend
+ our
+
+
+ dividend
+ pro-
+
+
+ dividend
+ spective
+
+
+ dividend
+ peace
+
+
+ percentage
+ dividend
+
+
+ dedicated
+ be
+
+
+ suggest
+ dedicated
+
+
+ environment
+ the
+
+
+ dedicated
+ environment
+
+
+
+
+
+
+ And
+ and
+ 18347
+ 18350
+ CC
+ O
+
+
+ I
+ I
+ 18351
+ 18352
+ PRP
+ O
+
+
+ would
+ would
+ 18353
+ 18358
+ MD
+ O
+
+
+ propose
+ propose
+ 18359
+ 18366
+ VB
+ O
+
+
+ that
+ that
+ 18367
+ 18371
+ IN
+ O
+
+
+ the
+ the
+ 18372
+ 18375
+ DT
+ O
+
+
+ upcoming
+ upcoming
+ 18377
+ 18385
+ JJ
+ O
+
+
+ agreements
+ agreement
+ 18386
+ 18396
+ NNS
+ O
+
+
+ on
+ on
+ 18397
+ 18399
+ IN
+ O
+
+
+ strategic
+ strategic
+ 18400
+ 18409
+ JJ
+ O
+
+
+ and
+ and
+ 18410
+ 18413
+ CC
+ O
+
+
+ con
+ con
+ 18414
+ 18417
+ JJ
+ O
+
+
+ -
+ -
+ 18417
+ 18418
+ :
+ O
+
+
+ ventional
+ ventional
+ 18420
+ 18429
+ JJ
+ O
+
+
+ forces
+ force
+ 18430
+ 18436
+ NNS
+ O
+
+
+ explicitly
+ explicitly
+ 18437
+ 18447
+ RB
+ O
+
+
+ earmark
+ earmark
+ 18448
+ 18455
+ VBP
+ O
+
+
+ 15
+ 15
+ 18456
+ 18458
+ CD
+ NUMBER
+ 15.0
+
+
+ per
+ per
+ 18459
+ 18462
+ IN
+ O
+
+
+ -
+ -
+ 18462
+ 18463
+ :
+ O
+
+
+ cent
+ cent
+ 18465
+ 18469
+ NN
+ O
+
+
+ of
+ of
+ 18470
+ 18472
+ IN
+ O
+
+
+ the
+ the
+ 18473
+ 18476
+ DT
+ O
+
+
+ resultant
+ resultant
+ 18477
+ 18486
+ JJ
+ O
+
+
+ savings
+ savings
+ 18487
+ 18494
+ NNS
+ O
+
+
+ for
+ for
+ 18495
+ 18498
+ IN
+ O
+
+
+ additional
+ additional
+ 18499
+ 18509
+ JJ
+ O
+
+
+ environmental
+ environmental
+ 18511
+ 18524
+ JJ
+ O
+
+
+ protection
+ protection
+ 18525
+ 18535
+ NN
+ O
+
+
+ to
+ to
+ 18536
+ 18538
+ TO
+ O
+
+
+ be
+ be
+ 18539
+ 18541
+ VB
+ O
+
+
+ expended
+ expend
+ 18542
+ 18550
+ VBN
+ O
+
+
+ either
+ either
+ 18552
+ 18558
+ CC
+ O
+
+
+ within
+ within
+ 18559
+ 18565
+ IN
+ O
+
+
+ the
+ the
+ 18566
+ 18569
+ DT
+ O
+
+
+ country
+ country
+ 18570
+ 18577
+ NN
+ O
+
+
+ where
+ where
+ 18578
+ 18583
+ WRB
+ O
+
+
+ the
+ the
+ 18584
+ 18587
+ DT
+ O
+
+
+ savings
+ savings
+ 18588
+ 18595
+ NNS
+ O
+
+
+ are
+ be
+ 18597
+ 18600
+ VBP
+ O
+
+
+ made
+ make
+ 18601
+ 18605
+ VBN
+ O
+
+
+ or
+ or
+ 18606
+ 18608
+ CC
+ O
+
+
+ internationally
+ internationally
+ 18609
+ 18624
+ RB
+ O
+
+
+ .
+ .
+ 18624
+ 18625
+ .
+ O
+
+
+ (ROOT (S (CC And) (NP (PRP I)) (VP (MD would) (VP (VB propose) (SBAR (IN that) (S (NP (NP (DT the) (JJ upcoming) (NNS agreements)) (PP (IN on) (NP (ADJP (ADJP (JJ strategic)) (CC and) (ADJP (JJ con)) (: -)) (JJ ventional) (NNS forces)))) (ADVP (RB explicitly)) (VP (VBP earmark) (NP (NP (CD 15)) (PP (IN per) (: -) (NP (NP (NN cent)) (PP (IN of) (NP (NP (DT the) (JJ resultant) (NNS savings)) (PP (IN for) (NP (JJ additional) (JJ environmental) (NN protection))))))) (UCP (S (VP (TO to) (VP (VB be) (VP (VBN expended) (PP (CC either) (PP (IN within) (NP (NP (DT the) (NN country)) (SBAR (WHADVP (WRB where)) (S (NP (DT the) (NNS savings)) (VP (VBP are) (VP (VBN made)))))))))))) (CC or) (ADVP (RB internationally))))))))) (. .)))
+
+
+ ROOT
+ propose
+
+
+ propose
+ And
+
+
+ propose
+ I
+
+
+ propose
+ would
+
+
+ earmark
+ that
+
+
+ agreements
+ the
+
+
+ agreements
+ upcoming
+
+
+ earmark
+ agreements
+
+
+ agreements
+ on
+
+
+ forces
+ strategic
+
+
+ strategic
+ and
+
+
+ strategic
+ con
+
+
+ forces
+ ventional
+
+
+ on
+ forces
+
+
+ earmark
+ explicitly
+
+
+ propose
+ earmark
+
+
+ earmark
+ 15
+
+
+ 15
+ per
+
+
+ per
+ cent
+
+
+ cent
+ of
+
+
+ savings
+ the
+
+
+ savings
+ resultant
+
+
+ of
+ savings
+
+
+ savings
+ for
+
+
+ protection
+ additional
+
+
+ protection
+ environmental
+
+
+ for
+ protection
+
+
+ expended
+ to
+
+
+ expended
+ be
+
+
+ 15
+ expended
+
+
+ within
+ either
+
+
+ expended
+ within
+
+
+ country
+ the
+
+
+ within
+ country
+
+
+ made
+ where
+
+
+ savings
+ the
+
+
+ made
+ savings
+
+
+ made
+ are
+
+
+ country
+ made
+
+
+ expended
+ or
+
+
+ expended
+ internationally
+
+
+
+
+ ROOT
+ propose
+
+
+ propose
+ And
+
+
+ propose
+ I
+
+
+ propose
+ would
+
+
+ earmark
+ that
+
+
+ agreements
+ the
+
+
+ agreements
+ upcoming
+
+
+ earmark
+ agreements
+
+
+ forces
+ strategic
+
+
+ strategic
+ con
+
+
+ forces
+ ventional
+
+
+ agreements
+ forces
+
+
+ earmark
+ explicitly
+
+
+ propose
+ earmark
+
+
+ earmark
+ 15
+
+
+ 15
+ cent
+
+
+ savings
+ the
+
+
+ savings
+ resultant
+
+
+ cent
+ savings
+
+
+ protection
+ additional
+
+
+ protection
+ environmental
+
+
+ savings
+ protection
+
+
+ expended
+ to
+
+
+ expended
+ be
+
+
+ 15
+ expended
+
+
+ expended
+ either
+
+
+ country
+ the
+
+
+ expended
+ country
+
+
+ made
+ where
+
+
+ savings
+ the
+
+
+ made
+ savings
+
+
+ made
+ are
+
+
+ country
+ made
+
+
+ expended
+ internationally
+
+
+
+
+ ROOT
+ propose
+
+
+ propose
+ And
+
+
+ propose
+ I
+
+
+ propose
+ would
+
+
+ earmark
+ that
+
+
+ agreements
+ the
+
+
+ agreements
+ upcoming
+
+
+ earmark
+ agreements
+
+
+ forces
+ strategic
+
+
+ strategic
+ con
+
+
+ forces
+ con
+
+
+ forces
+ ventional
+
+
+ agreements
+ forces
+
+
+ earmark
+ explicitly
+
+
+ propose
+ earmark
+
+
+ earmark
+ 15
+
+
+ 15
+ cent
+
+
+ savings
+ the
+
+
+ savings
+ resultant
+
+
+ cent
+ savings
+
+
+ protection
+ additional
+
+
+ protection
+ environmental
+
+
+ savings
+ protection
+
+
+ expended
+ to
+
+
+ expended
+ be
+
+
+ 15
+ expended
+
+
+ expended
+ either
+
+
+ country
+ the
+
+
+ expended
+ country
+
+
+ made
+ where
+
+
+ savings
+ the
+
+
+ made
+ savings
+
+
+ made
+ are
+
+
+ country
+ made
+
+
+ 15
+ internationally
+
+
+ expended
+ internationally
+
+
+
+
+
+
+ Under
+ under
+ 18629
+ 18634
+ IN
+ O
+
+
+ the
+ the
+ 18635
+ 18638
+ DT
+ O
+
+
+ domestic
+ domestic
+ 18639
+ 18647
+ JJ
+ O
+
+
+ law
+ law
+ 18648
+ 18651
+ NN
+ O
+
+
+ of
+ of
+ 18652
+ 18654
+ IN
+ O
+
+
+ the
+ the
+ 18655
+ 18658
+ DT
+ O
+
+
+ United
+ United
+ 18659
+ 18665
+ NNP
+ LOCATION
+
+
+ States
+ States
+ 18667
+ 18673
+ NNPS
+ LOCATION
+
+
+ such
+ such
+ 18674
+ 18678
+ JJ
+ O
+
+
+ funds
+ fund
+ 18679
+ 18684
+ NNS
+ O
+
+
+ would
+ would
+ 18685
+ 18690
+ MD
+ O
+
+
+ have
+ have
+ 18691
+ 18695
+ VB
+ O
+
+
+ to
+ to
+ 18696
+ 18698
+ TO
+ O
+
+
+ be
+ be
+ 18699
+ 18701
+ VB
+ O
+
+
+ appro
+ appro
+ 18702
+ 18707
+ NN
+ O
+
+
+ -
+ -
+ 18707
+ 18708
+ :
+ O
+
+
+ priated
+ priated
+ 18710
+ 18717
+ JJ
+ O
+
+
+ pursuant
+ pursuant
+ 18718
+ 18726
+ JJ
+ O
+
+
+ to
+ to
+ 18727
+ 18729
+ TO
+ O
+
+
+ our
+ we
+ 18730
+ 18733
+ PRP$
+ O
+
+
+ constitutional
+ constitutional
+ 18734
+ 18748
+ JJ
+ O
+
+
+ proc
+ proc
+ 18749
+ 18753
+ NN
+ O
+
+
+ -
+ -
+ 18753
+ 18754
+ :
+ O
+
+
+ esses
+ ess
+ 18756
+ 18761
+ NNS
+ O
+
+
+ .
+ .
+ 18761
+ 18762
+ .
+ O
+
+
+ (ROOT (S (PP (IN Under) (NP (NP (DT the) (JJ domestic) (NN law)) (PP (IN of) (NP (DT the) (NNP United) (NNPS States))))) (NP (JJ such) (NNS funds)) (VP (MD would) (VP (VB have) (S (VP (TO to) (VP (VB be) (NP (NP (NN appro)) (: -) (ADJP (JJ priated) (JJ pursuant))) (PP (TO to) (NP (NP (PRP$ our) (JJ constitutional) (NN proc)) (: -) (NP (NNS esses))))))))) (. .)))
+
+
+ ROOT
+ have
+
+
+ have
+ Under
+
+
+ law
+ the
+
+
+ law
+ domestic
+
+
+ Under
+ law
+
+
+ law
+ of
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ of
+ States
+
+
+ funds
+ such
+
+
+ have
+ funds
+
+
+ have
+ would
+
+
+ appro
+ to
+
+
+ appro
+ be
+
+
+ have
+ appro
+
+
+ pursuant
+ priated
+
+
+ appro
+ pursuant
+
+
+ appro
+ to
+
+
+ proc
+ our
+
+
+ proc
+ constitutional
+
+
+ to
+ proc
+
+
+ proc
+ esses
+
+
+
+
+ ROOT
+ have
+
+
+ law
+ the
+
+
+ law
+ domestic
+
+
+ have
+ law
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ law
+ States
+
+
+ funds
+ such
+
+
+ have
+ funds
+
+
+ have
+ would
+
+
+ appro
+ to
+
+
+ appro
+ be
+
+
+ have
+ appro
+
+
+ pursuant
+ priated
+
+
+ appro
+ pursuant
+
+
+ proc
+ our
+
+
+ proc
+ constitutional
+
+
+ appro
+ proc
+
+
+ proc
+ esses
+
+
+
+
+ ROOT
+ have
+
+
+ law
+ the
+
+
+ law
+ domestic
+
+
+ have
+ law
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ law
+ States
+
+
+ funds
+ such
+
+
+ have
+ funds
+
+
+ have
+ would
+
+
+ appro
+ to
+
+
+ appro
+ be
+
+
+ have
+ appro
+
+
+ pursuant
+ priated
+
+
+ appro
+ pursuant
+
+
+ proc
+ our
+
+
+ proc
+ constitutional
+
+
+ appro
+ proc
+
+
+ proc
+ esses
+
+
+
+
+
+
+ I
+ I
+ 18763
+ 18764
+ PRP
+ O
+
+
+ am
+ be
+ 18765
+ 18767
+ VBP
+ O
+
+
+ sure
+ sure
+ 18768
+ 18772
+ JJ
+ O
+
+
+ the
+ the
+ 18773
+ 18776
+ DT
+ O
+
+
+ same
+ same
+ 18777
+ 18781
+ JJ
+ O
+
+
+ would
+ would
+ 18782
+ 18787
+ MD
+ O
+
+
+ be
+ be
+ 18788
+ 18790
+ VB
+ O
+
+
+ true
+ true
+ 18791
+ 18795
+ JJ
+ O
+
+
+ for
+ for
+ 18796
+ 18799
+ IN
+ O
+
+
+ other
+ other
+ 18801
+ 18806
+ JJ
+ O
+
+
+ countries
+ country
+ 18807
+ 18816
+ NNS
+ O
+
+
+ that
+ that
+ 18817
+ 18821
+ WDT
+ O
+
+
+ would
+ would
+ 18822
+ 18827
+ MD
+ O
+
+
+ participate
+ participate
+ 18828
+ 18839
+ VB
+ O
+
+
+ in
+ in
+ 18840
+ 18842
+ IN
+ O
+
+
+ such
+ such
+ 18844
+ 18848
+ PDT
+ O
+
+
+ an
+ a
+ 18849
+ 18851
+ DT
+ O
+
+
+ agreement
+ agreement
+ 18852
+ 18861
+ NN
+ O
+
+
+ .
+ .
+ 18861
+ 18862
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (VBP am) (ADJP (JJ sure) (SBAR (S (NP (DT the) (JJ same)) (VP (MD would) (VP (VB be) (ADJP (JJ true) (PP (IN for) (NP (NP (JJ other) (NNS countries)) (SBAR (WHNP (WDT that)) (S (VP (MD would) (VP (VB participate) (PP (IN in) (NP (PDT such) (DT an) (NN agreement)))))))))))))))) (. .)))
+
+
+ ROOT
+ sure
+
+
+ sure
+ I
+
+
+ sure
+ am
+
+
+ same
+ the
+
+
+ true
+ same
+
+
+ true
+ would
+
+
+ true
+ be
+
+
+ sure
+ true
+
+
+ true
+ for
+
+
+ countries
+ other
+
+
+ for
+ countries
+
+
+ participate
+ that
+
+
+ participate
+ would
+
+
+ countries
+ participate
+
+
+ participate
+ in
+
+
+ agreement
+ such
+
+
+ agreement
+ an
+
+
+ in
+ agreement
+
+
+
+
+ ROOT
+ sure
+
+
+ sure
+ I
+
+
+ sure
+ am
+
+
+ same
+ the
+
+
+ true
+ same
+
+
+ true
+ would
+
+
+ true
+ be
+
+
+ sure
+ true
+
+
+ countries
+ other
+
+
+ true
+ countries
+
+
+ participate
+ that
+
+
+ participate
+ would
+
+
+ countries
+ participate
+
+
+ agreement
+ such
+
+
+ agreement
+ an
+
+
+ participate
+ agreement
+
+
+
+
+ ROOT
+ sure
+
+
+ sure
+ I
+
+
+ sure
+ am
+
+
+ same
+ the
+
+
+ true
+ same
+
+
+ true
+ would
+
+
+ true
+ be
+
+
+ sure
+ true
+
+
+ countries
+ other
+
+
+ true
+ countries
+
+
+ participate
+ that
+
+
+ participate
+ would
+
+
+ countries
+ participate
+
+
+ agreement
+ such
+
+
+ agreement
+ an
+
+
+ participate
+ agreement
+
+
+
+
+
+
+ However
+ however
+ 18863
+ 18870
+ RB
+ O
+
+
+ ,
+ ,
+ 18870
+ 18871
+ ,
+ O
+
+
+ the
+ the
+ 18872
+ 18875
+ DT
+ O
+
+
+ inclusion
+ inclusion
+ 18876
+ 18885
+ NN
+ O
+
+
+ of
+ of
+ 18887
+ 18889
+ IN
+ O
+
+
+ an
+ a
+ 18890
+ 18892
+ DT
+ O
+
+
+ environmental
+ environmental
+ 18893
+ 18906
+ JJ
+ O
+
+
+ peace
+ peace
+ 18907
+ 18912
+ NN
+ O
+
+
+ dividend
+ dividend
+ 18913
+ 18921
+ NN
+ O
+
+
+ in
+ in
+ 18922
+ 18924
+ IN
+ O
+
+
+ an
+ a
+ 18925
+ 18927
+ DT
+ O
+
+
+ arms
+ arm
+ 18929
+ 18933
+ NNS
+ O
+
+
+ control
+ control
+ 18934
+ 18941
+ NN
+ O
+
+
+ treaty
+ treaty
+ 18942
+ 18948
+ NN
+ O
+
+
+ will
+ will
+ 18949
+ 18953
+ MD
+ O
+
+
+ create
+ create
+ 18954
+ 18960
+ VB
+ O
+
+
+ an
+ a
+ 18961
+ 18963
+ DT
+ O
+
+
+ obligation
+ obligation
+ 18964
+ 18974
+ NN
+ O
+
+
+ and
+ and
+ 18976
+ 18979
+ CC
+ O
+
+
+ a
+ a
+ 18980
+ 18981
+ DT
+ O
+
+
+ goal
+ goal
+ 18982
+ 18986
+ NN
+ O
+
+
+ for
+ for
+ 18987
+ 18990
+ IN
+ O
+
+
+ both
+ both
+ 18991
+ 18995
+ DT
+ O
+
+
+ West
+ West
+ 18996
+ 19000
+ NNP
+ O
+
+
+ and
+ and
+ 19001
+ 19004
+ CC
+ O
+
+
+ East
+ East
+ 19005
+ 19009
+ NNP
+ O
+
+
+ .
+ .
+ 19009
+ 19010
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB However)) (, ,) (NP (NP (DT the) (NN inclusion)) (PP (IN of) (NP (NP (DT an) (JJ environmental) (NN peace) (NN dividend)) (PP (IN in) (NP (DT an) (NNS arms) (NN control) (NN treaty)))))) (VP (MD will) (VP (VB create) (NP (NP (DT an) (NN obligation)) (CC and) (NP (DT a) (NN goal))) (PP (IN for) (NP (DT both) (NNP West) (CC and) (NNP East))))) (. .)))
+
+
+ ROOT
+ create
+
+
+ create
+ However
+
+
+ inclusion
+ the
+
+
+ create
+ inclusion
+
+
+ inclusion
+ of
+
+
+ dividend
+ an
+
+
+ dividend
+ environmental
+
+
+ dividend
+ peace
+
+
+ of
+ dividend
+
+
+ dividend
+ in
+
+
+ treaty
+ an
+
+
+ treaty
+ arms
+
+
+ treaty
+ control
+
+
+ in
+ treaty
+
+
+ create
+ will
+
+
+ obligation
+ an
+
+
+ create
+ obligation
+
+
+ obligation
+ and
+
+
+ goal
+ a
+
+
+ obligation
+ goal
+
+
+ create
+ for
+
+
+ West
+ both
+
+
+ for
+ West
+
+
+ West
+ and
+
+
+ West
+ East
+
+
+
+
+ ROOT
+ create
+
+
+ create
+ However
+
+
+ inclusion
+ the
+
+
+ create
+ inclusion
+
+
+ dividend
+ an
+
+
+ dividend
+ environmental
+
+
+ dividend
+ peace
+
+
+ inclusion
+ dividend
+
+
+ treaty
+ an
+
+
+ treaty
+ arms
+
+
+ treaty
+ control
+
+
+ dividend
+ treaty
+
+
+ create
+ will
+
+
+ obligation
+ an
+
+
+ create
+ obligation
+
+
+ goal
+ a
+
+
+ obligation
+ goal
+
+
+ West
+ both
+
+
+ create
+ West
+
+
+ West
+ East
+
+
+
+
+ ROOT
+ create
+
+
+ create
+ However
+
+
+ inclusion
+ the
+
+
+ create
+ inclusion
+
+
+ dividend
+ an
+
+
+ dividend
+ environmental
+
+
+ dividend
+ peace
+
+
+ inclusion
+ dividend
+
+
+ treaty
+ an
+
+
+ treaty
+ arms
+
+
+ treaty
+ control
+
+
+ dividend
+ treaty
+
+
+ create
+ will
+
+
+ obligation
+ an
+
+
+ create
+ obligation
+
+
+ goal
+ a
+
+
+ create
+ goal
+
+
+ obligation
+ goal
+
+
+ West
+ both
+
+
+ create
+ West
+
+
+ create
+ East
+
+
+ West
+ East
+
+
+
+
+
+
+ It
+ it
+ 19011
+ 19013
+ PRP
+ O
+
+
+ would
+ would
+ 19014
+ 19019
+ MD
+ O
+
+
+ also
+ also
+ 19021
+ 19025
+ RB
+ O
+
+
+ set
+ set
+ 19026
+ 19029
+ VB
+ O
+
+
+ an
+ a
+ 19030
+ 19032
+ DT
+ O
+
+
+ important
+ important
+ 19033
+ 19042
+ JJ
+ O
+
+
+ precedent
+ precedent
+ 19043
+ 19052
+ NN
+ O
+
+
+ for
+ for
+ 19053
+ 19056
+ IN
+ O
+
+
+ future
+ future
+ 19057
+ 19063
+ JJ
+ DATE
+ FUTURE_REF
+ FUTURE_REF
+
+
+ East-West
+ east-west
+ 19065
+ 19074
+ JJ
+ MISC
+
+
+ agreements
+ agreement
+ 19075
+ 19085
+ NNS
+ O
+
+
+ ,
+ ,
+ 19085
+ 19086
+ ,
+ O
+
+
+ one
+ one
+ 19087
+ 19090
+ CD
+ NUMBER
+ 1.0
+
+
+ where
+ where
+ 19091
+ 19096
+ WRB
+ O
+
+
+ we
+ we
+ 19097
+ 19099
+ PRP
+ O
+
+
+ agree
+ agree
+ 19100
+ 19105
+ VBP
+ O
+
+
+ not
+ not
+ 19107
+ 19110
+ RB
+ O
+
+
+ only
+ only
+ 19111
+ 19115
+ RB
+ O
+
+
+ on
+ on
+ 19116
+ 19118
+ IN
+ O
+
+
+ measures
+ measure
+ 19119
+ 19127
+ NNS
+ O
+
+
+ to
+ to
+ 19128
+ 19130
+ TO
+ O
+
+
+ reduce
+ reduce
+ 19131
+ 19137
+ VB
+ O
+
+
+ the
+ the
+ 19138
+ 19141
+ DT
+ O
+
+
+ risk
+ risk
+ 19142
+ 19146
+ NN
+ O
+
+
+ of
+ of
+ 19147
+ 19149
+ IN
+ O
+
+
+ mutual
+ mutual
+ 19151
+ 19157
+ JJ
+ O
+
+
+ destruction
+ destruction
+ 19158
+ 19169
+ NN
+ O
+
+
+ but
+ but
+ 19170
+ 19173
+ CC
+ O
+
+
+ also
+ also
+ 19174
+ 19178
+ RB
+ O
+
+
+ on
+ on
+ 19179
+ 19181
+ IN
+ O
+
+
+ major
+ major
+ 19182
+ 19187
+ JJ
+ O
+
+
+ meas
+ mea
+ 19188
+ 19192
+ NNS
+ O
+
+
+ -
+ -
+ 19192
+ 19193
+ :
+ O
+
+
+ ures
+ ure
+ 19195
+ 19199
+ NNS
+ O
+
+
+ of
+ of
+ 19200
+ 19202
+ IN
+ O
+
+
+ mutual
+ mutual
+ 19203
+ 19209
+ JJ
+ O
+
+
+ cooperation
+ cooperation
+ 19210
+ 19221
+ NN
+ O
+
+
+ .
+ .
+ 19221
+ 19222
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (MD would) (ADVP (RB also)) (VP (VB set) (NP (DT an) (JJ important) (NN precedent)) (PP (IN for) (NP (NP (JJ future) (JJ East-West) (NNS agreements)) (, ,) (NP (NP (NP (CD one)) (SBAR (WHADVP (WRB where)) (S (NP (PRP we)) (VP (VBP agree) (NP (RB not) (RB only)) (PP (PP (IN on) (NP (NNS measures) (S (VP (TO to) (VP (VB reduce) (NP (NP (DT the) (NN risk)) (PP (IN of) (NP (JJ mutual) (NN destruction))))))))) (CONJP (CC but) (RB also)) (PP (IN on) (NP (JJ major) (NNS meas)))))))) (: -) (NP (NP (NNS ures)) (PP (IN of) (NP (JJ mutual) (NN cooperation))))))))) (. .)))
+
+
+ ROOT
+ set
+
+
+ set
+ It
+
+
+ set
+ would
+
+
+ set
+ also
+
+
+ precedent
+ an
+
+
+ precedent
+ important
+
+
+ set
+ precedent
+
+
+ set
+ for
+
+
+ agreements
+ future
+
+
+ agreements
+ East-West
+
+
+ for
+ agreements
+
+
+ agreements
+ one
+
+
+ agree
+ where
+
+
+ agree
+ we
+
+
+ one
+ agree
+
+
+ only
+ not
+
+
+ agree
+ only
+
+
+ agree
+ on
+
+
+ on
+ measures
+
+
+ reduce
+ to
+
+
+ measures
+ reduce
+
+
+ risk
+ the
+
+
+ reduce
+ risk
+
+
+ risk
+ of
+
+
+ destruction
+ mutual
+
+
+ of
+ destruction
+
+
+ also
+ but
+
+
+ on
+ also
+
+
+ on
+ on
+
+
+ meas
+ major
+
+
+ on
+ meas
+
+
+ one
+ ures
+
+
+ ures
+ of
+
+
+ cooperation
+ mutual
+
+
+ of
+ cooperation
+
+
+
+
+ ROOT
+ set
+
+
+ set
+ It
+
+
+ set
+ would
+
+
+ set
+ also
+
+
+ precedent
+ an
+
+
+ precedent
+ important
+
+
+ set
+ precedent
+
+
+ agreements
+ future
+
+
+ agreements
+ East-West
+
+
+ set
+ agreements
+
+
+ agreements
+ one
+
+
+ agree
+ where
+
+
+ agree
+ we
+
+
+ one
+ agree
+
+
+ only
+ not
+
+
+ agree
+ only
+
+
+ agree
+ measures
+
+
+ reduce
+ to
+
+
+ measures
+ reduce
+
+
+ risk
+ the
+
+
+ reduce
+ risk
+
+
+ destruction
+ mutual
+
+
+ risk
+ destruction
+
+
+ meas
+ major
+
+
+ measures
+ meas
+
+
+ one
+ ures
+
+
+ cooperation
+ mutual
+
+
+ ures
+ cooperation
+
+
+
+
+ ROOT
+ set
+
+
+ set
+ It
+
+
+ set
+ would
+
+
+ set
+ also
+
+
+ precedent
+ an
+
+
+ precedent
+ important
+
+
+ set
+ precedent
+
+
+ agreements
+ future
+
+
+ agreements
+ East-West
+
+
+ set
+ agreements
+
+
+ agreements
+ one
+
+
+ agree
+ where
+
+
+ agree
+ we
+
+
+ one
+ agree
+
+
+ only
+ not
+
+
+ agree
+ only
+
+
+ agree
+ measures
+
+
+ reduce
+ to
+
+
+ measures
+ reduce
+
+
+ risk
+ the
+
+
+ reduce
+ risk
+
+
+ destruction
+ mutual
+
+
+ risk
+ destruction
+
+
+ meas
+ major
+
+
+ agree
+ meas
+
+
+ measures
+ meas
+
+
+ one
+ ures
+
+
+ cooperation
+ mutual
+
+
+ ures
+ cooperation
+
+
+
+
+
+
+ CONGRESSIONAL
+ congressional
+ 19230
+ 19243
+ JJ
+ O
+
+
+ RECORD-SENATE
+ record-senate
+ 19244
+ 19257
+ NN
+ O
+
+
+ January
+ January
+ 19261
+ 19268
+ NNP
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ 23
+ 23
+ 19269
+ 19271
+ CD
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ ,
+ ,
+ 19271
+ 19272
+ ,
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ 1990
+ 1990
+ 19273
+ 19277
+ CD
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ I
+ I
+ 19283
+ 19284
+ PRP
+ O
+
+
+ would
+ would
+ 19285
+ 19290
+ MD
+ O
+
+
+ further
+ further
+ 19291
+ 19298
+ RB
+ O
+
+
+ propose
+ propose
+ 19299
+ 19306
+ VB
+ O
+
+
+ that
+ that
+ 19307
+ 19311
+ IN
+ O
+
+
+ we
+ we
+ 19312
+ 19314
+ PRP
+ O
+
+
+ direct
+ direct
+ 19315
+ 19321
+ VBP
+ O
+
+
+ the
+ the
+ 19322
+ 19325
+ DT
+ O
+
+
+ earmarked
+ earmark
+ 19327
+ 19336
+ VBN
+ O
+
+
+ environmental
+ environmental
+ 19340
+ 19353
+ JJ
+ O
+
+
+ expenditure
+ expenditure
+ 19356
+ 19367
+ NN
+ O
+
+
+ largely
+ largely
+ 19369
+ 19376
+ RB
+ O
+
+
+ to
+ to
+ 19377
+ 19379
+ TO
+ O
+
+
+ those
+ those
+ 19380
+ 19385
+ DT
+ O
+
+
+ problems
+ problem
+ 19386
+ 19394
+ NNS
+ O
+
+
+ which
+ which
+ 19395
+ 19400
+ WDT
+ O
+
+
+ are
+ be
+ 19401
+ 19404
+ VBP
+ O
+
+
+ interna
+ interna
+ 19405
+ 19412
+ NN
+ O
+
+
+ -
+ -
+ 19412
+ 19413
+ :
+ O
+
+
+ tional
+ tional
+ 19415
+ 19421
+ JJ
+ O
+
+
+ or
+ or
+ 19422
+ 19424
+ CC
+ O
+
+
+ global
+ global
+ 19425
+ 19431
+ JJ
+ O
+
+
+ in
+ in
+ 19432
+ 19434
+ IN
+ O
+
+
+ nature
+ nature
+ 19435
+ 19441
+ NN
+ O
+
+
+ .
+ .
+ 19441
+ 19442
+ .
+ O
+
+
+ (ROOT (S (NP (NP (JJ CONGRESSIONAL) (NN RECORD-SENATE)) (NP-TMP (NNP January) (CD 23) (, ,) (CD 1990))) (NP (PRP I)) (VP (MD would) (ADVP (RB further)) (VP (VB propose) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP direct) (NP (DT the) (VBN earmarked) (JJ environmental) (NN expenditure)) (PP (ADVP (RB largely)) (TO to) (NP (NP (DT those) (NNS problems)) (SBAR (WHNP (WDT which)) (S (VP (VBP are) (NP (NP (NP (NN interna)) (: -) (ADJP (JJ tional) (CC or) (JJ global))) (PP (IN in) (NP (NN nature)))))))))))))) (. .)))
+
+
+ ROOT
+ propose
+
+
+ RECORD-SENATE
+ CONGRESSIONAL
+
+
+ propose
+ RECORD-SENATE
+
+
+ RECORD-SENATE
+ January
+
+
+ January
+ 23
+
+
+ January
+ 1990
+
+
+ propose
+ I
+
+
+ propose
+ would
+
+
+ propose
+ further
+
+
+ direct
+ that
+
+
+ direct
+ we
+
+
+ propose
+ direct
+
+
+ expenditure
+ the
+
+
+ expenditure
+ earmarked
+
+
+ expenditure
+ environmental
+
+
+ direct
+ expenditure
+
+
+ to
+ largely
+
+
+ direct
+ to
+
+
+ problems
+ those
+
+
+ to
+ problems
+
+
+ interna
+ which
+
+
+ interna
+ are
+
+
+ problems
+ interna
+
+
+ interna
+ tional
+
+
+ tional
+ or
+
+
+ tional
+ global
+
+
+ interna
+ in
+
+
+ in
+ nature
+
+
+
+
+ ROOT
+ propose
+
+
+ RECORD-SENATE
+ CONGRESSIONAL
+
+
+ propose
+ RECORD-SENATE
+
+
+ RECORD-SENATE
+ January
+
+
+ January
+ 23
+
+
+ January
+ 1990
+
+
+ propose
+ I
+
+
+ propose
+ would
+
+
+ propose
+ further
+
+
+ direct
+ that
+
+
+ direct
+ we
+
+
+ propose
+ direct
+
+
+ expenditure
+ the
+
+
+ expenditure
+ earmarked
+
+
+ expenditure
+ environmental
+
+
+ direct
+ expenditure
+
+
+ direct
+ largely
+
+
+ problems
+ those
+
+
+ direct
+ problems
+
+
+ interna
+ which
+
+
+ interna
+ are
+
+
+ problems
+ interna
+
+
+ interna
+ tional
+
+
+ tional
+ global
+
+
+ interna
+ nature
+
+
+
+
+ ROOT
+ propose
+
+
+ RECORD-SENATE
+ CONGRESSIONAL
+
+
+ propose
+ RECORD-SENATE
+
+
+ RECORD-SENATE
+ January
+
+
+ January
+ 23
+
+
+ January
+ 1990
+
+
+ propose
+ I
+
+
+ propose
+ would
+
+
+ propose
+ further
+
+
+ direct
+ that
+
+
+ direct
+ we
+
+
+ propose
+ direct
+
+
+ expenditure
+ the
+
+
+ expenditure
+ earmarked
+
+
+ expenditure
+ environmental
+
+
+ direct
+ expenditure
+
+
+ direct
+ largely
+
+
+ problems
+ those
+
+
+ direct
+ problems
+
+
+ interna
+ which
+
+
+ interna
+ are
+
+
+ problems
+ interna
+
+
+ interna
+ tional
+
+
+ interna
+ global
+
+
+ tional
+ global
+
+
+ interna
+ nature
+
+
+
+
+
+
+ In
+ in
+ 19443
+ 19445
+ IN
+ O
+
+
+ Europe
+ Europe
+ 19446
+ 19452
+ NNP
+ LOCATION
+
+
+ this
+ this
+ 19453
+ 19457
+ DT
+ O
+
+
+ would
+ would
+ 19459
+ 19464
+ MD
+ O
+
+
+ mean
+ mean
+ 19465
+ 19469
+ VB
+ O
+
+
+ spending
+ spending
+ 19470
+ 19478
+ NN
+ O
+
+
+ to
+ to
+ 19479
+ 19481
+ TO
+ O
+
+
+ clean
+ clean
+ 19482
+ 19487
+ VB
+ O
+
+
+ up
+ up
+ 19488
+ 19490
+ RP
+ O
+
+
+ shared
+ shared
+ 19491
+ 19497
+ JJ
+ O
+
+
+ rivers
+ river
+ 19499
+ 19505
+ NNS
+ O
+
+
+ ,
+ ,
+ 19505
+ 19506
+ ,
+ O
+
+
+ to
+ to
+ 19507
+ 19509
+ TO
+ O
+
+
+ prevent
+ prevent
+ 19510
+ 19517
+ VB
+ O
+
+
+ air
+ air
+ 19518
+ 19521
+ NN
+ O
+
+
+ pollution
+ pollution
+ 19522
+ 19531
+ NN
+ O
+
+
+ which
+ which
+ 19532
+ 19537
+ WDT
+ O
+
+
+ in
+ in
+ 19538
+ 19540
+ IN
+ O
+
+
+ Europe
+ Europe
+ 19542
+ 19548
+ NNP
+ LOCATION
+
+
+ has
+ have
+ 19549
+ 19552
+ VBZ
+ O
+
+
+ no
+ no
+ 19553
+ 19555
+ DT
+ O
+
+
+ boundaries
+ boundary
+ 19556
+ 19566
+ NNS
+ O
+
+
+ ,
+ ,
+ 19566
+ 19567
+ ,
+ O
+
+
+ and
+ and
+ 19568
+ 19571
+ CC
+ O
+
+
+ to
+ to
+ 19572
+ 19574
+ TO
+ O
+
+
+ neutralize
+ neutralize
+ 19575
+ 19585
+ VB
+ O
+
+
+ acid
+ acid
+ 19587
+ 19591
+ JJ
+ O
+
+
+ rain
+ rain
+ 19592
+ 19596
+ NN
+ O
+
+
+ which
+ which
+ 19597
+ 19602
+ WDT
+ O
+
+
+ is
+ be
+ 19603
+ 19605
+ VBZ
+ O
+
+
+ destroying
+ destroy
+ 19606
+ 19616
+ VBG
+ O
+
+
+ the
+ the
+ 19617
+ 19620
+ DT
+ O
+
+
+ forests
+ forest
+ 19621
+ 19628
+ NNS
+ O
+
+
+ ,
+ ,
+ 19628
+ 19629
+ ,
+ O
+
+
+ lakes
+ lake
+ 19631
+ 19636
+ NNS
+ O
+
+
+ ,
+ ,
+ 19636
+ 19637
+ ,
+ O
+
+
+ and
+ and
+ 19638
+ 19641
+ CC
+ O
+
+
+ monuments
+ monument
+ 19642
+ 19651
+ NNS
+ O
+
+
+ of
+ of
+ 19652
+ 19654
+ IN
+ O
+
+
+ Europe
+ Europe
+ 19655
+ 19661
+ NNP
+ LOCATION
+
+
+ .
+ .
+ 19661
+ 19662
+ .
+ O
+
+
+ (ROOT (S (PP (IN In) (NP (NNP Europe))) (NP (DT this)) (VP (MD would) (VP (VB mean) (NP (NN spending)) (S (VP (VP (TO to) (VP (VB clean) (PRT (RP up)) (NP (JJ shared) (NNS rivers)))) (, ,) (VP (TO to) (VP (VB prevent) (NP (NP (NN air) (NN pollution)) (SBAR (WHNP (WDT which)) (S (PP (IN in) (NP (NNP Europe))) (VP (VBZ has) (NP (DT no) (NNS boundaries)))))))) (, ,) (CC and) (VP (TO to) (VP (VB neutralize) (NP (NP (JJ acid) (NN rain)) (SBAR (WHNP (WDT which)) (S (VP (VBZ is) (VP (VBG destroying) (NP (NP (DT the) (NNS forests)) (, ,) (NP (NNS lakes)) (, ,) (CC and) (NP (NP (NNS monuments)) (PP (IN of) (NP (NNP Europe)))))))))))))))) (. .)))
+
+
+ ROOT
+ mean
+
+
+ mean
+ In
+
+
+ In
+ Europe
+
+
+ mean
+ this
+
+
+ mean
+ would
+
+
+ mean
+ spending
+
+
+ clean
+ to
+
+
+ mean
+ clean
+
+
+ clean
+ up
+
+
+ rivers
+ shared
+
+
+ clean
+ rivers
+
+
+ prevent
+ to
+
+
+ clean
+ prevent
+
+
+ pollution
+ air
+
+
+ prevent
+ pollution
+
+
+ has
+ which
+
+
+ has
+ in
+
+
+ in
+ Europe
+
+
+ pollution
+ has
+
+
+ boundaries
+ no
+
+
+ has
+ boundaries
+
+
+ clean
+ and
+
+
+ neutralize
+ to
+
+
+ clean
+ neutralize
+
+
+ rain
+ acid
+
+
+ neutralize
+ rain
+
+
+ destroying
+ which
+
+
+ destroying
+ is
+
+
+ rain
+ destroying
+
+
+ forests
+ the
+
+
+ destroying
+ forests
+
+
+ forests
+ lakes
+
+
+ forests
+ and
+
+
+ forests
+ monuments
+
+
+ monuments
+ of
+
+
+ of
+ Europe
+
+
+
+
+ ROOT
+ mean
+
+
+ mean
+ Europe
+
+
+ mean
+ this
+
+
+ mean
+ would
+
+
+ mean
+ spending
+
+
+ clean
+ to
+
+
+ mean
+ clean
+
+
+ clean
+ up
+
+
+ rivers
+ shared
+
+
+ clean
+ rivers
+
+
+ prevent
+ to
+
+
+ clean
+ prevent
+
+
+ pollution
+ air
+
+
+ prevent
+ pollution
+
+
+ has
+ which
+
+
+ has
+ Europe
+
+
+ pollution
+ has
+
+
+ boundaries
+ no
+
+
+ has
+ boundaries
+
+
+ neutralize
+ to
+
+
+ clean
+ neutralize
+
+
+ rain
+ acid
+
+
+ neutralize
+ rain
+
+
+ destroying
+ which
+
+
+ destroying
+ is
+
+
+ rain
+ destroying
+
+
+ forests
+ the
+
+
+ destroying
+ forests
+
+
+ forests
+ lakes
+
+
+ forests
+ monuments
+
+
+ monuments
+ Europe
+
+
+
+
+ ROOT
+ mean
+
+
+ mean
+ Europe
+
+
+ mean
+ this
+
+
+ mean
+ would
+
+
+ mean
+ spending
+
+
+ clean
+ to
+
+
+ mean
+ clean
+
+
+ clean
+ up
+
+
+ rivers
+ shared
+
+
+ clean
+ rivers
+
+
+ prevent
+ to
+
+
+ mean
+ prevent
+
+
+ clean
+ prevent
+
+
+ pollution
+ air
+
+
+ prevent
+ pollution
+
+
+ has
+ which
+
+
+ has
+ Europe
+
+
+ pollution
+ has
+
+
+ boundaries
+ no
+
+
+ has
+ boundaries
+
+
+ neutralize
+ to
+
+
+ mean
+ neutralize
+
+
+ clean
+ neutralize
+
+
+ rain
+ acid
+
+
+ neutralize
+ rain
+
+
+ destroying
+ which
+
+
+ destroying
+ is
+
+
+ rain
+ destroying
+
+
+ forests
+ the
+
+
+ destroying
+ forests
+
+
+ destroying
+ lakes
+
+
+ forests
+ lakes
+
+
+ destroying
+ monuments
+
+
+ forests
+ monuments
+
+
+ monuments
+ Europe
+
+
+
+
+
+
+ It
+ it
+ 19666
+ 19668
+ PRP
+ O
+
+
+ is
+ be
+ 19669
+ 19671
+ VBZ
+ O
+
+
+ no
+ no
+ 19672
+ 19674
+ DT
+ O
+
+
+ secret
+ secret
+ 19675
+ 19681
+ NN
+ O
+
+
+ that
+ that
+ 19682
+ 19686
+ IN
+ O
+
+
+ the
+ the
+ 19687
+ 19690
+ DT
+ O
+
+
+ countries
+ country
+ 19691
+ 19700
+ NNS
+ O
+
+
+ of
+ of
+ 19701
+ 19703
+ IN
+ O
+
+
+ East
+ East
+ 19704
+ 19708
+ NNP
+ O
+
+
+ -
+ -
+ 19708
+ 19709
+ :
+ O
+
+
+ ern
+ ern
+ 19711
+ 19714
+ NN
+ O
+
+
+ Europe
+ Europe
+ 19715
+ 19721
+ NNP
+ LOCATION
+
+
+ have
+ have
+ 19722
+ 19726
+ VBP
+ O
+
+
+ lagged
+ lag
+ 19727
+ 19733
+ VBN
+ O
+
+
+ far
+ far
+ 19734
+ 19737
+ RB
+ O
+
+
+ behind
+ behind
+ 19738
+ 19744
+ IN
+ O
+
+
+ Western
+ Western
+ 19745
+ 19752
+ NNP
+ LOCATION
+
+
+ Europe
+ Europe
+ 19754
+ 19760
+ NNP
+ LOCATION
+
+
+ In
+ in
+ 19761
+ 19763
+ IN
+ O
+
+
+ utilizing
+ utilize
+ 19764
+ 19773
+ VBG
+ O
+
+
+ pollution
+ pollution
+ 19774
+ 19783
+ NN
+ O
+
+
+ control
+ control
+ 19784
+ 19791
+ NN
+ O
+
+
+ tech
+ tech
+ 19792
+ 19796
+ NN
+ O
+
+
+ .
+ .
+ 19796
+ 19797
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VBZ is) (NP (DT no) (NN secret)) (SBAR (IN that) (S (NP (NP (DT the) (NNS countries)) (PP (IN of) (NP (NP (NNP East)) (: -) (NP (NP (NN ern)) (NP (NNP Europe)))))) (VP (VBP have) (VP (VBN lagged) (ADVP (RB far) (PP (IN behind) (NP (NNP Western) (NNP Europe)))))) (PP (IN In) (S (VP (VBG utilizing) (NP (NN pollution) (NN control) (NN tech)))))))) (. .)))
+
+
+ ROOT
+ secret
+
+
+ secret
+ It
+
+
+ secret
+ is
+
+
+ secret
+ no
+
+
+ lagged
+ that
+
+
+ countries
+ the
+
+
+ lagged
+ countries
+
+
+ countries
+ of
+
+
+ of
+ East
+
+
+ East
+ ern
+
+
+ ern
+ Europe
+
+
+ lagged
+ have
+
+
+ secret
+ lagged
+
+
+ lagged
+ far
+
+
+ far
+ behind
+
+
+ Europe
+ Western
+
+
+ behind
+ Europe
+
+
+ lagged
+ In
+
+
+ In
+ utilizing
+
+
+ tech
+ pollution
+
+
+ tech
+ control
+
+
+ utilizing
+ tech
+
+
+
+
+ ROOT
+ secret
+
+
+ secret
+ It
+
+
+ secret
+ is
+
+
+ secret
+ no
+
+
+ lagged
+ that
+
+
+ countries
+ the
+
+
+ lagged
+ countries
+
+
+ countries
+ East
+
+
+ East
+ ern
+
+
+ ern
+ Europe
+
+
+ lagged
+ have
+
+
+ secret
+ lagged
+
+
+ lagged
+ far
+
+
+ Europe
+ Western
+
+
+ far
+ Europe
+
+
+ lagged
+ utilizing
+
+
+ tech
+ pollution
+
+
+ tech
+ control
+
+
+ utilizing
+ tech
+
+
+
+
+ ROOT
+ secret
+
+
+ secret
+ It
+
+
+ secret
+ is
+
+
+ secret
+ no
+
+
+ lagged
+ that
+
+
+ countries
+ the
+
+
+ lagged
+ countries
+
+
+ countries
+ East
+
+
+ East
+ ern
+
+
+ ern
+ Europe
+
+
+ lagged
+ have
+
+
+ secret
+ lagged
+
+
+ lagged
+ far
+
+
+ Europe
+ Western
+
+
+ far
+ Europe
+
+
+ lagged
+ utilizing
+
+
+ tech
+ pollution
+
+
+ tech
+ control
+
+
+ utilizing
+ tech
+
+
+
+
+
+
+ nologies
+ nology
+ 19799
+ 19807
+ NNS
+ O
+
+
+ in
+ in
+ 19808
+ 19810
+ IN
+ O
+
+
+ their
+ they
+ 19811
+ 19816
+ PRP$
+ O
+
+
+ manufacturing
+ manufacturing
+ 19817
+ 19830
+ NN
+ O
+
+
+ and
+ and
+ 19831
+ 19834
+ CC
+ O
+
+
+ power
+ power
+ 19835
+ 19840
+ NN
+ O
+
+
+ generation
+ generation
+ 19842
+ 19852
+ NN
+ O
+
+
+ processes
+ process
+ 19853
+ 19862
+ NNS
+ O
+
+
+ .
+ .
+ 19862
+ 19863
+ .
+ O
+
+
+ (ROOT (NP (NP (NNS nologies)) (PP (IN in) (NP (NP (PRP$ their) (NN manufacturing)) (CC and) (NP (NN power) (NN generation) (NNS processes)))) (. .)))
+
+
+ ROOT
+ nologies
+
+
+ nologies
+ in
+
+
+ manufacturing
+ their
+
+
+ in
+ manufacturing
+
+
+ manufacturing
+ and
+
+
+ processes
+ power
+
+
+ processes
+ generation
+
+
+ manufacturing
+ processes
+
+
+
+
+ ROOT
+ nologies
+
+
+ manufacturing
+ their
+
+
+ nologies
+ manufacturing
+
+
+ processes
+ power
+
+
+ processes
+ generation
+
+
+ manufacturing
+ processes
+
+
+
+
+ ROOT
+ nologies
+
+
+ manufacturing
+ their
+
+
+ nologies
+ manufacturing
+
+
+ processes
+ power
+
+
+ processes
+ generation
+
+
+ nologies
+ processes
+
+
+ manufacturing
+ processes
+
+
+
+
+
+
+ Partly
+ partly
+ 19864
+ 19870
+ RB
+ O
+
+
+ this
+ this
+ 19871
+ 19875
+ DT
+ O
+
+
+ results
+ result
+ 19876
+ 19883
+ VBZ
+ O
+
+
+ from
+ from
+ 19885
+ 19889
+ IN
+ O
+
+
+ antiquated
+ antiquated
+ 19890
+ 19900
+ JJ
+ O
+
+
+ plants
+ plant
+ 19901
+ 19907
+ NNS
+ O
+
+
+ ,
+ ,
+ 19907
+ 19908
+ ,
+ O
+
+
+ partly
+ partly
+ 19909
+ 19915
+ RB
+ O
+
+
+ from
+ from
+ 19916
+ 19920
+ IN
+ O
+
+
+ eco
+ eco
+ 19921
+ 19924
+ SYM
+ O
+
+
+ -
+ -
+ 19924
+ 19925
+ :
+ O
+
+
+ nomic
+ nomic
+ 19927
+ 19932
+ JJ
+ O
+
+
+ distress
+ distress
+ 19933
+ 19941
+ NN
+ O
+
+
+ that
+ that
+ 19942
+ 19946
+ WDT
+ O
+
+
+ necessitates
+ necessitate
+ 19947
+ 19959
+ VBZ
+ O
+
+
+ use
+ use
+ 19960
+ 19963
+ NN
+ O
+
+
+ of
+ of
+ 19964
+ 19966
+ IN
+ O
+
+
+ pol
+ pol
+ 19967
+ 19970
+ NN
+ O
+
+
+ -
+ -
+ 19970
+ 19971
+ :
+ O
+
+
+ luting
+ lute
+ 19973
+ 19979
+ VBG
+ O
+
+
+ technologies
+ technology
+ 19980
+ 19992
+ NNS
+ O
+
+
+ and
+ and
+ 19993
+ 19996
+ CC
+ O
+
+
+ fuels
+ fuel
+ 19997
+ 20002
+ NNS
+ O
+
+
+ ,
+ ,
+ 20002
+ 20003
+ ,
+ O
+
+
+ such
+ such
+ 20004
+ 20008
+ JJ
+ O
+
+
+ as
+ as
+ 20009
+ 20011
+ IN
+ O
+
+
+ high
+ high
+ 20012
+ 20016
+ JJ
+ O
+
+
+ sulfur
+ sulfur
+ 20018
+ 20024
+ NN
+ O
+
+
+ coal
+ coal
+ 20025
+ 20029
+ NN
+ O
+
+
+ ,
+ ,
+ 20029
+ 20030
+ ,
+ O
+
+
+ and
+ and
+ 20031
+ 20034
+ CC
+ O
+
+
+ partly
+ partly
+ 20035
+ 20041
+ RB
+ O
+
+
+ it
+ it
+ 20042
+ 20044
+ PRP
+ O
+
+
+ is
+ be
+ 20045
+ 20047
+ VBZ
+ O
+
+
+ the
+ the
+ 20048
+ 20051
+ DT
+ O
+
+
+ product
+ product
+ 20052
+ 20059
+ NN
+ O
+
+
+ of
+ of
+ 20060
+ 20062
+ IN
+ O
+
+
+ a
+ a
+ 20063
+ 20064
+ DT
+ O
+
+
+ political
+ political
+ 20066
+ 20075
+ JJ
+ O
+
+
+ system
+ system
+ 20076
+ 20082
+ NN
+ O
+
+
+ in
+ in
+ 20083
+ 20085
+ IN
+ O
+
+
+ which
+ which
+ 20086
+ 20091
+ WDT
+ O
+
+
+ the
+ the
+ 20092
+ 20095
+ DT
+ O
+
+
+ ruling
+ ruling
+ 20096
+ 20102
+ NN
+ O
+
+
+ elite
+ elite
+ 20103
+ 20108
+ NN
+ O
+
+
+ was
+ be
+ 20110
+ 20113
+ VBD
+ O
+
+
+ not
+ not
+ 20114
+ 20117
+ RB
+ O
+
+
+ responsive
+ responsive
+ 20118
+ 20128
+ JJ
+ O
+
+
+ to
+ to
+ 20129
+ 20131
+ TO
+ O
+
+
+ the
+ the
+ 20132
+ 20135
+ DT
+ O
+
+
+ concerns
+ concern
+ 20136
+ 20144
+ NNS
+ O
+
+
+ of
+ of
+ 20145
+ 20147
+ IN
+ O
+
+
+ the
+ the
+ 20148
+ 20151
+ DT
+ O
+
+
+ population
+ population
+ 20153
+ 20163
+ NN
+ O
+
+
+ .
+ .
+ 20163
+ 20164
+ .
+ O
+
+
+ (ROOT (S (S (ADVP (RB Partly)) (NP (DT this)) (VP (VBZ results) (PP (PP (IN from) (NP (JJ antiquated) (NNS plants))) (, ,) (RB partly) (PP (IN from) (FRAG (X (SYM eco)) (: -) (NP (JJ nomic) (NN distress))))) (SBAR (WHNP (WDT that)) (S (VP (VBZ necessitates) (NP (NP (NN use)) (PP (IN of) (NP (NP (NN pol)) (: -) (NP (NP (VBG luting) (NNS technologies)) (CC and) (NP (NNS fuels))))) (, ,) (PP (JJ such) (IN as) (NP (JJ high) (NN sulfur) (NN coal))))))))) (, ,) (CC and) (S (ADVP (RB partly)) (NP (PRP it)) (VP (VBZ is) (NP (NP (DT the) (NN product)) (PP (IN of) (NP (NP (DT a) (JJ political) (NN system)) (SBAR (WHPP (IN in) (WHNP (WDT which))) (S (NP (DT the) (NN ruling) (NN elite)) (VP (VBD was) (RB not) (ADJP (JJ responsive) (PP (TO to) (NP (NP (DT the) (NNS concerns)) (PP (IN of) (NP (DT the) (NN population)))))))))))))) (. .)))
+
+
+ ROOT
+ results
+
+
+ results
+ Partly
+
+
+ results
+ this
+
+
+ results
+ from
+
+
+ plants
+ antiquated
+
+
+ from
+ plants
+
+
+ from
+ partly
+
+
+ from
+ from
+
+
+ distress
+ eco
+
+
+ distress
+ nomic
+
+
+ from
+ distress
+
+
+ necessitates
+ that
+
+
+ results
+ necessitates
+
+
+ necessitates
+ use
+
+
+ use
+ of
+
+
+ of
+ pol
+
+
+ technologies
+ luting
+
+
+ pol
+ technologies
+
+
+ technologies
+ and
+
+
+ technologies
+ fuels
+
+
+ as
+ such
+
+
+ use
+ as
+
+
+ coal
+ high
+
+
+ coal
+ sulfur
+
+
+ as
+ coal
+
+
+ results
+ and
+
+
+ product
+ partly
+
+
+ product
+ it
+
+
+ product
+ is
+
+
+ product
+ the
+
+
+ results
+ product
+
+
+ product
+ of
+
+
+ system
+ a
+
+
+ system
+ political
+
+
+ of
+ system
+
+
+ responsive
+ in
+
+
+ in
+ which
+
+
+ elite
+ the
+
+
+ elite
+ ruling
+
+
+ responsive
+ elite
+
+
+ responsive
+ was
+
+
+ responsive
+ not
+
+
+ system
+ responsive
+
+
+ responsive
+ to
+
+
+ concerns
+ the
+
+
+ to
+ concerns
+
+
+ concerns
+ of
+
+
+ population
+ the
+
+
+ of
+ population
+
+
+
+
+ ROOT
+ results
+
+
+ results
+ Partly
+
+
+ results
+ this
+
+
+ plants
+ antiquated
+
+
+ results
+ plants
+
+
+ results
+ partly
+
+
+ results
+ from
+
+
+ distress
+ eco
+
+
+ distress
+ nomic
+
+
+ from
+ distress
+
+
+ necessitates
+ that
+
+
+ results
+ necessitates
+
+
+ necessitates
+ use
+
+
+ use
+ pol
+
+
+ technologies
+ luting
+
+
+ pol
+ technologies
+
+
+ technologies
+ fuels
+
+
+ coal
+ high
+
+
+ coal
+ sulfur
+
+
+ use
+ coal
+
+
+ product
+ partly
+
+
+ product
+ it
+
+
+ product
+ is
+
+
+ product
+ the
+
+
+ results
+ product
+
+
+ system
+ a
+
+
+ system
+ political
+
+
+ product
+ system
+
+
+ responsive
+ which
+
+
+ elite
+ the
+
+
+ elite
+ ruling
+
+
+ responsive
+ elite
+
+
+ responsive
+ was
+
+
+ responsive
+ not
+
+
+ system
+ responsive
+
+
+ concerns
+ the
+
+
+ responsive
+ concerns
+
+
+ population
+ the
+
+
+ concerns
+ population
+
+
+
+
+ ROOT
+ results
+
+
+ results
+ Partly
+
+
+ results
+ this
+
+
+ plants
+ antiquated
+
+
+ results
+ plants
+
+
+ results
+ partly
+
+
+ results
+ from
+
+
+ distress
+ eco
+
+
+ distress
+ nomic
+
+
+ from
+ distress
+
+
+ necessitates
+ that
+
+
+ results
+ necessitates
+
+
+ necessitates
+ use
+
+
+ use
+ pol
+
+
+ technologies
+ luting
+
+
+ pol
+ technologies
+
+
+ pol
+ fuels
+
+
+ technologies
+ fuels
+
+
+ coal
+ high
+
+
+ coal
+ sulfur
+
+
+ use
+ coal
+
+
+ product
+ partly
+
+
+ product
+ it
+
+
+ product
+ is
+
+
+ product
+ the
+
+
+ results
+ product
+
+
+ system
+ a
+
+
+ system
+ political
+
+
+ product
+ system
+
+
+ responsive
+ which
+
+
+ elite
+ the
+
+
+ elite
+ ruling
+
+
+ responsive
+ elite
+
+
+ responsive
+ was
+
+
+ responsive
+ not
+
+
+ system
+ responsive
+
+
+ concerns
+ the
+
+
+ responsive
+ concerns
+
+
+ population
+ the
+
+
+ concerns
+ population
+
+
+
+
+
+
+ Whatever
+ whatever
+ 20165
+ 20173
+ WDT
+ O
+
+
+ the
+ the
+ 20174
+ 20177
+ DT
+ O
+
+
+ reason
+ reason
+ 20178
+ 20184
+ NN
+ O
+
+
+ ,
+ ,
+ 20184
+ 20185
+ ,
+ O
+
+
+ however
+ however
+ 20186
+ 20193
+ RB
+ O
+
+
+ ,
+ ,
+ 20193
+ 20194
+ ,
+ O
+
+
+ the
+ the
+ 20196
+ 20199
+ DT
+ O
+
+
+ victims
+ victim
+ 20200
+ 20207
+ NNS
+ O
+
+
+ of
+ of
+ 20208
+ 20210
+ IN
+ O
+
+
+ East
+ east
+ 20211
+ 20215
+ JJ
+ MISC
+
+
+ European
+ european
+ 20216
+ 20224
+ JJ
+ MISC
+
+
+ pollution
+ pollution
+ 20225
+ 20234
+ NN
+ O
+
+
+ live
+ live
+ 20235
+ 20239
+ VB
+ O
+
+
+ in
+ in
+ 20241
+ 20243
+ IN
+ O
+
+
+ both
+ both
+ 20244
+ 20248
+ CC
+ O
+
+
+ the
+ the
+ 20249
+ 20252
+ DT
+ O
+
+
+ Eastern
+ Eastern
+ 20253
+ 20260
+ NNP
+ MISC
+
+
+ and
+ and
+ 20261
+ 20264
+ CC
+ O
+
+
+ Western
+ Western
+ 20265
+ 20272
+ NNP
+ MISC
+
+
+ wings
+ wing
+ 20273
+ 20278
+ NNS
+ O
+
+
+ of
+ of
+ 20279
+ 20281
+ IN
+ O
+
+
+ the
+ the
+ 20283
+ 20286
+ DT
+ O
+
+
+ common
+ common
+ 20287
+ 20293
+ JJ
+ O
+
+
+ European
+ european
+ 20294
+ 20302
+ JJ
+ MISC
+
+
+ home
+ home
+ 20303
+ 20307
+ NN
+ O
+
+
+ .
+ .
+ 20307
+ 20308
+ .
+ O
+
+
+ (ROOT (FRAG (WHNP (WDT Whatever)) (SBAR (WHNP (NP (DT the) (NN reason)) (PRN (, ,) (ADVP (RB however)) (, ,))) (S (NP (NP (DT the) (NNS victims)) (PP (IN of) (NP (JJ East) (JJ European) (NN pollution)))) (VP (VB live) (PP (IN in) (NP (NP (CC both) (NP (DT the) (NNP Eastern)) (CC and) (NP (NNP Western) (NNS wings))) (PP (IN of) (NP (DT the) (JJ common) (JJ European) (NN home)))))))) (. .)))
+
+
+ ROOT
+ live
+
+
+ live
+ Whatever
+
+
+ reason
+ the
+
+
+ live
+ reason
+
+
+ reason
+ however
+
+
+ victims
+ the
+
+
+ live
+ victims
+
+
+ victims
+ of
+
+
+ pollution
+ East
+
+
+ pollution
+ European
+
+
+ of
+ pollution
+
+
+ live
+ in
+
+
+ Eastern
+ both
+
+
+ Eastern
+ the
+
+
+ in
+ Eastern
+
+
+ Eastern
+ and
+
+
+ wings
+ Western
+
+
+ Eastern
+ wings
+
+
+ Eastern
+ of
+
+
+ home
+ the
+
+
+ home
+ common
+
+
+ home
+ European
+
+
+ of
+ home
+
+
+
+
+ ROOT
+ live
+
+
+ live
+ Whatever
+
+
+ reason
+ the
+
+
+ live
+ reason
+
+
+ reason
+ however
+
+
+ victims
+ the
+
+
+ live
+ victims
+
+
+ pollution
+ East
+
+
+ pollution
+ European
+
+
+ victims
+ pollution
+
+
+ Eastern
+ both
+
+
+ Eastern
+ the
+
+
+ live
+ Eastern
+
+
+ wings
+ Western
+
+
+ Eastern
+ wings
+
+
+ home
+ the
+
+
+ home
+ common
+
+
+ home
+ European
+
+
+ Eastern
+ home
+
+
+
+
+ ROOT
+ live
+
+
+ live
+ Whatever
+
+
+ reason
+ the
+
+
+ live
+ reason
+
+
+ reason
+ however
+
+
+ victims
+ the
+
+
+ live
+ victims
+
+
+ pollution
+ East
+
+
+ pollution
+ European
+
+
+ victims
+ pollution
+
+
+ Eastern
+ both
+
+
+ Eastern
+ the
+
+
+ live
+ Eastern
+
+
+ wings
+ Western
+
+
+ live
+ wings
+
+
+ Eastern
+ wings
+
+
+ home
+ the
+
+
+ home
+ common
+
+
+ home
+ European
+
+
+ Eastern
+ home
+
+
+
+
+
+
+ Both
+ both
+ 20309
+ 20313
+ DT
+ O
+
+
+ wings
+ wing
+ 20314
+ 20319
+ NNS
+ O
+
+
+ will
+ will
+ 20321
+ 20325
+ MD
+ O
+
+
+ benefit
+ benefit
+ 20326
+ 20333
+ VB
+ O
+
+
+ from
+ from
+ 20334
+ 20338
+ IN
+ O
+
+
+ cleaning
+ clean
+ 20339
+ 20347
+ VBG
+ O
+
+
+ up
+ up
+ 20348
+ 20350
+ RP
+ O
+
+
+ the
+ the
+ 20351
+ 20354
+ DT
+ O
+
+
+ environ
+ environ
+ 20355
+ 20362
+ NN
+ O
+
+
+ -
+ -
+ 20362
+ 20363
+ :
+ O
+
+
+ ment
+ ment
+ 20365
+ 20369
+ NN
+ O
+
+
+ .
+ .
+ 20369
+ 20370
+ .
+ O
+
+
+ (ROOT (S (NP (DT Both) (NNS wings)) (VP (MD will) (VP (VB benefit) (PP (IN from) (S (VP (VBG cleaning) (PRT (RP up)) (NP (DT the) (NN environ) (: -) (NN ment))))))) (. .)))
+
+
+ ROOT
+ benefit
+
+
+ wings
+ Both
+
+
+ benefit
+ wings
+
+
+ benefit
+ will
+
+
+ benefit
+ from
+
+
+ from
+ cleaning
+
+
+ cleaning
+ up
+
+
+ ment
+ the
+
+
+ ment
+ environ
+
+
+ cleaning
+ ment
+
+
+
+
+ ROOT
+ benefit
+
+
+ wings
+ Both
+
+
+ benefit
+ wings
+
+
+ benefit
+ will
+
+
+ benefit
+ cleaning
+
+
+ cleaning
+ up
+
+
+ ment
+ the
+
+
+ ment
+ environ
+
+
+ cleaning
+ ment
+
+
+
+
+ ROOT
+ benefit
+
+
+ wings
+ Both
+
+
+ benefit
+ wings
+
+
+ benefit
+ will
+
+
+ benefit
+ cleaning
+
+
+ cleaning
+ up
+
+
+ ment
+ the
+
+
+ ment
+ environ
+
+
+ cleaning
+ ment
+
+
+
+
+
+
+ However
+ however
+ 20371
+ 20378
+ RB
+ O
+
+
+ ,
+ ,
+ 20378
+ 20379
+ ,
+ O
+
+
+ it
+ it
+ 20380
+ 20382
+ PRP
+ O
+
+
+ follows
+ follow
+ 20383
+ 20390
+ VBZ
+ O
+
+
+ that
+ that
+ 20391
+ 20395
+ IN
+ O
+
+
+ a
+ a
+ 20396
+ 20397
+ DT
+ O
+
+
+ very
+ very
+ 20398
+ 20402
+ RB
+ O
+
+
+ large
+ large
+ 20403
+ 20408
+ JJ
+ O
+
+
+ part
+ part
+ 20410
+ 20414
+ NN
+ O
+
+
+ of
+ of
+ 20415
+ 20417
+ IN
+ O
+
+
+ the
+ the
+ 20418
+ 20421
+ DT
+ O
+
+
+ European
+ european
+ 20422
+ 20430
+ JJ
+ MISC
+
+
+ generated
+ generate
+ 20431
+ 20440
+ VBN
+ O
+
+
+ component
+ component
+ 20441
+ 20450
+ NN
+ O
+
+
+ of
+ of
+ 20452
+ 20454
+ IN
+ O
+
+
+ my
+ my
+ 20455
+ 20457
+ PRP$
+ O
+
+
+ proposed
+ propose
+ 20458
+ 20466
+ VBN
+ O
+
+
+ environmental
+ environmental
+ 20467
+ 20480
+ JJ
+ O
+
+
+ peace
+ peace
+ 20481
+ 20486
+ NN
+ O
+
+
+ divi
+ divi
+ 20487
+ 20491
+ SYM
+ O
+
+
+ -
+ -
+ 20491
+ 20492
+ :
+ O
+
+
+ dend
+ dend
+ 20494
+ 20498
+ NN
+ O
+
+
+ should
+ should
+ 20499
+ 20505
+ MD
+ O
+
+
+ be
+ be
+ 20506
+ 20508
+ VB
+ O
+
+
+ channeled
+ channel
+ 20509
+ 20518
+ VBN
+ O
+
+
+ to
+ to
+ 20519
+ 20521
+ TO
+ O
+
+
+ Eastern
+ Eastern
+ 20522
+ 20529
+ NNP
+ LOCATION
+
+
+ Europe
+ Europe
+ 20531
+ 20537
+ NNP
+ LOCATION
+
+
+ .
+ .
+ 20537
+ 20538
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB However)) (, ,) (NP (PRP it)) (VP (VBZ follows) (SBAR (IN that) (S (NP (NP (DT a) (ADJP (RB very) (JJ large)) (NN part)) (PP (IN of) (NP (DT the) (JJ European)))) (VP (VBN generated) (NP (NP (NN component)) (PP (IN of) (NP (NP (PRP$ my) (VBN proposed) (JJ environmental) (NN peace)) (SBAR (FRAG (X (SYM divi)) (: -) (NP (NP (NN dend)) (SBAR (S (VP (MD should) (VP (VB be) (VP (VBN channeled) (PP (TO to) (NP (NNP Eastern) (NNP Europe))))))))) (. .))))))))))))
+
+
+ ROOT
+ follows
+
+
+ follows
+ However
+
+
+ follows
+ it
+
+
+ generated
+ that
+
+
+ part
+ a
+
+
+ large
+ very
+
+
+ part
+ large
+
+
+ generated
+ part
+
+
+ part
+ of
+
+
+ European
+ the
+
+
+ of
+ European
+
+
+ follows
+ generated
+
+
+ generated
+ component
+
+
+ component
+ of
+
+
+ peace
+ my
+
+
+ peace
+ proposed
+
+
+ peace
+ environmental
+
+
+ of
+ peace
+
+
+ dend
+ divi
+
+
+ peace
+ dend
+
+
+ channeled
+ should
+
+
+ channeled
+ be
+
+
+ dend
+ channeled
+
+
+ channeled
+ to
+
+
+ Europe
+ Eastern
+
+
+ to
+ Europe
+
+
+
+
+ ROOT
+ follows
+
+
+ follows
+ However
+
+
+ follows
+ it
+
+
+ generated
+ that
+
+
+ part
+ a
+
+
+ large
+ very
+
+
+ part
+ large
+
+
+ generated
+ part
+
+
+ European
+ the
+
+
+ part
+ European
+
+
+ follows
+ generated
+
+
+ generated
+ component
+
+
+ peace
+ my
+
+
+ peace
+ proposed
+
+
+ peace
+ environmental
+
+
+ component
+ peace
+
+
+ dend
+ divi
+
+
+ peace
+ dend
+
+
+ channeled
+ should
+
+
+ channeled
+ be
+
+
+ dend
+ channeled
+
+
+ Europe
+ Eastern
+
+
+ channeled
+ Europe
+
+
+
+
+ ROOT
+ follows
+
+
+ follows
+ However
+
+
+ follows
+ it
+
+
+ generated
+ that
+
+
+ part
+ a
+
+
+ large
+ very
+
+
+ part
+ large
+
+
+ generated
+ part
+
+
+ European
+ the
+
+
+ part
+ European
+
+
+ follows
+ generated
+
+
+ generated
+ component
+
+
+ peace
+ my
+
+
+ peace
+ proposed
+
+
+ peace
+ environmental
+
+
+ component
+ peace
+
+
+ dend
+ divi
+
+
+ peace
+ dend
+
+
+ channeled
+ should
+
+
+ channeled
+ be
+
+
+ dend
+ channeled
+
+
+ Europe
+ Eastern
+
+
+ channeled
+ Europe
+
+
+
+
+
+
+ In
+ in
+ 20542
+ 20544
+ IN
+ O
+
+
+ the
+ the
+ 20545
+ 20548
+ DT
+ O
+
+
+ case
+ case
+ 20549
+ 20553
+ NN
+ O
+
+
+ of
+ of
+ 20554
+ 20556
+ IN
+ O
+
+
+ the
+ the
+ 20557
+ 20560
+ DT
+ O
+
+
+ United
+ United
+ 20561
+ 20567
+ NNP
+ LOCATION
+
+
+ States
+ States
+ 20568
+ 20574
+ NNPS
+ LOCATION
+
+
+ and
+ and
+ 20575
+ 20578
+ CC
+ O
+
+
+ Canada
+ Canada
+ 20580
+ 20586
+ NNP
+ LOCATION
+
+
+ ,
+ ,
+ 20586
+ 20587
+ ,
+ O
+
+
+ our
+ we
+ 20588
+ 20591
+ PRP$
+ O
+
+
+ people
+ people
+ 20592
+ 20598
+ NNS
+ O
+
+
+ will
+ will
+ 20599
+ 20603
+ MD
+ O
+
+
+ undoubtedly
+ undoubtedly
+ 20604
+ 20615
+ RB
+ O
+
+
+ expect
+ expect
+ 20616
+ 20622
+ VB
+ O
+
+
+ that
+ that
+ 20624
+ 20628
+ IN
+ O
+
+
+ the
+ the
+ 20629
+ 20632
+ DT
+ O
+
+
+ greater
+ greater
+ 20633
+ 20640
+ JJR
+ O
+
+
+ part
+ part
+ 20641
+ 20645
+ NN
+ O
+
+
+ of
+ of
+ 20646
+ 20648
+ IN
+ O
+
+
+ our
+ we
+ 20649
+ 20652
+ PRP$
+ O
+
+
+ peace
+ peace
+ 20653
+ 20658
+ NN
+ O
+
+
+ dividend
+ dividend
+ 20659
+ 20667
+ NN
+ O
+
+
+ be
+ be
+ 20669
+ 20671
+ VB
+ O
+
+
+ spent
+ spend
+ 20672
+ 20677
+ VBN
+ O
+
+
+ in
+ in
+ 20678
+ 20680
+ IN
+ O
+
+
+ a
+ a
+ 20681
+ 20682
+ DT
+ O
+
+
+ manner
+ manner
+ 20683
+ 20689
+ NN
+ O
+
+
+ that
+ that
+ 20690
+ 20694
+ IN
+ O
+
+
+ visibly
+ visibly
+ 20695
+ 20702
+ RB
+ O
+
+
+ benefits
+ benefit
+ 20703
+ 20711
+ VBZ
+ O
+
+
+ our
+ we
+ 20713
+ 20716
+ PRP$
+ O
+
+
+ own
+ own
+ 20717
+ 20720
+ JJ
+ O
+
+
+ people
+ people
+ 20721
+ 20727
+ NNS
+ O
+
+
+ .
+ .
+ 20727
+ 20728
+ .
+ O
+
+
+ (ROOT (S (PP (IN In) (NP (NP (DT the) (NN case)) (PP (IN of) (NP (DT the) (NNP United) (NNPS States) (CC and) (NNP Canada))))) (, ,) (NP (PRP$ our) (NNS people)) (VP (MD will) (ADVP (RB undoubtedly)) (VP (VB expect) (SBAR (IN that) (S (NP (NP (DT the) (JJR greater) (NN part)) (PP (IN of) (NP (PRP$ our) (NN peace) (NN dividend)))) (VP (VB be) (VP (VBN spent) (PP (IN in) (NP (NP (DT a) (NN manner)) (SBAR (WHNP (IN that)) (S (ADVP (RB visibly)) (VP (VBZ benefits) (NP (PRP$ our) (JJ own) (NNS people))))))))))))) (. .)))
+
+
+ ROOT
+ expect
+
+
+ expect
+ In
+
+
+ case
+ the
+
+
+ In
+ case
+
+
+ case
+ of
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ of
+ States
+
+
+ States
+ and
+
+
+ States
+ Canada
+
+
+ people
+ our
+
+
+ expect
+ people
+
+
+ expect
+ will
+
+
+ expect
+ undoubtedly
+
+
+ spent
+ that
+
+
+ part
+ the
+
+
+ part
+ greater
+
+
+ spent
+ part
+
+
+ part
+ of
+
+
+ dividend
+ our
+
+
+ dividend
+ peace
+
+
+ of
+ dividend
+
+
+ spent
+ be
+
+
+ expect
+ spent
+
+
+ spent
+ in
+
+
+ manner
+ a
+
+
+ in
+ manner
+
+
+ benefits
+ that
+
+
+ benefits
+ visibly
+
+
+ manner
+ benefits
+
+
+ people
+ our
+
+
+ people
+ own
+
+
+ benefits
+ people
+
+
+
+
+ ROOT
+ expect
+
+
+ case
+ the
+
+
+ expect
+ case
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ case
+ States
+
+
+ States
+ Canada
+
+
+ people
+ our
+
+
+ expect
+ people
+
+
+ expect
+ will
+
+
+ expect
+ undoubtedly
+
+
+ spent
+ that
+
+
+ part
+ the
+
+
+ part
+ greater
+
+
+ spent
+ part
+
+
+ dividend
+ our
+
+
+ dividend
+ peace
+
+
+ part
+ dividend
+
+
+ spent
+ be
+
+
+ expect
+ spent
+
+
+ manner
+ a
+
+
+ spent
+ manner
+
+
+ benefits
+ that
+
+
+ benefits
+ visibly
+
+
+ manner
+ benefits
+
+
+ people
+ our
+
+
+ people
+ own
+
+
+ benefits
+ people
+
+
+
+
+ ROOT
+ expect
+
+
+ case
+ the
+
+
+ expect
+ case
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ case
+ States
+
+
+ case
+ Canada
+
+
+ States
+ Canada
+
+
+ people
+ our
+
+
+ expect
+ people
+
+
+ expect
+ will
+
+
+ expect
+ undoubtedly
+
+
+ spent
+ that
+
+
+ part
+ the
+
+
+ part
+ greater
+
+
+ spent
+ part
+
+
+ dividend
+ our
+
+
+ dividend
+ peace
+
+
+ part
+ dividend
+
+
+ spent
+ be
+
+
+ expect
+ spent
+
+
+ manner
+ a
+
+
+ spent
+ manner
+
+
+ benefits
+ that
+
+
+ benefits
+ visibly
+
+
+ manner
+ benefits
+
+
+ people
+ our
+
+
+ people
+ own
+
+
+ benefits
+ people
+
+
+
+
+
+
+ Thus
+ thus
+ 20729
+ 20733
+ RB
+ O
+
+
+ ,
+ ,
+ 20733
+ 20734
+ ,
+ O
+
+
+ most
+ most
+ 20735
+ 20739
+ JJS
+ O
+
+
+ of
+ of
+ 20740
+ 20742
+ IN
+ O
+
+
+ our
+ we
+ 20743
+ 20746
+ PRP$
+ O
+
+
+ two
+ two
+ 20747
+ 20750
+ CD
+ NUMBER
+ 2.0
+
+
+ coun
+ coun
+ 20751
+ 20755
+ NN
+ O
+
+
+ -
+ -
+ 20755
+ 20756
+ :
+ O
+
+
+ tries
+ try
+ 20758
+ 20763
+ VBZ
+ O
+
+
+ '
+ '
+ 20763
+ 20764
+ ''
+ O
+
+
+ new
+ new
+ 20765
+ 20768
+ JJ
+ O
+
+
+ environmental
+ environmental
+ 20772
+ 20785
+ JJ
+ O
+
+
+ expenditure
+ expenditure
+ 20788
+ 20799
+ NN
+ O
+
+
+ should
+ should
+ 20801
+ 20807
+ MD
+ O
+
+
+ occur
+ occur
+ 20808
+ 20813
+ VB
+ O
+
+
+ on
+ on
+ 20814
+ 20816
+ IN
+ O
+
+
+ our
+ we
+ 20817
+ 20820
+ PRP$
+ O
+
+
+ North
+ north
+ 20821
+ 20826
+ JJ
+ LOCATION
+
+
+ American
+ american
+ 20827
+ 20835
+ JJ
+ LOCATION
+
+
+ conti
+ contus
+ 20836
+ 20841
+ NN
+ O
+
+
+ -
+ -
+ 20841
+ 20842
+ :
+ O
+
+
+ nent
+ nent
+ 20844
+ 20848
+ NN
+ O
+
+
+ .
+ .
+ 20848
+ 20849
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB Thus)) (, ,) (NP (NP (JJS most)) (PP (IN of) (NP (NP (PRP$ our) (CD two) (NN coun)) (: -) (S (VP (VBZ tries) (VP ('' ') (NP-TMP (JJ new) (JJ environmental) (NN expenditure)))))))) (VP (MD should) (VP (VB occur) (PP (IN on) (NP (PRP$ our) (JJ North) (JJ American) (NN conti) (: -) (NN nent))))) (. .)))
+
+
+ ROOT
+ occur
+
+
+ occur
+ Thus
+
+
+ occur
+ most
+
+
+ most
+ of
+
+
+ coun
+ our
+
+
+ coun
+ two
+
+
+ of
+ coun
+
+
+ coun
+ tries
+
+
+ expenditure
+ new
+
+
+ expenditure
+ environmental
+
+
+ tries
+ expenditure
+
+
+ occur
+ should
+
+
+ occur
+ on
+
+
+ nent
+ our
+
+
+ nent
+ North
+
+
+ nent
+ American
+
+
+ nent
+ conti
+
+
+ on
+ nent
+
+
+
+
+ ROOT
+ occur
+
+
+ occur
+ Thus
+
+
+ occur
+ most
+
+
+ coun
+ our
+
+
+ coun
+ two
+
+
+ most
+ coun
+
+
+ coun
+ tries
+
+
+ expenditure
+ new
+
+
+ expenditure
+ environmental
+
+
+ tries
+ expenditure
+
+
+ occur
+ should
+
+
+ nent
+ our
+
+
+ nent
+ North
+
+
+ nent
+ American
+
+
+ nent
+ conti
+
+
+ occur
+ nent
+
+
+
+
+ ROOT
+ occur
+
+
+ occur
+ Thus
+
+
+ occur
+ most
+
+
+ coun
+ our
+
+
+ coun
+ two
+
+
+ most
+ coun
+
+
+ coun
+ tries
+
+
+ expenditure
+ new
+
+
+ expenditure
+ environmental
+
+
+ tries
+ expenditure
+
+
+ occur
+ should
+
+
+ nent
+ our
+
+
+ nent
+ North
+
+
+ nent
+ American
+
+
+ nent
+ conti
+
+
+ occur
+ nent
+
+
+
+
+
+
+ This
+ this
+ 20850
+ 20854
+ DT
+ O
+
+
+ expenditure
+ expenditure
+ 20855
+ 20866
+ NN
+ O
+
+
+ should
+ should
+ 20867
+ 20873
+ MD
+ O
+
+
+ nonetheless
+ nonetheless
+ 20874
+ 20885
+ RB
+ O
+
+
+ be
+ be
+ 20887
+ 20889
+ VB
+ O
+
+
+ made
+ make
+ 20890
+ 20894
+ VBN
+ O
+
+
+ in
+ in
+ 20895
+ 20897
+ IN
+ O
+
+
+ a
+ a
+ 20898
+ 20899
+ DT
+ O
+
+
+ way
+ way
+ 20900
+ 20903
+ NN
+ O
+
+
+ that
+ that
+ 20904
+ 20908
+ IN
+ O
+
+
+ benefits
+ benefit
+ 20909
+ 20917
+ NNS
+ O
+
+
+ the
+ the
+ 20918
+ 20921
+ DT
+ O
+
+
+ global
+ global
+ 20922
+ 20928
+ JJ
+ O
+
+
+ environment
+ environment
+ 20930
+ 20941
+ NN
+ O
+
+
+ .
+ .
+ 20941
+ 20942
+ .
+ O
+
+
+ (ROOT (S (NP (DT This) (NN expenditure)) (VP (MD should) (ADVP (RB nonetheless)) (VP (VB be) (VP (VBN made) (PP (IN in) (NP (NP (DT a) (NN way)) (SBAR (IN that) (FRAG (NP-TMP (NP (NNS benefits)) (NP (DT the) (JJ global) (NN environment)))))))))) (. .)))
+
+
+ ROOT
+ made
+
+
+ expenditure
+ This
+
+
+ made
+ expenditure
+
+
+ made
+ should
+
+
+ made
+ nonetheless
+
+
+ made
+ be
+
+
+ made
+ in
+
+
+ way
+ a
+
+
+ in
+ way
+
+
+ benefits
+ that
+
+
+ way
+ benefits
+
+
+ environment
+ the
+
+
+ environment
+ global
+
+
+ benefits
+ environment
+
+
+
+
+ ROOT
+ made
+
+
+ expenditure
+ This
+
+
+ made
+ expenditure
+
+
+ made
+ should
+
+
+ made
+ nonetheless
+
+
+ made
+ be
+
+
+ way
+ a
+
+
+ made
+ way
+
+
+ benefits
+ that
+
+
+ way
+ benefits
+
+
+ environment
+ the
+
+
+ environment
+ global
+
+
+ benefits
+ environment
+
+
+
+
+ ROOT
+ made
+
+
+ expenditure
+ This
+
+
+ made
+ expenditure
+
+
+ made
+ should
+
+
+ made
+ nonetheless
+
+
+ made
+ be
+
+
+ way
+ a
+
+
+ made
+ way
+
+
+ benefits
+ that
+
+
+ way
+ benefits
+
+
+ environment
+ the
+
+
+ environment
+ global
+
+
+ benefits
+ environment
+
+
+
+
+
+
+ North
+ North
+ 20943
+ 20948
+ NNP
+ MISC
+
+
+ Americans
+ Americans
+ 20949
+ 20958
+ NNPS
+ MISC
+
+
+ are
+ be
+ 20959
+ 20962
+ VBP
+ O
+
+
+ both
+ both
+ 20963
+ 20967
+ DT
+ O
+
+
+ in
+ in
+ 20968
+ 20970
+ IN
+ O
+
+
+ the
+ the
+ 20972
+ 20975
+ DT
+ O
+
+
+ aggregate
+ aggregate
+ 20976
+ 20985
+ NN
+ O
+
+
+ and
+ and
+ 20986
+ 20989
+ CC
+ O
+
+
+ on
+ on
+ 20990
+ 20992
+ IN
+ O
+
+
+ a
+ a
+ 20993
+ 20994
+ DT
+ O
+
+
+ per
+ per
+ 20995
+ 20998
+ FW
+ O
+
+
+ capita
+ capita
+ 20999
+ 21005
+ NN
+ O
+
+
+ basis
+ basis
+ 21006
+ 21011
+ NN
+ O
+
+
+ the
+ the
+ 21012
+ 21015
+ DT
+ O
+
+
+ biggest
+ biggest
+ 21017
+ 21024
+ JJS
+ O
+
+
+ producers
+ producer
+ 21025
+ 21034
+ NNS
+ O
+
+
+ of
+ of
+ 21035
+ 21037
+ IN
+ O
+
+
+ the
+ the
+ 21038
+ 21041
+ DT
+ O
+
+
+ greenhouse
+ greenhouse
+ 21042
+ 21052
+ NN
+ O
+
+
+ gases
+ gas
+ 21053
+ 21058
+ NNS
+ O
+
+
+ ,
+ ,
+ 21058
+ 21059
+ ,
+ O
+
+
+ and
+ and
+ 21061
+ 21064
+ CC
+ O
+
+
+ In
+ in
+ 21065
+ 21067
+ IN
+ O
+
+
+ particular
+ particular
+ 21068
+ 21078
+ JJ
+ O
+
+
+ of
+ of
+ 21079
+ 21081
+ IN
+ O
+
+
+ carbon
+ carbon
+ 21082
+ 21088
+ NN
+ O
+
+
+ dioxide
+ dioxide
+ 21089
+ 21096
+ NN
+ O
+
+
+ .
+ .
+ 21096
+ 21097
+ .
+ O
+
+
+ (ROOT (S (NP (NNP North) (NNPS Americans)) (VP (VBP are) (PP (DT both) (PP (IN in) (NP (DT the) (NN aggregate))) (CC and) (PP (IN on) (NP (NP (DT a) (FW per) (NN capita) (NN basis)) (NP (NP (NP (DT the) (JJS biggest) (NNS producers)) (PP (IN of) (NP (DT the) (NN greenhouse) (NNS gases)))) (, ,) (CC and) (PP (IN In) (NP (NP (JJ particular)) (PP (IN of) (NP (NN carbon) (NN dioxide)))))))))) (. .)))
+
+
+ ROOT
+ are
+
+
+ Americans
+ North
+
+
+ are
+ Americans
+
+
+ in
+ both
+
+
+ are
+ in
+
+
+ aggregate
+ the
+
+
+ in
+ aggregate
+
+
+ in
+ and
+
+
+ in
+ on
+
+
+ basis
+ a
+
+
+ basis
+ per
+
+
+ basis
+ capita
+
+
+ on
+ basis
+
+
+ producers
+ the
+
+
+ producers
+ biggest
+
+
+ basis
+ producers
+
+
+ producers
+ of
+
+
+ gases
+ the
+
+
+ gases
+ greenhouse
+
+
+ of
+ gases
+
+
+ producers
+ and
+
+
+ producers
+ In
+
+
+ In
+ particular
+
+
+ particular
+ of
+
+
+ dioxide
+ carbon
+
+
+ of
+ dioxide
+
+
+
+
+ ROOT
+ are
+
+
+ Americans
+ North
+
+
+ are
+ Americans
+
+
+ are
+ are
+
+
+ are
+ both
+
+
+ aggregate
+ the
+
+
+ are
+ aggregate
+
+
+ basis
+ a
+
+
+ basis
+ per
+
+
+ basis
+ capita
+
+
+ are
+ basis
+
+
+ producers
+ the
+
+
+ producers
+ biggest
+
+
+ basis
+ producers
+
+
+ gases
+ the
+
+
+ gases
+ greenhouse
+
+
+ producers
+ gases
+
+
+ producers
+ In
+
+
+ In
+ particular
+
+
+ dioxide
+ carbon
+
+
+ particular
+ dioxide
+
+
+
+
+ ROOT
+ are
+
+
+ Americans
+ North
+
+
+ are
+ Americans
+
+
+ are
+ Americans
+
+
+ are
+ are
+
+
+ are
+ both
+
+
+ aggregate
+ the
+
+
+ are
+ aggregate
+
+
+ basis
+ a
+
+
+ basis
+ per
+
+
+ basis
+ capita
+
+
+ are
+ basis
+
+
+ producers
+ the
+
+
+ producers
+ biggest
+
+
+ basis
+ producers
+
+
+ gases
+ the
+
+
+ gases
+ greenhouse
+
+
+ producers
+ gases
+
+
+ basis
+ In
+
+
+ producers
+ In
+
+
+ In
+ particular
+
+
+ dioxide
+ carbon
+
+
+ particular
+ dioxide
+
+
+
+
+
+
+ Logical
+ logical
+ 21098
+ 21105
+ JJ
+ O
+
+
+ -
+ -
+ 21105
+ 21106
+ :
+ O
+
+
+ ly
+ ly
+ 21108
+ 21110
+ RB
+ O
+
+
+ ,
+ ,
+ 21110
+ 21111
+ ,
+ O
+
+
+ the
+ the
+ 21112
+ 21115
+ DT
+ O
+
+
+ effort
+ effort
+ 21116
+ 21122
+ NN
+ O
+
+
+ to
+ to
+ 21123
+ 21125
+ TO
+ O
+
+
+ begin
+ begin
+ 21126
+ 21131
+ VB
+ O
+
+
+ to
+ to
+ 21132
+ 21134
+ TO
+ O
+
+
+ control
+ control
+ 21135
+ 21142
+ VB
+ O
+
+
+ global
+ global
+ 21143
+ 21149
+ JJ
+ O
+
+
+ warming
+ warming
+ 21151
+ 21158
+ NN
+ O
+
+
+ must
+ must
+ 21159
+ 21163
+ MD
+ O
+
+
+ start
+ start
+ 21164
+ 21169
+ VB
+ O
+
+
+ In
+ in
+ 21170
+ 21172
+ IN
+ O
+
+
+ North
+ North
+ 21173
+ 21178
+ NNP
+ LOCATION
+
+
+ America
+ America
+ 21179
+ 21186
+ NNP
+ LOCATION
+
+
+ .
+ .
+ 21186
+ 21187
+ .
+ O
+
+
+ (ROOT (NP (NP (JJ Logical)) (: -) (ADVP (RB ly)) (, ,) (S (NP (DT the) (NN effort) (S (VP (TO to) (VP (VB begin) (S (VP (TO to) (VP (VB control) (NP (JJ global) (NN warming))))))))) (VP (MD must) (VP (VB start) (PP (IN In) (NP (NNP North) (NNP America)))))) (. .)))
+
+
+ ROOT
+ Logical
+
+
+ Logical
+ ly
+
+
+ effort
+ the
+
+
+ start
+ effort
+
+
+ begin
+ to
+
+
+ effort
+ begin
+
+
+ control
+ to
+
+
+ begin
+ control
+
+
+ warming
+ global
+
+
+ control
+ warming
+
+
+ start
+ must
+
+
+ Logical
+ start
+
+
+ start
+ In
+
+
+ America
+ North
+
+
+ In
+ America
+
+
+
+
+ ROOT
+ Logical
+
+
+ Logical
+ ly
+
+
+ effort
+ the
+
+
+ start
+ effort
+
+
+ begin
+ to
+
+
+ effort
+ begin
+
+
+ control
+ to
+
+
+ begin
+ control
+
+
+ warming
+ global
+
+
+ control
+ warming
+
+
+ start
+ must
+
+
+ Logical
+ start
+
+
+ America
+ North
+
+
+ start
+ America
+
+
+
+
+ ROOT
+ Logical
+
+
+ Logical
+ ly
+
+
+ effort
+ the
+
+
+ start
+ effort
+
+
+ begin
+ to
+
+
+ effort
+ begin
+
+
+ control
+ to
+
+
+ begin
+ control
+
+
+ warming
+ global
+
+
+ control
+ warming
+
+
+ start
+ must
+
+
+ Logical
+ start
+
+
+ America
+ North
+
+
+ start
+ America
+
+
+
+
+
+
+ Under
+ under
+ 21189
+ 21194
+ IN
+ O
+
+
+ my
+ my
+ 21195
+ 21197
+ PRP$
+ O
+
+
+ proposed
+ propose
+ 21198
+ 21206
+ VBN
+ O
+
+
+ scheme
+ scheme
+ 21207
+ 21213
+ NN
+ O
+
+
+ I
+ I
+ 21214
+ 21215
+ PRP
+ O
+
+
+ would
+ would
+ 21216
+ 21221
+ MD
+ O
+
+
+ recom
+ recom
+ 21222
+ 21227
+ VB
+ O
+
+
+ -
+ -
+ 21227
+ 21228
+ :
+ O
+
+
+ mend
+ mend
+ 21230
+ 21234
+ VB
+ O
+
+
+ that
+ that
+ 21235
+ 21239
+ IN
+ O
+
+
+ a
+ a
+ 21240
+ 21241
+ DT
+ O
+
+
+ great
+ great
+ 21242
+ 21247
+ JJ
+ O
+
+
+ part
+ part
+ 21248
+ 21252
+ NN
+ O
+
+
+ of
+ of
+ 21253
+ 21255
+ IN
+ O
+
+
+ our
+ we
+ 21256
+ 21259
+ PRP$
+ O
+
+
+ environmen
+ environman
+ 21260
+ 21270
+ NN
+ O
+
+
+ -
+ -
+ 21270
+ 21271
+ :
+ O
+
+
+ tal
+ tal
+ 21273
+ 21276
+ JJ
+ O
+
+
+ dividend
+ dividend
+ 21277
+ 21285
+ NN
+ O
+
+
+ be
+ be
+ 21286
+ 21288
+ VB
+ O
+
+
+ used
+ use
+ 21289
+ 21293
+ VBN
+ O
+
+
+ to
+ to
+ 21294
+ 21296
+ TO
+ O
+
+
+ develop
+ develop
+ 21297
+ 21304
+ VB
+ O
+
+
+ energy
+ energy
+ 21305
+ 21311
+ NN
+ O
+
+
+ con
+ con
+ 21312
+ 21315
+ NN
+ O
+
+
+ -
+ -
+ 21315
+ 21316
+ :
+ O
+
+
+ servation
+ servation
+ 21318
+ 21327
+ NN
+ O
+
+
+ technologies
+ technology
+ 21328
+ 21340
+ NNS
+ O
+
+
+ as
+ as
+ 21341
+ 21343
+ RB
+ O
+
+
+ well
+ well
+ 21344
+ 21348
+ RB
+ O
+
+
+ as
+ as
+ 21349
+ 21351
+ IN
+ O
+
+
+ alterna
+ alterna
+ 21352
+ 21359
+ NN
+ O
+
+
+ -
+ -
+ 21359
+ 21360
+ :
+ O
+
+
+ tives
+ tive
+ 21362
+ 21367
+ NNS
+ O
+
+
+ to
+ to
+ 21368
+ 21370
+ TO
+ O
+
+
+ fossil
+ fossil
+ 21371
+ 21377
+ JJ
+ O
+
+
+ fuels
+ fuel
+ 21378
+ 21383
+ NNS
+ O
+
+
+ .
+ .
+ 21383
+ 21384
+ .
+ O
+
+
+ (ROOT (S (PP (IN Under) (NP (PRP$ my) (VBN proposed) (NN scheme))) (NP (PRP I)) (VP (MD would) (VP (VB recom) (PRN (: -) (S (VP (VB mend) (SBAR (IN that) (S (NP (NP (DT a) (JJ great) (NN part)) (PP (IN of) (NP (NP (PRP$ our) (NN environmen)) (: -) (NP (JJ tal) (NN dividend))))) (VP (VB be) (VP (VBN used) (S (VP (TO to) (VP (VB develop) (NP (NP (NP (NN energy) (NN con)) (: -) (NP (NN servation) (NNS technologies))) (CONJP (RB as) (RB well) (IN as)) (NP (NN alterna)))))))))))) (: -)) (NP (NNS tives)) (PP (TO to) (NP (JJ fossil) (NNS fuels))))) (. .)))
+
+
+ ROOT
+ recom
+
+
+ recom
+ Under
+
+
+ scheme
+ my
+
+
+ scheme
+ proposed
+
+
+ Under
+ scheme
+
+
+ recom
+ I
+
+
+ recom
+ would
+
+
+ recom
+ mend
+
+
+ used
+ that
+
+
+ part
+ a
+
+
+ part
+ great
+
+
+ used
+ part
+
+
+ part
+ of
+
+
+ environmen
+ our
+
+
+ of
+ environmen
+
+
+ dividend
+ tal
+
+
+ environmen
+ dividend
+
+
+ used
+ be
+
+
+ mend
+ used
+
+
+ develop
+ to
+
+
+ used
+ develop
+
+
+ con
+ energy
+
+
+ develop
+ con
+
+
+ technologies
+ servation
+
+
+ con
+ technologies
+
+
+ well
+ as
+
+
+ con
+ well
+
+
+ well
+ as
+
+
+ con
+ alterna
+
+
+ recom
+ tives
+
+
+ recom
+ to
+
+
+ fuels
+ fossil
+
+
+ to
+ fuels
+
+
+
+
+ ROOT
+ recom
+
+
+ scheme
+ my
+
+
+ scheme
+ proposed
+
+
+ recom
+ scheme
+
+
+ recom
+ I
+
+
+ recom
+ would
+
+
+ recom
+ mend
+
+
+ used
+ that
+
+
+ part
+ a
+
+
+ part
+ great
+
+
+ used
+ part
+
+
+ environmen
+ our
+
+
+ part
+ environmen
+
+
+ dividend
+ tal
+
+
+ environmen
+ dividend
+
+
+ used
+ be
+
+
+ mend
+ used
+
+
+ develop
+ to
+
+
+ used
+ develop
+
+
+ con
+ energy
+
+
+ develop
+ con
+
+
+ technologies
+ servation
+
+
+ con
+ technologies
+
+
+ con
+ alterna
+
+
+ recom
+ tives
+
+
+ fuels
+ fossil
+
+
+ recom
+ fuels
+
+
+
+
+ ROOT
+ recom
+
+
+ scheme
+ my
+
+
+ scheme
+ proposed
+
+
+ recom
+ scheme
+
+
+ recom
+ I
+
+
+ recom
+ would
+
+
+ recom
+ mend
+
+
+ used
+ that
+
+
+ part
+ a
+
+
+ part
+ great
+
+
+ used
+ part
+
+
+ environmen
+ our
+
+
+ part
+ environmen
+
+
+ dividend
+ tal
+
+
+ environmen
+ dividend
+
+
+ used
+ be
+
+
+ mend
+ used
+
+
+ develop
+ to
+
+
+ used
+ develop
+
+
+ con
+ energy
+
+
+ develop
+ con
+
+
+ technologies
+ servation
+
+
+ con
+ technologies
+
+
+ develop
+ alterna
+
+
+ con
+ alterna
+
+
+ recom
+ tives
+
+
+ fuels
+ fossil
+
+
+ recom
+ fuels
+
+
+
+
+
+
+ As
+ as
+ 21385
+ 21387
+ IN
+ O
+
+
+ a
+ a
+ 21388
+ 21389
+ DT
+ O
+
+
+ bonus
+ bonus
+ 21390
+ 21395
+ NN
+ O
+
+
+ ,
+ ,
+ 21395
+ 21396
+ ,
+ O
+
+
+ this
+ this
+ 21397
+ 21401
+ DT
+ O
+
+
+ effort
+ effort
+ 21402
+ 21408
+ NN
+ O
+
+
+ will
+ will
+ 21410
+ 21414
+ MD
+ O
+
+
+ help
+ help
+ 21415
+ 21419
+ VB
+ O
+
+
+ ameliorate
+ ameliorate
+ 21420
+ 21430
+ VB
+ O
+
+
+ the
+ the
+ 21431
+ 21434
+ DT
+ O
+
+
+ problem
+ problem
+ 21435
+ 21442
+ NN
+ O
+
+
+ of
+ of
+ 21443
+ 21445
+ IN
+ O
+
+
+ acid
+ acid
+ 21446
+ 21450
+ JJ
+ O
+
+
+ rain
+ rain
+ 21452
+ 21456
+ NN
+ O
+
+
+ ,
+ ,
+ 21456
+ 21457
+ ,
+ O
+
+
+ which
+ which
+ 21458
+ 21463
+ WDT
+ O
+
+
+ has
+ have
+ 21464
+ 21467
+ VBZ
+ O
+
+
+ become
+ become
+ 21468
+ 21474
+ VBN
+ O
+
+
+ a
+ a
+ 21475
+ 21476
+ DT
+ O
+
+
+ major
+ major
+ 21477
+ 21482
+ JJ
+ O
+
+
+ bilateral
+ bilateral
+ 21483
+ 21492
+ JJ
+ O
+
+
+ issue
+ issue
+ 21494
+ 21499
+ NN
+ O
+
+
+ in
+ in
+ 21500
+ 21502
+ IN
+ O
+
+
+ U.S.-Canada
+ u.s.-canada
+ 21503
+ 21514
+ JJ
+ MISC
+
+
+ relations
+ relation
+ 21515
+ 21524
+ NNS
+ O
+
+
+ and
+ and
+ 21525
+ 21528
+ CC
+ O
+
+
+ has
+ have
+ 21529
+ 21532
+ VBZ
+ O
+
+
+ in
+ in
+ 21533
+ 21535
+ IN
+ O
+
+
+ -
+ -
+ 21535
+ 21536
+ :
+ O
+
+
+ flicted
+ flicted
+ 21538
+ 21545
+ JJ
+ O
+
+
+ damage
+ damage
+ 21546
+ 21552
+ NN
+ O
+
+
+ on
+ on
+ 21553
+ 21555
+ IN
+ O
+
+
+ my
+ my
+ 21556
+ 21558
+ PRP$
+ O
+
+
+ home
+ home
+ 21559
+ 21563
+ NN
+ O
+
+
+ region
+ region
+ 21564
+ 21570
+ NN
+ O
+
+
+ of
+ of
+ 21571
+ 21573
+ IN
+ O
+
+
+ New
+ New
+ 21574
+ 21577
+ NNP
+ LOCATION
+
+
+ England
+ England
+ 21579
+ 21586
+ NNP
+ LOCATION
+
+
+ .
+ .
+ 21586
+ 21587
+ .
+ O
+
+
+ (ROOT (S (PP (IN As) (NP (DT a) (NN bonus))) (, ,) (NP (DT this) (NN effort)) (VP (MD will) (VP (VB help) (VP (VB ameliorate) (NP (NP (DT the) (NN problem)) (PP (IN of) (NP (NP (JJ acid) (NN rain)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VP (VBZ has) (VP (VBN become) (NP (NP (DT a) (JJ major) (JJ bilateral) (NN issue)) (PP (IN in) (NP (JJ U.S.-Canada) (NNS relations)))))) (CC and) (VP (VBZ has))))))) (PP (IN in) (: -) (NP (NP (JJ flicted) (NN damage)) (PP (IN on) (NP (NP (PRP$ my) (NN home) (NN region)) (PP (IN of) (NP (NNP New) (NNP England))))))))))) (. .)))
+
+
+ ROOT
+ help
+
+
+ help
+ As
+
+
+ bonus
+ a
+
+
+ As
+ bonus
+
+
+ effort
+ this
+
+
+ help
+ effort
+
+
+ help
+ will
+
+
+ help
+ ameliorate
+
+
+ problem
+ the
+
+
+ ameliorate
+ problem
+
+
+ problem
+ of
+
+
+ rain
+ acid
+
+
+ of
+ rain
+
+
+ issue
+ which
+
+
+ issue
+ has
+
+
+ issue
+ become
+
+
+ issue
+ a
+
+
+ issue
+ major
+
+
+ issue
+ bilateral
+
+
+ rain
+ issue
+
+
+ issue
+ in
+
+
+ relations
+ U.S.-Canada
+
+
+ in
+ relations
+
+
+ issue
+ and
+
+
+ issue
+ has
+
+
+ problem
+ in
+
+
+ damage
+ flicted
+
+
+ in
+ damage
+
+
+ damage
+ on
+
+
+ region
+ my
+
+
+ region
+ home
+
+
+ on
+ region
+
+
+ region
+ of
+
+
+ England
+ New
+
+
+ of
+ England
+
+
+
+
+ ROOT
+ help
+
+
+ bonus
+ a
+
+
+ help
+ bonus
+
+
+ effort
+ this
+
+
+ help
+ effort
+
+
+ help
+ will
+
+
+ help
+ ameliorate
+
+
+ problem
+ the
+
+
+ ameliorate
+ problem
+
+
+ rain
+ acid
+
+
+ problem
+ rain
+
+
+ issue
+ which
+
+
+ issue
+ has
+
+
+ issue
+ become
+
+
+ issue
+ a
+
+
+ issue
+ major
+
+
+ issue
+ bilateral
+
+
+ rain
+ issue
+
+
+ relations
+ U.S.-Canada
+
+
+ issue
+ relations
+
+
+ issue
+ has
+
+
+ damage
+ flicted
+
+
+ problem
+ damage
+
+
+ region
+ my
+
+
+ region
+ home
+
+
+ damage
+ region
+
+
+ England
+ New
+
+
+ region
+ England
+
+
+
+
+ ROOT
+ help
+
+
+ bonus
+ a
+
+
+ help
+ bonus
+
+
+ effort
+ this
+
+
+ help
+ effort
+
+
+ help
+ will
+
+
+ help
+ ameliorate
+
+
+ problem
+ the
+
+
+ ameliorate
+ problem
+
+
+ rain
+ acid
+
+
+ problem
+ rain
+
+
+ issue
+ which
+
+
+ has
+ which
+
+
+ issue
+ has
+
+
+ issue
+ become
+
+
+ issue
+ a
+
+
+ issue
+ major
+
+
+ issue
+ bilateral
+
+
+ rain
+ issue
+
+
+ relations
+ U.S.-Canada
+
+
+ issue
+ relations
+
+
+ rain
+ has
+
+
+ issue
+ has
+
+
+ damage
+ flicted
+
+
+ problem
+ damage
+
+
+ region
+ my
+
+
+ region
+ home
+
+
+ damage
+ region
+
+
+ England
+ New
+
+
+ region
+ England
+
+
+
+
+
+
+ At
+ at
+ 21591
+ 21593
+ IN
+ O
+
+
+ this
+ this
+ 21594
+ 21598
+ DT
+ O
+
+
+ time
+ time
+ 21599
+ 21603
+ NN
+ O
+
+
+ I
+ I
+ 21604
+ 21605
+ PRP
+ O
+
+
+ can
+ can
+ 21606
+ 21609
+ MD
+ O
+
+
+ not
+ not
+ 21609
+ 21612
+ RB
+ O
+
+
+ state
+ state
+ 21613
+ 21618
+ VB
+ O
+
+
+ the
+ the
+ 21619
+ 21622
+ DT
+ O
+
+
+ amount
+ amount
+ 21623
+ 21629
+ NN
+ O
+
+
+ of
+ of
+ 21630
+ 21632
+ IN
+ O
+
+
+ new
+ new
+ 21634
+ 21637
+ JJ
+ O
+
+
+ environmental
+ environmental
+ 21638
+ 21651
+ JJ
+ O
+
+
+ expenditure
+ expenditure
+ 21652
+ 21663
+ NN
+ O
+
+
+ to
+ to
+ 21664
+ 21666
+ TO
+ O
+
+
+ be
+ be
+ 21667
+ 21669
+ VB
+ O
+
+
+ gener
+ gener
+ 21670
+ 21675
+ SYM
+ O
+
+
+ -
+ -
+ 21675
+ 21676
+ :
+ O
+
+
+ ated
+ ate
+ 21678
+ 21682
+ VBN
+ O
+
+
+ by
+ by
+ 21683
+ 21685
+ IN
+ O
+
+
+ my
+ my
+ 21686
+ 21688
+ PRP$
+ O
+
+
+ proposal
+ proposal
+ 21689
+ 21697
+ NN
+ O
+
+
+ .
+ .
+ 21697
+ 21698
+ .
+ O
+
+
+ (ROOT (S (PP (IN At) (NP (DT this) (NN time))) (NP (PRP I)) (VP (MD can) (RB not) (VP (VB state) (NP (NP (DT the) (NN amount)) (PP (IN of) (NP (JJ new) (JJ environmental) (NN expenditure)))) (S (VP (TO to) (VP (VB be) (S (VP (X (SYM gener)) (: -) (VP (VBN ated) (PP (IN by) (NP (PRP$ my) (NN proposal))))))))))) (. .)))
+
+
+ ROOT
+ state
+
+
+ state
+ At
+
+
+ time
+ this
+
+
+ At
+ time
+
+
+ state
+ I
+
+
+ state
+ can
+
+
+ state
+ not
+
+
+ amount
+ the
+
+
+ state
+ amount
+
+
+ amount
+ of
+
+
+ expenditure
+ new
+
+
+ expenditure
+ environmental
+
+
+ of
+ expenditure
+
+
+ be
+ to
+
+
+ state
+ be
+
+
+ ated
+ gener
+
+
+ be
+ ated
+
+
+ ated
+ by
+
+
+ proposal
+ my
+
+
+ by
+ proposal
+
+
+
+
+ ROOT
+ state
+
+
+ time
+ this
+
+
+ state
+ time
+
+
+ state
+ I
+
+
+ state
+ can
+
+
+ state
+ not
+
+
+ amount
+ the
+
+
+ state
+ amount
+
+
+ expenditure
+ new
+
+
+ expenditure
+ environmental
+
+
+ amount
+ expenditure
+
+
+ be
+ to
+
+
+ state
+ be
+
+
+ ated
+ gener
+
+
+ be
+ ated
+
+
+ proposal
+ my
+
+
+ ated
+ proposal
+
+
+
+
+ ROOT
+ state
+
+
+ time
+ this
+
+
+ state
+ time
+
+
+ state
+ I
+
+
+ state
+ can
+
+
+ state
+ not
+
+
+ amount
+ the
+
+
+ state
+ amount
+
+
+ expenditure
+ new
+
+
+ expenditure
+ environmental
+
+
+ amount
+ expenditure
+
+
+ be
+ to
+
+
+ state
+ be
+
+
+ ated
+ gener
+
+
+ be
+ ated
+
+
+ proposal
+ my
+
+
+ ated
+ proposal
+
+
+
+
+
+
+ However
+ however
+ 21699
+ 21706
+ RB
+ O
+
+
+ ,
+ ,
+ 21706
+ 21707
+ ,
+ O
+
+
+ some
+ some
+ 21708
+ 21712
+ DT
+ O
+
+
+ project
+ project
+ 21713
+ 21720
+ NN
+ O
+
+
+ that
+ that
+ 21722
+ 21726
+ IN
+ O
+
+
+ the
+ the
+ 21727
+ 21730
+ DT
+ O
+
+
+ end
+ end
+ 21731
+ 21734
+ NN
+ O
+
+
+ of
+ of
+ 21735
+ 21737
+ IN
+ O
+
+
+ the
+ the
+ 21738
+ 21741
+ DT
+ O
+
+
+ Cold
+ Cold
+ 21742
+ 21746
+ NNP
+ MISC
+
+
+ War
+ War
+ 21747
+ 21750
+ NNP
+ MISC
+
+
+ might
+ might
+ 21751
+ 21756
+ MD
+ O
+
+
+ lead
+ lead
+ 21757
+ 21761
+ VB
+ O
+
+
+ to
+ to
+ 21762
+ 21764
+ TO
+ O
+
+
+ a
+ a
+ 21766
+ 21767
+ DT
+ O
+
+
+ 50
+ 50
+ 21768
+ 21770
+ CD
+ PERCENT
+ %50.0
+
+
+ percent
+ percent
+ 21771
+ 21778
+ NN
+ PERCENT
+ %50.0
+
+
+ reduction
+ reduction
+ 21779
+ 21788
+ NN
+ O
+
+
+ in
+ in
+ 21789
+ 21791
+ IN
+ O
+
+
+ U.S.
+ U.S.
+ 21792
+ 21796
+ NNP
+ LOCATION
+
+
+ defense
+ defense
+ 21797
+ 21804
+ NN
+ O
+
+
+ spending
+ spending
+ 21806
+ 21814
+ NN
+ O
+
+
+ by
+ by
+ 21815
+ 21817
+ IN
+ O
+
+
+ the
+ the
+ 21818
+ 21821
+ DT
+ DATE
+ THIS P100Y
+
+
+
+ end
+ end
+ 21822
+ 21825
+ NN
+ DATE
+ THIS P100Y
+
+
+
+ of
+ of
+ 21826
+ 21828
+ IN
+ DATE
+ THIS P100Y
+
+
+
+ this
+ this
+ 21829
+ 21833
+ DT
+ DATE
+ THIS P100Y
+
+
+
+ century
+ century
+ 21834
+ 21841
+ NN
+ DATE
+ THIS P100Y
+
+
+
+ .
+ .
+ 21841
+ 21842
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB However)) (, ,) (NP (NP (DT some) (NN project)) (PP (IN that) (NP (NP (DT the) (NN end)) (PP (IN of) (NP (DT the) (NNP Cold) (NNP War)))))) (VP (MD might) (VP (VB lead) (PP (TO to) (NP (NP (DT a) (CD 50) (NN percent) (NN reduction)) (PP (IN in) (NP (NNP U.S.) (NN defense) (NN spending))))) (PP (IN by) (NP (NP (DT the) (NN end)) (PP (IN of) (NP (DT this) (NN century))))))) (. .)))
+
+
+ ROOT
+ lead
+
+
+ lead
+ However
+
+
+ project
+ some
+
+
+ lead
+ project
+
+
+ project
+ that
+
+
+ end
+ the
+
+
+ that
+ end
+
+
+ end
+ of
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ of
+ War
+
+
+ lead
+ might
+
+
+ lead
+ to
+
+
+ reduction
+ a
+
+
+ reduction
+ 50
+
+
+ reduction
+ percent
+
+
+ to
+ reduction
+
+
+ reduction
+ in
+
+
+ spending
+ U.S.
+
+
+ spending
+ defense
+
+
+ in
+ spending
+
+
+ lead
+ by
+
+
+ end
+ the
+
+
+ by
+ end
+
+
+ end
+ of
+
+
+ century
+ this
+
+
+ of
+ century
+
+
+
+
+ ROOT
+ lead
+
+
+ lead
+ However
+
+
+ project
+ some
+
+
+ lead
+ project
+
+
+ end
+ the
+
+
+ project
+ end
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ end
+ War
+
+
+ lead
+ might
+
+
+ reduction
+ a
+
+
+ reduction
+ 50
+
+
+ reduction
+ percent
+
+
+ lead
+ reduction
+
+
+ spending
+ U.S.
+
+
+ spending
+ defense
+
+
+ reduction
+ spending
+
+
+ end
+ the
+
+
+ lead
+ end
+
+
+ century
+ this
+
+
+ end
+ century
+
+
+
+
+ ROOT
+ lead
+
+
+ lead
+ However
+
+
+ project
+ some
+
+
+ lead
+ project
+
+
+ end
+ the
+
+
+ project
+ end
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ end
+ War
+
+
+ lead
+ might
+
+
+ reduction
+ a
+
+
+ reduction
+ 50
+
+
+ reduction
+ percent
+
+
+ lead
+ reduction
+
+
+ spending
+ U.S.
+
+
+ spending
+ defense
+
+
+ reduction
+ spending
+
+
+ end
+ the
+
+
+ lead
+ end
+
+
+ century
+ this
+
+
+ end
+ century
+
+
+
+
+
+
+ If
+ if
+ 21843
+ 21845
+ IN
+ O
+
+
+ 15
+ 15
+ 21846
+ 21848
+ CD
+ PERCENT
+ %15.0
+
+
+ percent
+ percent
+ 21850
+ 21857
+ NN
+ PERCENT
+ %15.0
+
+
+ of
+ of
+ 21858
+ 21860
+ IN
+ O
+
+
+ this
+ this
+ 21861
+ 21865
+ DT
+ O
+
+
+ saving
+ saving
+ 21866
+ 21872
+ NN
+ O
+
+
+ went
+ go
+ 21873
+ 21877
+ VBD
+ O
+
+
+ to
+ to
+ 21878
+ 21880
+ TO
+ O
+
+
+ the
+ the
+ 21881
+ 21884
+ DT
+ O
+
+
+ environ
+ environ
+ 21885
+ 21892
+ NN
+ O
+
+
+ -
+ -
+ 21892
+ 21893
+ :
+ O
+
+
+ mental
+ mental
+ 21895
+ 21901
+ JJ
+ O
+
+
+ peace
+ peace
+ 21902
+ 21907
+ NN
+ O
+
+
+ dividend
+ dividend
+ 21908
+ 21916
+ NN
+ O
+
+
+ ,
+ ,
+ 21916
+ 21917
+ ,
+ O
+
+
+ the
+ the
+ 21918
+ 21921
+ DT
+ O
+
+
+ annual
+ annual
+ 21922
+ 21928
+ JJ
+ SET
+ P1Y
+
+
+ new
+ new
+ 21929
+ 21932
+ JJ
+ O
+
+
+ envi
+ envus
+ 21933
+ 21937
+ NNS
+ O
+
+
+ -
+ -
+ 21937
+ 21938
+ :
+ O
+
+
+ ronmental
+ ronmental
+ 21940
+ 21949
+ JJ
+ O
+
+
+ expenditure
+ expenditure
+ 21950
+ 21961
+ NN
+ O
+
+
+ in
+ in
+ 21962
+ 21964
+ IN
+ O
+
+
+ the
+ the
+ 21965
+ 21968
+ DT
+ O
+
+
+ United
+ United
+ 21969
+ 21975
+ NNP
+ LOCATION
+
+
+ States
+ States
+ 21976
+ 21982
+ NNPS
+ LOCATION
+
+
+ would
+ would
+ 21984
+ 21989
+ MD
+ O
+
+
+ equal
+ equal
+ 21990
+ 21995
+ VB
+ O
+
+
+ $
+ $
+ 21996
+ 21997
+ $
+ MONEY
+ $2.2E10
+
+
+ 22
+ 22
+ 21997
+ 21999
+ CD
+ MONEY
+ $2.2E10
+
+
+ billion
+ billion
+ 22000
+ 22007
+ CD
+ MONEY
+ $2.2E10
+
+
+ ,
+ ,
+ 22007
+ 22008
+ ,
+ O
+
+
+ or
+ or
+ 22009
+ 22011
+ CC
+ O
+
+
+ four
+ four
+ 22012
+ 22016
+ CD
+ NUMBER
+ 4.0
+
+
+ times
+ times
+ 22017
+ 22022
+ CC
+ O
+
+
+ our
+ we
+ 22023
+ 22026
+ PRP$
+ O
+
+
+ present
+ present
+ 22028
+ 22035
+ JJ
+ DATE
+ PRESENT_REF
+ PRESENT_REF
+
+
+ federal
+ federal
+ 22036
+ 22043
+ JJ
+ O
+
+
+ effort
+ effort
+ 22044
+ 22050
+ NN
+ O
+
+
+ .
+ .
+ 22050
+ 22051
+ .
+ O
+
+
+ (ROOT (S (SBAR (IN If) (S (NP (NP (CD 15) (NN percent)) (PP (IN of) (NP (DT this) (NN saving)))) (VP (VBD went) (PP (TO to) (NP (NP (DT the) (NN environ)) (PRN (: -) (NP (NP (JJ mental) (NN peace) (NN dividend)) (, ,) (NP (DT the) (JJ annual) (JJ new) (NNS envi))) (: -))))))) (NP (NP (JJ ronmental) (NN expenditure)) (PP (IN in) (NP (DT the) (NNP United) (NNPS States)))) (VP (MD would) (VP (VB equal) (NP (NP (QP ($ $) (CD 22) (CD billion))) (, ,) (CC or) (NP (NP (CD four)) (PP (CC times) (NP (PRP$ our) (JJ present) (JJ federal) (NN effort))))))) (. .)))
+
+
+ ROOT
+ equal
+
+
+ went
+ If
+
+
+ percent
+ 15
+
+
+ went
+ percent
+
+
+ percent
+ of
+
+
+ saving
+ this
+
+
+ of
+ saving
+
+
+ equal
+ went
+
+
+ went
+ to
+
+
+ environ
+ the
+
+
+ to
+ environ
+
+
+ dividend
+ mental
+
+
+ dividend
+ peace
+
+
+ environ
+ dividend
+
+
+ envi
+ the
+
+
+ envi
+ annual
+
+
+ envi
+ new
+
+
+ dividend
+ envi
+
+
+ expenditure
+ ronmental
+
+
+ equal
+ expenditure
+
+
+ expenditure
+ in
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ in
+ States
+
+
+ equal
+ would
+
+
+ equal
+ $
+
+
+ $
+ 22
+
+
+ $
+ billion
+
+
+ $
+ or
+
+
+ $
+ four
+
+
+ four
+ times
+
+
+ effort
+ our
+
+
+ effort
+ present
+
+
+ effort
+ federal
+
+
+ times
+ effort
+
+
+
+
+ ROOT
+ equal
+
+
+ went
+ If
+
+
+ percent
+ 15
+
+
+ went
+ percent
+
+
+ saving
+ this
+
+
+ percent
+ saving
+
+
+ equal
+ went
+
+
+ environ
+ the
+
+
+ went
+ environ
+
+
+ dividend
+ mental
+
+
+ dividend
+ peace
+
+
+ environ
+ dividend
+
+
+ envi
+ the
+
+
+ envi
+ annual
+
+
+ envi
+ new
+
+
+ dividend
+ envi
+
+
+ expenditure
+ ronmental
+
+
+ equal
+ expenditure
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ expenditure
+ States
+
+
+ equal
+ would
+
+
+ equal
+ $
+
+
+ $
+ 22
+
+
+ $
+ billion
+
+
+ $
+ four
+
+
+ four
+ times
+
+
+ effort
+ our
+
+
+ effort
+ present
+
+
+ effort
+ federal
+
+
+ times
+ effort
+
+
+
+
+ ROOT
+ equal
+
+
+ went
+ If
+
+
+ percent
+ 15
+
+
+ went
+ percent
+
+
+ saving
+ this
+
+
+ percent
+ saving
+
+
+ equal
+ went
+
+
+ environ
+ the
+
+
+ went
+ environ
+
+
+ dividend
+ mental
+
+
+ dividend
+ peace
+
+
+ environ
+ dividend
+
+
+ envi
+ the
+
+
+ envi
+ annual
+
+
+ envi
+ new
+
+
+ dividend
+ envi
+
+
+ expenditure
+ ronmental
+
+
+ equal
+ expenditure
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ expenditure
+ States
+
+
+ equal
+ would
+
+
+ equal
+ $
+
+
+ $
+ 22
+
+
+ $
+ billion
+
+
+ equal
+ four
+
+
+ $
+ four
+
+
+ four
+ times
+
+
+ effort
+ our
+
+
+ effort
+ present
+
+
+ effort
+ federal
+
+
+ times
+ effort
+
+
+
+
+
+
+ Comparable
+ comparable
+ 22052
+ 22062
+ JJ
+ O
+
+
+ sums
+ sum
+ 22063
+ 22067
+ NNS
+ O
+
+
+ should
+ should
+ 22069
+ 22075
+ MD
+ O
+
+
+ be
+ be
+ 22076
+ 22078
+ VB
+ O
+
+
+ generated
+ generate
+ 22079
+ 22088
+ VBN
+ O
+
+
+ by
+ by
+ 22089
+ 22091
+ IN
+ O
+
+
+ reductions
+ reduction
+ 22092
+ 22102
+ NNS
+ O
+
+
+ in
+ in
+ 22103
+ 22105
+ IN
+ O
+
+
+ Euro
+ Euro
+ 22106
+ 22110
+ NNP
+ MISC
+
+
+ -
+ -
+ 22110
+ 22111
+ :
+ O
+
+
+ pean
+ pean
+ 22113
+ 22117
+ NN
+ O
+
+
+ and
+ and
+ 22118
+ 22121
+ CC
+ O
+
+
+ Soviet
+ soviet
+ 22122
+ 22128
+ JJ
+ MISC
+
+
+ defense
+ defense
+ 22129
+ 22136
+ NN
+ O
+
+
+ expenditure
+ expenditure
+ 22137
+ 22148
+ NN
+ O
+
+
+ .
+ .
+ 22148
+ 22149
+ .
+ O
+
+
+ (ROOT (S (NP (JJ Comparable) (NNS sums)) (VP (MD should) (VP (VB be) (VP (VBN generated) (PP (IN by) (NP (NP (NP (NNS reductions)) (PP (IN in) (NP (NNP Euro)))) (: -) (NP (NP (NN pean)) (CC and) (NP (JJ Soviet) (NN defense) (NN expenditure)))))))) (. .)))
+
+
+ ROOT
+ generated
+
+
+ sums
+ Comparable
+
+
+ generated
+ sums
+
+
+ generated
+ should
+
+
+ generated
+ be
+
+
+ generated
+ by
+
+
+ by
+ reductions
+
+
+ reductions
+ in
+
+
+ in
+ Euro
+
+
+ reductions
+ pean
+
+
+ pean
+ and
+
+
+ expenditure
+ Soviet
+
+
+ expenditure
+ defense
+
+
+ pean
+ expenditure
+
+
+
+
+ ROOT
+ generated
+
+
+ sums
+ Comparable
+
+
+ generated
+ sums
+
+
+ generated
+ should
+
+
+ generated
+ be
+
+
+ generated
+ reductions
+
+
+ reductions
+ Euro
+
+
+ reductions
+ pean
+
+
+ expenditure
+ Soviet
+
+
+ expenditure
+ defense
+
+
+ pean
+ expenditure
+
+
+
+
+ ROOT
+ generated
+
+
+ sums
+ Comparable
+
+
+ generated
+ sums
+
+
+ generated
+ should
+
+
+ generated
+ be
+
+
+ generated
+ reductions
+
+
+ reductions
+ Euro
+
+
+ reductions
+ pean
+
+
+ expenditure
+ Soviet
+
+
+ expenditure
+ defense
+
+
+ reductions
+ expenditure
+
+
+ pean
+ expenditure
+
+
+
+
+
+
+ With
+ with
+ 22150
+ 22154
+ IN
+ O
+
+
+ this
+ this
+ 22156
+ 22160
+ DT
+ O
+
+
+ level
+ level
+ 22161
+ 22166
+ NN
+ O
+
+
+ of
+ of
+ 22167
+ 22169
+ IN
+ O
+
+
+ resource
+ resource
+ 22170
+ 22178
+ NN
+ O
+
+
+ commitment
+ commitment
+ 22179
+ 22189
+ NN
+ O
+
+
+ we
+ we
+ 22190
+ 22192
+ PRP
+ O
+
+
+ might
+ might
+ 22193
+ 22198
+ MD
+ O
+
+
+ truly
+ truly
+ 22200
+ 22205
+ RB
+ O
+
+
+ begin
+ begin
+ 22206
+ 22211
+ VB
+ O
+
+
+ to
+ to
+ 22212
+ 22214
+ TO
+ O
+
+
+ have
+ have
+ 22215
+ 22219
+ VB
+ O
+
+
+ an
+ a
+ 22220
+ 22222
+ DT
+ O
+
+
+ impact
+ impact
+ 22223
+ 22229
+ NN
+ O
+
+
+ on
+ on
+ 22230
+ 22232
+ IN
+ O
+
+
+ the
+ the
+ 22233
+ 22236
+ DT
+ O
+
+
+ mam
+ mam
+ 22237
+ 22240
+ NN
+ O
+
+
+ -
+ -
+ 22240
+ 22241
+ :
+ O
+
+
+ moth
+ moth
+ 22243
+ 22247
+ NN
+ O
+
+
+ environmental
+ environmental
+ 22248
+ 22261
+ JJ
+ O
+
+
+ problems
+ problem
+ 22262
+ 22270
+ NNS
+ O
+
+
+ facing
+ face
+ 22271
+ 22277
+ VBG
+ O
+
+
+ us
+ we
+ 22278
+ 22280
+ PRP
+ O
+
+
+ .
+ .
+ 22280
+ 22281
+ .
+ O
+
+
+ (ROOT (S (PP (IN With) (NP (NP (DT this) (NN level)) (PP (IN of) (NP (NN resource) (NN commitment))))) (NP (PRP we)) (VP (MD might) (ADVP (RB truly)) (VP (VB begin) (S (VP (TO to) (VP (VB have) (NP (NP (NP (DT an) (NN impact)) (PP (IN on) (NP (DT the) (NN mam)))) (: -) (NP (NP (NN moth) (JJ environmental) (NNS problems)) (VP (VBG facing) (NP (PRP us)))))))))) (. .)))
+
+
+ ROOT
+ begin
+
+
+ begin
+ With
+
+
+ level
+ this
+
+
+ With
+ level
+
+
+ level
+ of
+
+
+ commitment
+ resource
+
+
+ of
+ commitment
+
+
+ begin
+ we
+
+
+ begin
+ might
+
+
+ begin
+ truly
+
+
+ have
+ to
+
+
+ begin
+ have
+
+
+ impact
+ an
+
+
+ have
+ impact
+
+
+ impact
+ on
+
+
+ mam
+ the
+
+
+ on
+ mam
+
+
+ problems
+ moth
+
+
+ problems
+ environmental
+
+
+ impact
+ problems
+
+
+ problems
+ facing
+
+
+ facing
+ us
+
+
+
+
+ ROOT
+ begin
+
+
+ level
+ this
+
+
+ begin
+ level
+
+
+ commitment
+ resource
+
+
+ level
+ commitment
+
+
+ begin
+ we
+
+
+ begin
+ might
+
+
+ begin
+ truly
+
+
+ have
+ to
+
+
+ begin
+ have
+
+
+ impact
+ an
+
+
+ have
+ impact
+
+
+ mam
+ the
+
+
+ impact
+ mam
+
+
+ problems
+ moth
+
+
+ problems
+ environmental
+
+
+ impact
+ problems
+
+
+ problems
+ facing
+
+
+ facing
+ us
+
+
+
+
+ ROOT
+ begin
+
+
+ level
+ this
+
+
+ begin
+ level
+
+
+ commitment
+ resource
+
+
+ level
+ commitment
+
+
+ begin
+ we
+
+
+ begin
+ might
+
+
+ begin
+ truly
+
+
+ have
+ to
+
+
+ begin
+ have
+
+
+ impact
+ an
+
+
+ have
+ impact
+
+
+ mam
+ the
+
+
+ impact
+ mam
+
+
+ problems
+ moth
+
+
+ problems
+ environmental
+
+
+ impact
+ problems
+
+
+ problems
+ facing
+
+
+ facing
+ us
+
+
+
+
+
+
+ So
+ so
+ 22285
+ 22287
+ RB
+ O
+
+
+ far
+ far
+ 22288
+ 22291
+ RB
+ O
+
+
+ I
+ I
+ 22292
+ 22293
+ PRP
+ O
+
+
+ have
+ have
+ 22294
+ 22298
+ VBP
+ O
+
+
+ discussed
+ discuss
+ 22299
+ 22308
+ VBN
+ O
+
+
+ how
+ how
+ 22309
+ 22312
+ WRB
+ O
+
+
+ the
+ the
+ 22313
+ 22316
+ DT
+ O
+
+
+ peace
+ peace
+ 22317
+ 22322
+ NN
+ O
+
+
+ divi
+ divi
+ 22323
+ 22327
+ SYM
+ O
+
+
+ -
+ -
+ 22327
+ 22328
+ :
+ O
+
+
+ dend
+ dend
+ 22332
+ 22336
+ NN
+ O
+
+
+ generated
+ generate
+ 22337
+ 22346
+ VBN
+ O
+
+
+ by
+ by
+ 22347
+ 22349
+ IN
+ O
+
+
+ the
+ the
+ 22350
+ 22353
+ DT
+ O
+
+
+ end
+ end
+ 22354
+ 22357
+ NN
+ O
+
+
+ of
+ of
+ 22358
+ 22360
+ IN
+ O
+
+
+ the
+ the
+ 22361
+ 22364
+ DT
+ O
+
+
+ Cold
+ Cold
+ 22365
+ 22369
+ NNP
+ MISC
+
+
+ War
+ War
+ 22370
+ 22373
+ NNP
+ MISC
+
+
+ might
+ might
+ 22377
+ 22382
+ MD
+ O
+
+
+ be
+ be
+ 22383
+ 22385
+ VB
+ O
+
+
+ used
+ use
+ 22386
+ 22390
+ VBN
+ O
+
+
+ to
+ to
+ 22391
+ 22393
+ TO
+ O
+
+
+ enhance
+ enhance
+ 22394
+ 22401
+ VB
+ O
+
+
+ the
+ the
+ 22402
+ 22405
+ DT
+ O
+
+
+ environment
+ environment
+ 22406
+ 22417
+ NN
+ O
+
+
+ of
+ of
+ 22421
+ 22423
+ IN
+ O
+
+
+ the
+ the
+ 22424
+ 22427
+ DT
+ O
+
+
+ Cold
+ Cold
+ 22428
+ 22432
+ NNP
+ O
+
+
+ Warring
+ war
+ 22433
+ 22440
+ VBG
+ O
+
+
+ nations
+ nation
+ 22441
+ 22448
+ NNS
+ O
+
+
+ ,
+ ,
+ 22448
+ 22449
+ ,
+ O
+
+
+ that
+ that
+ 22450
+ 22454
+ IN
+ O
+
+
+ Is
+ be
+ 22455
+ 22457
+ VBZ
+ O
+
+
+ ,
+ ,
+ 22457
+ 22458
+ ,
+ O
+
+
+ of
+ of
+ 22459
+ 22461
+ IN
+ O
+
+
+ Europe
+ Europe
+ 22465
+ 22471
+ NNP
+ LOCATION
+
+
+ and
+ and
+ 22472
+ 22475
+ CC
+ O
+
+
+ North
+ North
+ 22476
+ 22481
+ NNP
+ LOCATION
+
+
+ America
+ America
+ 22482
+ 22489
+ NNP
+ LOCATION
+
+
+ .
+ .
+ 22489
+ 22490
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB So) (RB far)) (NP (PRP I)) (VP (VBP have) (VP (VBN discussed) (SBAR (WHADVP (WRB how)) (S (NP (NP (DT the) (NN peace)) (SBAR (S (VP (X (SYM divi)) (: -) (VP (NP (NN dend)) (VBN generated) (PP (IN by) (NP (NP (DT the) (NN end)) (PP (IN of) (NP (DT the) (NNP Cold) (NNP War)))))))))) (VP (MD might) (VP (VB be) (VP (VBN used) (S (VP (TO to) (VP (VB enhance) (NP (NP (DT the) (NN environment)) (PP (IN of) (NP (DT the) (NNP Cold)))) (S (VP (VBG Warring) (NP (NP (NP (NNS nations)) (, ,) (SBAR (WHNP (IN that)) (S (VP (VBZ Is)))) (, ,)) (PP (IN of) (NP (NP (NNP Europe) (CC and) (NNP North)) (NNP America)))))))))))))))) (. .)))
+
+
+ ROOT
+ discussed
+
+
+ far
+ So
+
+
+ discussed
+ far
+
+
+ discussed
+ I
+
+
+ discussed
+ have
+
+
+ used
+ how
+
+
+ peace
+ the
+
+
+ used
+ peace
+
+
+ generated
+ divi
+
+
+ generated
+ dend
+
+
+ peace
+ generated
+
+
+ generated
+ by
+
+
+ end
+ the
+
+
+ by
+ end
+
+
+ end
+ of
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ of
+ War
+
+
+ used
+ might
+
+
+ used
+ be
+
+
+ discussed
+ used
+
+
+ enhance
+ to
+
+
+ used
+ enhance
+
+
+ environment
+ the
+
+
+ enhance
+ environment
+
+
+ environment
+ of
+
+
+ Cold
+ the
+
+
+ of
+ Cold
+
+
+ enhance
+ Warring
+
+
+ Warring
+ nations
+
+
+ Is
+ that
+
+
+ nations
+ Is
+
+
+ nations
+ of
+
+
+ America
+ Europe
+
+
+ Europe
+ and
+
+
+ Europe
+ North
+
+
+ of
+ America
+
+
+
+
+ ROOT
+ discussed
+
+
+ far
+ So
+
+
+ discussed
+ far
+
+
+ discussed
+ I
+
+
+ discussed
+ have
+
+
+ used
+ how
+
+
+ peace
+ the
+
+
+ used
+ peace
+
+
+ generated
+ divi
+
+
+ generated
+ dend
+
+
+ peace
+ generated
+
+
+ end
+ the
+
+
+ generated
+ end
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ end
+ War
+
+
+ used
+ might
+
+
+ used
+ be
+
+
+ discussed
+ used
+
+
+ enhance
+ to
+
+
+ used
+ enhance
+
+
+ environment
+ the
+
+
+ enhance
+ environment
+
+
+ Cold
+ the
+
+
+ environment
+ Cold
+
+
+ enhance
+ Warring
+
+
+ Warring
+ nations
+
+
+ Is
+ that
+
+
+ nations
+ Is
+
+
+ America
+ Europe
+
+
+ Europe
+ North
+
+
+ nations
+ America
+
+
+
+
+ ROOT
+ discussed
+
+
+ far
+ So
+
+
+ discussed
+ far
+
+
+ discussed
+ I
+
+
+ discussed
+ have
+
+
+ used
+ how
+
+
+ peace
+ the
+
+
+ used
+ peace
+
+
+ generated
+ divi
+
+
+ generated
+ dend
+
+
+ peace
+ generated
+
+
+ end
+ the
+
+
+ generated
+ end
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ end
+ War
+
+
+ used
+ might
+
+
+ used
+ be
+
+
+ discussed
+ used
+
+
+ enhance
+ to
+
+
+ used
+ enhance
+
+
+ environment
+ the
+
+
+ enhance
+ environment
+
+
+ Cold
+ the
+
+
+ environment
+ Cold
+
+
+ enhance
+ Warring
+
+
+ Warring
+ nations
+
+
+ Is
+ that
+
+
+ nations
+ Is
+
+
+ America
+ Europe
+
+
+ Europe
+ North
+
+
+ America
+ North
+
+
+ nations
+ America
+
+
+
+
+
+
+ We
+ we
+ 22491
+ 22493
+ PRP
+ O
+
+
+ live
+ live
+ 22494
+ 22498
+ VBP
+ O
+
+
+ in
+ in
+ 22499
+ 22501
+ IN
+ O
+
+
+ a
+ a
+ 22502
+ 22503
+ DT
+ O
+
+
+ single
+ single
+ 22507
+ 22513
+ JJ
+ O
+
+
+ global
+ global
+ 22514
+ 22520
+ JJ
+ O
+
+
+ community
+ community
+ 22521
+ 22530
+ NN
+ O
+
+
+ .
+ .
+ 22530
+ 22531
+ .
+ O
+
+
+ (ROOT (S (NP (PRP We)) (VP (VBP live) (PP (IN in) (NP (DT a) (JJ single) (JJ global) (NN community)))) (. .)))
+
+
+ ROOT
+ live
+
+
+ live
+ We
+
+
+ live
+ in
+
+
+ community
+ a
+
+
+ community
+ single
+
+
+ community
+ global
+
+
+ in
+ community
+
+
+
+
+ ROOT
+ live
+
+
+ live
+ We
+
+
+ community
+ a
+
+
+ community
+ single
+
+
+ community
+ global
+
+
+ live
+ community
+
+
+
+
+ ROOT
+ live
+
+
+ live
+ We
+
+
+ community
+ a
+
+
+ community
+ single
+
+
+ community
+ global
+
+
+ live
+ community
+
+
+
+
+
+
+ The
+ the
+ 22532
+ 22535
+ DT
+ O
+
+
+ Spring
+ spring
+ 22536
+ 22542
+ NN
+ DATE
+ XXXX-SP
+ XXXX-SP
+
+
+ clean
+ clean
+ 22543
+ 22548
+ JJ
+ O
+
+
+ -
+ -
+ 22548
+ 22549
+ :
+ O
+
+
+ ing
+ ing
+ 22553
+ 22556
+ NN
+ O
+
+
+ made
+ make
+ 22557
+ 22561
+ VBD
+ O
+
+
+ possible
+ possible
+ 22562
+ 22570
+ JJ
+ O
+
+
+ by
+ by
+ 22571
+ 22573
+ IN
+ O
+
+
+ the
+ the
+ 22574
+ 22577
+ DT
+ O
+
+
+ thaw
+ thaw
+ 22578
+ 22582
+ NN
+ O
+
+
+ In
+ in
+ 22583
+ 22585
+ IN
+ O
+
+
+ the
+ the
+ 22586
+ 22589
+ DT
+ O
+
+
+ Cold
+ Cold
+ 22590
+ 22594
+ NNP
+ MISC
+
+
+ War
+ War
+ 22598
+ 22601
+ NNP
+ MISC
+
+
+ will
+ will
+ 22602
+ 22606
+ MD
+ O
+
+
+ benefit
+ benefit
+ 22607
+ 22614
+ VB
+ O
+
+
+ not
+ not
+ 22615
+ 22618
+ RB
+ O
+
+
+ only
+ only
+ 22619
+ 22623
+ RB
+ O
+
+
+ our
+ we
+ 22624
+ 22627
+ PRP$
+ O
+
+
+ house
+ house
+ 22628
+ 22633
+ NN
+ O
+
+
+ but
+ but
+ 22634
+ 22637
+ CC
+ O
+
+
+ also
+ also
+ 22638
+ 22642
+ RB
+ O
+
+
+ our
+ we
+ 22646
+ 22649
+ PRP$
+ O
+
+
+ global
+ global
+ 22650
+ 22656
+ JJ
+ O
+
+
+ community
+ community
+ 22657
+ 22666
+ NN
+ O
+
+
+ .
+ .
+ 22666
+ 22667
+ .
+ O
+
+
+ (ROOT (S (NP (NP (DT The) (NN Spring)) (ADJP (ADJP (JJ clean)) (: -) (NP (NP (NN ing)) (SBAR (S (VP (VBD made) (ADJP (JJ possible) (PP (IN by) (NP (DT the) (NN thaw)))) (PP (IN In) (NP (DT the) (NNP Cold) (NNP War))))))))) (VP (MD will) (VP (VB benefit) (NP (CONJP (RB not) (RB only)) (NP (PRP$ our) (NN house)) (CONJP (CC but) (RB also)) (NP (PRP$ our) (JJ global) (NN community))))) (. .)))
+
+
+ ROOT
+ benefit
+
+
+ Spring
+ The
+
+
+ benefit
+ Spring
+
+
+ Spring
+ clean
+
+
+ clean
+ ing
+
+
+ ing
+ made
+
+
+ made
+ possible
+
+
+ possible
+ by
+
+
+ thaw
+ the
+
+
+ by
+ thaw
+
+
+ made
+ In
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ In
+ War
+
+
+ benefit
+ will
+
+
+ only
+ not
+
+
+ house
+ only
+
+
+ house
+ our
+
+
+ benefit
+ house
+
+
+ also
+ but
+
+
+ house
+ also
+
+
+ community
+ our
+
+
+ community
+ global
+
+
+ house
+ community
+
+
+
+
+ ROOT
+ benefit
+
+
+ Spring
+ The
+
+
+ benefit
+ Spring
+
+
+ Spring
+ clean
+
+
+ clean
+ ing
+
+
+ ing
+ made
+
+
+ made
+ possible
+
+
+ thaw
+ the
+
+
+ possible
+ thaw
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ made
+ War
+
+
+ benefit
+ will
+
+
+ only
+ not
+
+
+ house
+ only
+
+
+ house
+ our
+
+
+ benefit
+ house
+
+
+ community
+ our
+
+
+ community
+ global
+
+
+ house
+ community
+
+
+
+
+ ROOT
+ benefit
+
+
+ Spring
+ The
+
+
+ benefit
+ Spring
+
+
+ Spring
+ clean
+
+
+ clean
+ ing
+
+
+ ing
+ made
+
+
+ made
+ possible
+
+
+ thaw
+ the
+
+
+ possible
+ thaw
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ made
+ War
+
+
+ benefit
+ will
+
+
+ only
+ not
+
+
+ house
+ only
+
+
+ house
+ our
+
+
+ benefit
+ house
+
+
+ community
+ our
+
+
+ community
+ global
+
+
+ benefit
+ community
+
+
+ house
+ community
+
+
+
+
+
+
+ However
+ however
+ 22668
+ 22675
+ RB
+ O
+
+
+ ,
+ ,
+ 22675
+ 22676
+ ,
+ O
+
+
+ we
+ we
+ 22677
+ 22679
+ PRP
+ O
+
+
+ can
+ can
+ 22680
+ 22683
+ MD
+ O
+
+
+ not
+ not
+ 22683
+ 22686
+ RB
+ O
+
+
+ be
+ be
+ 22690
+ 22692
+ VB
+ O
+
+
+ indifferent
+ indifferent
+ 22693
+ 22704
+ JJ
+ O
+
+
+ to
+ to
+ 22705
+ 22707
+ TO
+ O
+
+
+ an
+ a
+ 22708
+ 22710
+ DT
+ O
+
+
+ environmental
+ environmental
+ 22711
+ 22724
+ JJ
+ O
+
+
+ deterio
+ deterio
+ 22725
+ 22732
+ NN
+ O
+
+
+ -
+ -
+ 22732
+ 22733
+ :
+ O
+
+
+ ration
+ ration
+ 22737
+ 22743
+ NN
+ O
+
+
+ in
+ in
+ 22744
+ 22746
+ IN
+ O
+
+
+ that
+ that
+ 22747
+ 22751
+ DT
+ O
+
+
+ part
+ part
+ 22752
+ 22756
+ NN
+ O
+
+
+ of
+ of
+ 22757
+ 22759
+ IN
+ O
+
+
+ the
+ the
+ 22760
+ 22763
+ DT
+ O
+
+
+ world
+ world
+ 22764
+ 22769
+ NN
+ O
+
+
+ which
+ which
+ 22770
+ 22775
+ WDT
+ O
+
+
+ is
+ be
+ 22776
+ 22778
+ VBZ
+ O
+
+
+ nei
+ nei
+ 22779
+ 22782
+ SYM
+ O
+
+
+ -
+ -
+ 22782
+ 22783
+ :
+ O
+
+
+ ther
+ ther
+ 22787
+ 22791
+ IN
+ O
+
+
+ East
+ East
+ 22792
+ 22796
+ NNP
+ O
+
+
+ nor
+ nor
+ 22797
+ 22800
+ CC
+ O
+
+
+ West
+ West
+ 22801
+ 22805
+ NNP
+ O
+
+
+ ,
+ ,
+ 22805
+ 22806
+ ,
+ O
+
+
+ that
+ that
+ 22807
+ 22811
+ DT
+ O
+
+
+ is
+ be
+ 22812
+ 22814
+ VBZ
+ O
+
+
+ ,
+ ,
+ 22814
+ 22815
+ ,
+ O
+
+
+ the
+ the
+ 22816
+ 22819
+ DT
+ O
+
+
+ Third
+ Third
+ 22820
+ 22825
+ NNP
+ ORDINAL
+ 3.0
+
+
+ World
+ World
+ 22829
+ 22834
+ NNP
+ MISC
+
+
+ ,
+ ,
+ 22834
+ 22835
+ ,
+ O
+
+
+ the
+ the
+ 22836
+ 22839
+ DT
+ O
+
+
+ developing
+ develop
+ 22840
+ 22850
+ VBG
+ O
+
+
+ world
+ world
+ 22851
+ 22856
+ NN
+ O
+
+
+ which
+ which
+ 22857
+ 22862
+ WDT
+ O
+
+
+ is
+ be
+ 22863
+ 22865
+ VBZ
+ O
+
+
+ home
+ home
+ 22866
+ 22870
+ NN
+ O
+
+
+ to
+ to
+ 22874
+ 22876
+ TO
+ O
+
+
+ 70
+ 70
+ 22877
+ 22879
+ CD
+ PERCENT
+ %70.0
+
+
+ percent
+ percent
+ 22880
+ 22887
+ NN
+ PERCENT
+ %70.0
+
+
+ of
+ of
+ 22888
+ 22890
+ IN
+ O
+
+
+ the
+ the
+ 22891
+ 22894
+ DT
+ O
+
+
+ world
+ world
+ 22895
+ 22900
+ NN
+ O
+
+
+ 's
+ 's
+ 22900
+ 22902
+ POS
+ O
+
+
+ population
+ population
+ 22903
+ 22913
+ NN
+ O
+
+
+ .
+ .
+ 22913
+ 22914
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB However)) (, ,) (NP (PRP we)) (VP (MD can) (RB not) (VP (VB be) (ADJP (ADJP (JJ indifferent) (PP (TO to) (NP (NP (DT an) (JJ environmental) (NN deterio)) (: -) (NP (NP (NN ration)) (PP (IN in) (NP (NP (DT that) (NN part)) (PP (IN of) (NP (NP (DT the) (NN world)) (SBAR (WHNP (WDT which)) (S (VP (VBZ is)))))))))))) (SBAR (X (SYM nei)) (S (: -) (PP (IN ther) (NP (NNP East) (CC nor) (NNP West)) (, ,)) (NP (DT that)) (VP (VBZ is) (, ,) (FRAG (NP (NP (DT the) (NNP Third) (NNP World)) (, ,) (NP (NP (DT the) (VBG developing) (NN world)) (SBAR (WHNP (WDT which)) (S (VP (VBZ is) (ADVP (NN home)) (PP (TO to) (NP (NP (CD 70) (NN percent)) (PP (IN of) (NP (NP (DT the) (NN world) (POS 's)) (NN population))))))))))))))))) (. .)))
+
+
+ ROOT
+ indifferent
+
+
+ indifferent
+ However
+
+
+ indifferent
+ we
+
+
+ indifferent
+ can
+
+
+ indifferent
+ not
+
+
+ indifferent
+ be
+
+
+ indifferent
+ to
+
+
+ deterio
+ an
+
+
+ deterio
+ environmental
+
+
+ to
+ deterio
+
+
+ deterio
+ ration
+
+
+ ration
+ in
+
+
+ part
+ that
+
+
+ in
+ part
+
+
+ part
+ of
+
+
+ world
+ the
+
+
+ of
+ world
+
+
+ is
+ which
+
+
+ world
+ is
+
+
+ is
+ nei
+
+
+ is
+ ther
+
+
+ ther
+ East
+
+
+ East
+ nor
+
+
+ East
+ West
+
+
+ is
+ that
+
+
+ indifferent
+ is
+
+
+ World
+ the
+
+
+ World
+ Third
+
+
+ is
+ World
+
+
+ world
+ the
+
+
+ world
+ developing
+
+
+ World
+ world
+
+
+ is
+ which
+
+
+ world
+ is
+
+
+ is
+ home
+
+
+ is
+ to
+
+
+ percent
+ 70
+
+
+ to
+ percent
+
+
+ percent
+ of
+
+
+ world
+ the
+
+
+ population
+ world
+
+
+ world
+ 's
+
+
+ of
+ population
+
+
+
+
+ ROOT
+ indifferent
+
+
+ indifferent
+ However
+
+
+ indifferent
+ we
+
+
+ indifferent
+ can
+
+
+ indifferent
+ not
+
+
+ indifferent
+ be
+
+
+ deterio
+ an
+
+
+ deterio
+ environmental
+
+
+ indifferent
+ deterio
+
+
+ deterio
+ ration
+
+
+ part
+ that
+
+
+ ration
+ part
+
+
+ world
+ the
+
+
+ part
+ world
+
+
+ is
+ which
+
+
+ world
+ is
+
+
+ is
+ nei
+
+
+ is
+ East
+
+
+ East
+ West
+
+
+ is
+ that
+
+
+ indifferent
+ is
+
+
+ World
+ the
+
+
+ World
+ Third
+
+
+ is
+ World
+
+
+ world
+ the
+
+
+ world
+ developing
+
+
+ World
+ world
+
+
+ is
+ which
+
+
+ world
+ is
+
+
+ is
+ home
+
+
+ percent
+ 70
+
+
+ is
+ percent
+
+
+ world
+ the
+
+
+ population
+ world
+
+
+ percent
+ population
+
+
+
+
+ ROOT
+ indifferent
+
+
+ indifferent
+ However
+
+
+ indifferent
+ we
+
+
+ indifferent
+ can
+
+
+ indifferent
+ not
+
+
+ indifferent
+ be
+
+
+ deterio
+ an
+
+
+ deterio
+ environmental
+
+
+ indifferent
+ deterio
+
+
+ deterio
+ ration
+
+
+ part
+ that
+
+
+ ration
+ part
+
+
+ world
+ the
+
+
+ part
+ world
+
+
+ is
+ which
+
+
+ world
+ is
+
+
+ is
+ nei
+
+
+ is
+ East
+
+
+ East
+ West
+
+
+ is
+ West
+
+
+ is
+ that
+
+
+ indifferent
+ is
+
+
+ World
+ the
+
+
+ World
+ Third
+
+
+ is
+ World
+
+
+ world
+ the
+
+
+ world
+ developing
+
+
+ World
+ world
+
+
+ is
+ which
+
+
+ world
+ is
+
+
+ is
+ home
+
+
+ percent
+ 70
+
+
+ is
+ percent
+
+
+ world
+ the
+
+
+ population
+ world
+
+
+ percent
+ population
+
+
+
+
+
+
+ On
+ on
+ 22920
+ 22922
+ IN
+ O
+
+
+ an
+ a
+ 22923
+ 22925
+ DT
+ O
+
+
+ environmental
+ environmental
+ 22926
+ 22939
+ JJ
+ O
+
+
+ level
+ level
+ 22940
+ 22945
+ NN
+ O
+
+
+ ,
+ ,
+ 22945
+ 22946
+ ,
+ O
+
+
+ we
+ we
+ 22947
+ 22949
+ PRP
+ O
+
+
+ will
+ will
+ 22950
+ 22954
+ MD
+ O
+
+
+ accom
+ accom
+ 22955
+ 22960
+ VB
+ O
+
+
+ -
+ -
+ 22960
+ 22961
+ :
+ O
+
+
+ plish
+ plish
+ 22963
+ 22968
+ NN
+ O
+
+
+ little
+ little
+ 22969
+ 22975
+ RB
+ O
+
+
+ if
+ if
+ 22976
+ 22978
+ IN
+ O
+
+
+ the
+ the
+ 22979
+ 22982
+ DT
+ O
+
+
+ savings
+ savings
+ 22983
+ 22990
+ NNS
+ O
+
+
+ in
+ in
+ 22991
+ 22993
+ IN
+ O
+
+
+ greenhouse
+ greenhouse
+ 22994
+ 23004
+ NN
+ O
+
+
+ gases
+ gas
+ 23006
+ 23011
+ NNS
+ O
+
+
+ made
+ make
+ 23012
+ 23016
+ VBN
+ O
+
+
+ by
+ by
+ 23017
+ 23019
+ IN
+ O
+
+
+ conservation
+ conservation
+ 23020
+ 23032
+ NN
+ O
+
+
+ and
+ and
+ 23033
+ 23036
+ CC
+ O
+
+
+ new
+ new
+ 23037
+ 23040
+ JJ
+ O
+
+
+ tech
+ tech
+ 23041
+ 23045
+ NN
+ O
+
+
+ -
+ -
+ 23045
+ 23046
+ :
+ O
+
+
+ nology
+ nology
+ 23048
+ 23054
+ NN
+ O
+
+
+ use
+ use
+ 23055
+ 23058
+ NN
+ O
+
+
+ In
+ in
+ 23059
+ 23061
+ IN
+ O
+
+
+ the
+ the
+ 23062
+ 23065
+ DT
+ O
+
+
+ developed
+ developed
+ 23066
+ 23075
+ JJ
+ O
+
+
+ countries
+ country
+ 23076
+ 23085
+ NNS
+ O
+
+
+ are
+ be
+ 23086
+ 23089
+ VBP
+ O
+
+
+ offset
+ offset
+ 23091
+ 23097
+ VBN
+ O
+
+
+ by
+ by
+ 23098
+ 23100
+ IN
+ O
+
+
+ the
+ the
+ 23101
+ 23104
+ DT
+ O
+
+
+ ecologically
+ ecologically
+ 23105
+ 23117
+ RB
+ O
+
+
+ unsound
+ unsound
+ 23118
+ 23125
+ JJ
+ O
+
+
+ Industri
+ Industri
+ 23126
+ 23134
+ NNP
+ ORGANIZATION
+
+
+ -
+ -
+ 23134
+ 23135
+ :
+ O
+
+
+ alization
+ alization
+ 23137
+ 23146
+ NN
+ O
+
+
+ of
+ of
+ 23147
+ 23149
+ IN
+ O
+
+
+ the
+ the
+ 23150
+ 23153
+ DT
+ O
+
+
+ developing
+ develop
+ 23154
+ 23164
+ VBG
+ O
+
+
+ world
+ world
+ 23165
+ 23170
+ NN
+ O
+
+
+ and
+ and
+ 23171
+ 23174
+ CC
+ O
+
+
+ by
+ by
+ 23175
+ 23177
+ IN
+ O
+
+
+ the
+ the
+ 23178
+ 23181
+ DT
+ O
+
+
+ destruction
+ destruction
+ 23183
+ 23194
+ NN
+ O
+
+
+ of
+ of
+ 23195
+ 23197
+ IN
+ O
+
+
+ the
+ the
+ 23198
+ 23201
+ DT
+ O
+
+
+ tropical
+ tropical
+ 23202
+ 23210
+ JJ
+ O
+
+
+ forests
+ forest
+ 23211
+ 23218
+ NNS
+ O
+
+
+ which
+ which
+ 23219
+ 23224
+ WDT
+ O
+
+
+ are
+ be
+ 23225
+ 23228
+ VBP
+ O
+
+
+ quite
+ quite
+ 23230
+ 23235
+ RB
+ O
+
+
+ literally
+ literally
+ 23236
+ 23245
+ RB
+ O
+
+
+ the
+ the
+ 23246
+ 23249
+ DT
+ O
+
+
+ lungs
+ lung
+ 23250
+ 23255
+ NNS
+ O
+
+
+ of
+ of
+ 23256
+ 23258
+ IN
+ O
+
+
+ our
+ we
+ 23259
+ 23262
+ PRP$
+ O
+
+
+ planet
+ planet
+ 23263
+ 23269
+ NN
+ O
+
+
+ .
+ .
+ 23269
+ 23270
+ .
+ O
+
+
+ (ROOT (S (PP (IN On) (NP (DT an) (JJ environmental) (NN level))) (, ,) (NP (PRP we)) (VP (MD will) (VP (VB accom) (: -) (S (NP (NP (NN plish) (RB little)) (SBAR (IN if) (S (NP (NP (DT the) (NNS savings)) (PP (IN in) (NP (NN greenhouse) (NNS gases)))) (VP (VBN made) (PP (IN by) (NP (NP (NN conservation)) (CC and) (NP (JJ new) (NN tech)))))))) (: -) (NP (NN nology) (NN use)) (PP (IN In) (NP (DT the) (JJ developed) (NNS countries))) (VP (VBP are) (VP (VBN offset) (PP (PP (IN by) (NP (NP (DT the) (ADJP (RB ecologically) (JJ unsound)) (NNP Industri)) (: -) (NP (NP (NN alization)) (PP (IN of) (NP (DT the) (VBG developing) (NN world)))))) (CC and) (PP (IN by) (NP (NP (DT the) (NN destruction)) (PP (IN of) (NP (NP (DT the) (JJ tropical) (NNS forests)) (SBAR (WHNP (WDT which)) (S (VP (VBP are) (ADVP (RB quite) (RB literally)) (NP (NP (DT the) (NNS lungs)) (PP (IN of) (NP (PRP$ our) (NN planet))))))))))))))))) (. .)))
+
+
+ ROOT
+ accom
+
+
+ accom
+ On
+
+
+ level
+ an
+
+
+ level
+ environmental
+
+
+ On
+ level
+
+
+ accom
+ we
+
+
+ accom
+ will
+
+
+ offset
+ plish
+
+
+ plish
+ little
+
+
+ made
+ if
+
+
+ savings
+ the
+
+
+ made
+ savings
+
+
+ savings
+ in
+
+
+ gases
+ greenhouse
+
+
+ in
+ gases
+
+
+ plish
+ made
+
+
+ made
+ by
+
+
+ by
+ conservation
+
+
+ conservation
+ and
+
+
+ tech
+ new
+
+
+ conservation
+ tech
+
+
+ use
+ nology
+
+
+ offset
+ use
+
+
+ offset
+ In
+
+
+ countries
+ the
+
+
+ countries
+ developed
+
+
+ In
+ countries
+
+
+ offset
+ are
+
+
+ accom
+ offset
+
+
+ offset
+ by
+
+
+ Industri
+ the
+
+
+ unsound
+ ecologically
+
+
+ Industri
+ unsound
+
+
+ by
+ Industri
+
+
+ Industri
+ alization
+
+
+ alization
+ of
+
+
+ world
+ the
+
+
+ world
+ developing
+
+
+ of
+ world
+
+
+ by
+ and
+
+
+ by
+ by
+
+
+ destruction
+ the
+
+
+ by
+ destruction
+
+
+ destruction
+ of
+
+
+ forests
+ the
+
+
+ forests
+ tropical
+
+
+ of
+ forests
+
+
+ lungs
+ which
+
+
+ lungs
+ are
+
+
+ literally
+ quite
+
+
+ lungs
+ literally
+
+
+ lungs
+ the
+
+
+ forests
+ lungs
+
+
+ lungs
+ of
+
+
+ planet
+ our
+
+
+ of
+ planet
+
+
+
+
+ ROOT
+ accom
+
+
+ level
+ an
+
+
+ level
+ environmental
+
+
+ accom
+ level
+
+
+ accom
+ we
+
+
+ accom
+ will
+
+
+ offset
+ plish
+
+
+ plish
+ little
+
+
+ made
+ if
+
+
+ savings
+ the
+
+
+ made
+ savings
+
+
+ gases
+ greenhouse
+
+
+ savings
+ gases
+
+
+ plish
+ made
+
+
+ made
+ conservation
+
+
+ tech
+ new
+
+
+ conservation
+ tech
+
+
+ use
+ nology
+
+
+ offset
+ use
+
+
+ countries
+ the
+
+
+ countries
+ developed
+
+
+ offset
+ countries
+
+
+ offset
+ are
+
+
+ accom
+ offset
+
+
+ Industri
+ the
+
+
+ unsound
+ ecologically
+
+
+ Industri
+ unsound
+
+
+ offset
+ Industri
+
+
+ Industri
+ alization
+
+
+ world
+ the
+
+
+ world
+ developing
+
+
+ alization
+ world
+
+
+ destruction
+ the
+
+
+ Industri
+ destruction
+
+
+ forests
+ the
+
+
+ forests
+ tropical
+
+
+ destruction
+ forests
+
+
+ lungs
+ which
+
+
+ lungs
+ are
+
+
+ literally
+ quite
+
+
+ lungs
+ literally
+
+
+ lungs
+ the
+
+
+ forests
+ lungs
+
+
+ planet
+ our
+
+
+ lungs
+ planet
+
+
+
+
+ ROOT
+ accom
+
+
+ level
+ an
+
+
+ level
+ environmental
+
+
+ accom
+ level
+
+
+ accom
+ we
+
+
+ accom
+ will
+
+
+ offset
+ plish
+
+
+ plish
+ little
+
+
+ made
+ if
+
+
+ savings
+ the
+
+
+ made
+ savings
+
+
+ gases
+ greenhouse
+
+
+ savings
+ gases
+
+
+ plish
+ made
+
+
+ made
+ conservation
+
+
+ tech
+ new
+
+
+ made
+ tech
+
+
+ conservation
+ tech
+
+
+ use
+ nology
+
+
+ offset
+ use
+
+
+ countries
+ the
+
+
+ countries
+ developed
+
+
+ offset
+ countries
+
+
+ offset
+ are
+
+
+ accom
+ offset
+
+
+ Industri
+ the
+
+
+ unsound
+ ecologically
+
+
+ Industri
+ unsound
+
+
+ offset
+ Industri
+
+
+ Industri
+ alization
+
+
+ world
+ the
+
+
+ world
+ developing
+
+
+ alization
+ world
+
+
+ destruction
+ the
+
+
+ offset
+ destruction
+
+
+ Industri
+ destruction
+
+
+ forests
+ the
+
+
+ forests
+ tropical
+
+
+ destruction
+ forests
+
+
+ lungs
+ which
+
+
+ lungs
+ are
+
+
+ literally
+ quite
+
+
+ lungs
+ literally
+
+
+ lungs
+ the
+
+
+ forests
+ lungs
+
+
+ planet
+ our
+
+
+ lungs
+ planet
+
+
+
+
+
+
+ Worse
+ worse
+ 23272
+ 23277
+ RBR
+ O
+
+
+ ,
+ ,
+ 23277
+ 23278
+ ,
+ O
+
+
+ environmental
+ environmental
+ 23279
+ 23292
+ JJ
+ O
+
+
+ degradation
+ degradation
+ 23293
+ 23304
+ NN
+ O
+
+
+ in
+ in
+ 23305
+ 23307
+ IN
+ O
+
+
+ the
+ the
+ 23308
+ 23311
+ DT
+ O
+
+
+ third
+ third
+ 23313
+ 23318
+ JJ
+ ORDINAL
+ 3.0
+
+
+ world
+ world
+ 23319
+ 23324
+ NN
+ O
+
+
+ is
+ be
+ 23325
+ 23327
+ VBZ
+ O
+
+
+ the
+ the
+ 23328
+ 23331
+ DT
+ O
+
+
+ product
+ product
+ 23332
+ 23339
+ NN
+ O
+
+
+ of
+ of
+ 23340
+ 23342
+ IN
+ O
+
+
+ ,
+ ,
+ 23342
+ 23343
+ ,
+ O
+
+
+ the
+ the
+ 23344
+ 23347
+ DT
+ O
+
+
+ compan
+ compan
+ 23348
+ 23354
+ NN
+ O
+
+
+ -
+ -
+ 23354
+ 23355
+ :
+ O
+
+
+ ion
+ ion
+ 23357
+ 23360
+ NN
+ O
+
+
+ of
+ of
+ 23361
+ 23363
+ IN
+ O
+
+
+ ,
+ ,
+ 23363
+ 23364
+ ,
+ O
+
+
+ and
+ and
+ 23365
+ 23368
+ CC
+ O
+
+
+ the
+ the
+ 23369
+ 23372
+ DT
+ O
+
+
+ cause
+ cause
+ 23373
+ 23378
+ NN
+ O
+
+
+ of
+ of
+ 23379
+ 23381
+ IN
+ O
+
+
+ increased
+ increase
+ 23382
+ 23391
+ VBN
+ O
+
+
+ poverty
+ poverty
+ 23392
+ 23399
+ NN
+ O
+
+
+ and
+ and
+ 23401
+ 23404
+ CC
+ O
+
+
+ human
+ human
+ 23405
+ 23410
+ JJ
+ O
+
+
+ misery
+ misery
+ 23411
+ 23417
+ NN
+ O
+
+
+ .
+ .
+ 23417
+ 23418
+ .
+ O
+
+
+ (ROOT (S (ADVP (RBR Worse)) (, ,) (NP (NP (JJ environmental) (NN degradation)) (PP (IN in) (NP (DT the) (JJ third) (NN world)))) (VP (VBZ is) (NP (NP (NP (DT the) (NN product)) (PP (IN of))) (, ,) (NP (NP (DT the) (NN compan)) (: -) (NP (NP (NN ion)) (PP (IN of)))) (, ,) (CC and) (NP (NP (DT the) (NN cause)) (PP (IN of) (NP (NP (VBN increased) (NN poverty)) (CC and) (NP (JJ human) (NN misery))))))) (. .)))
+
+
+ ROOT
+ product
+
+
+ product
+ Worse
+
+
+ degradation
+ environmental
+
+
+ product
+ degradation
+
+
+ degradation
+ in
+
+
+ world
+ the
+
+
+ world
+ third
+
+
+ in
+ world
+
+
+ product
+ is
+
+
+ product
+ the
+
+
+ product
+ of
+
+
+ compan
+ the
+
+
+ product
+ compan
+
+
+ compan
+ ion
+
+
+ ion
+ of
+
+
+ product
+ and
+
+
+ cause
+ the
+
+
+ product
+ cause
+
+
+ cause
+ of
+
+
+ poverty
+ increased
+
+
+ of
+ poverty
+
+
+ poverty
+ and
+
+
+ misery
+ human
+
+
+ poverty
+ misery
+
+
+
+
+ ROOT
+ product
+
+
+ product
+ Worse
+
+
+ degradation
+ environmental
+
+
+ product
+ degradation
+
+
+ world
+ the
+
+
+ world
+ third
+
+
+ degradation
+ world
+
+
+ product
+ is
+
+
+ product
+ the
+
+
+ product
+ of
+
+
+ compan
+ the
+
+
+ product
+ compan
+
+
+ compan
+ ion
+
+
+ ion
+ of
+
+
+ cause
+ the
+
+
+ product
+ cause
+
+
+ poverty
+ increased
+
+
+ cause
+ poverty
+
+
+ misery
+ human
+
+
+ poverty
+ misery
+
+
+
+
+ ROOT
+ product
+
+
+ product
+ Worse
+
+
+ degradation
+ environmental
+
+
+ product
+ degradation
+
+
+ world
+ the
+
+
+ world
+ third
+
+
+ degradation
+ world
+
+
+ product
+ is
+
+
+ product
+ the
+
+
+ product
+ of
+
+
+ compan
+ the
+
+
+ product
+ compan
+
+
+ compan
+ ion
+
+
+ ion
+ of
+
+
+ cause
+ the
+
+
+ product
+ cause
+
+
+ poverty
+ increased
+
+
+ cause
+ poverty
+
+
+ misery
+ human
+
+
+ cause
+ misery
+
+
+ poverty
+ misery
+
+
+
+
+
+
+ This
+ this
+ 23419
+ 23423
+ DT
+ O
+
+
+ misery
+ misery
+ 23424
+ 23430
+ NN
+ O
+
+
+ can
+ can
+ 23431
+ 23434
+ MD
+ O
+
+
+ only
+ only
+ 23435
+ 23439
+ RB
+ O
+
+
+ breed
+ breed
+ 23441
+ 23446
+ VB
+ O
+
+
+ popular
+ popular
+ 23447
+ 23454
+ JJ
+ O
+
+
+ anger
+ anger
+ 23455
+ 23460
+ NN
+ O
+
+
+ and
+ and
+ 23461
+ 23464
+ CC
+ O
+
+
+ governmental
+ governmental
+ 23465
+ 23477
+ JJ
+ O
+
+
+ in
+ in
+ 23478
+ 23480
+ IN
+ O
+
+
+ -
+ -
+ 23480
+ 23481
+ :
+ O
+
+
+ stability
+ stability
+ 23483
+ 23492
+ NN
+ O
+
+
+ .
+ .
+ 23492
+ 23493
+ .
+ O
+
+
+ (ROOT (S (NP (DT This) (NN misery)) (VP (MD can) (ADVP (RB only)) (VP (VB breed) (NP (ADJP (ADJP (JJ popular) (NN anger)) (CC and) (ADJP (JJ governmental) (PP (IN in))) (: -)) (NN stability)))) (. .)))
+
+
+ ROOT
+ breed
+
+
+ misery
+ This
+
+
+ breed
+ misery
+
+
+ breed
+ can
+
+
+ breed
+ only
+
+
+ anger
+ popular
+
+
+ stability
+ anger
+
+
+ anger
+ and
+
+
+ anger
+ governmental
+
+
+ governmental
+ in
+
+
+ breed
+ stability
+
+
+
+
+ ROOT
+ breed
+
+
+ misery
+ This
+
+
+ breed
+ misery
+
+
+ breed
+ can
+
+
+ breed
+ only
+
+
+ anger
+ popular
+
+
+ stability
+ anger
+
+
+ anger
+ governmental
+
+
+ governmental
+ in
+
+
+ breed
+ stability
+
+
+
+
+ ROOT
+ breed
+
+
+ misery
+ This
+
+
+ breed
+ misery
+
+
+ breed
+ can
+
+
+ breed
+ only
+
+
+ anger
+ popular
+
+
+ stability
+ anger
+
+
+ anger
+ governmental
+
+
+ stability
+ governmental
+
+
+ governmental
+ in
+
+
+ breed
+ stability
+
+
+
+
+
+
+ It
+ it
+ 23494
+ 23496
+ PRP
+ O
+
+
+ could
+ could
+ 23497
+ 23502
+ MD
+ O
+
+
+ harm
+ harm
+ 23503
+ 23507
+ VB
+ O
+
+
+ the
+ the
+ 23508
+ 23511
+ DT
+ O
+
+
+ process
+ process
+ 23512
+ 23519
+ NN
+ O
+
+
+ of
+ of
+ 23520
+ 23522
+ IN
+ O
+
+
+ de
+ de
+ 23523
+ 23525
+ FW
+ O
+
+
+ -
+ -
+ 23525
+ 23526
+ :
+ O
+
+
+ mocratization
+ mocratization
+ 23528
+ 23541
+ NN
+ O
+
+
+ in
+ in
+ 23542
+ 23544
+ IN
+ O
+
+
+ the
+ the
+ 23545
+ 23548
+ DT
+ O
+
+
+ third
+ third
+ 23549
+ 23554
+ JJ
+ ORDINAL
+ 3.0
+
+
+ world
+ world
+ 23555
+ 23560
+ NN
+ O
+
+
+ and
+ and
+ 23561
+ 23564
+ CC
+ O
+
+
+ lead
+ lead
+ 23565
+ 23569
+ VB
+ O
+
+
+ to
+ to
+ 23570
+ 23572
+ TO
+ O
+
+
+ the
+ the
+ 23574
+ 23577
+ DT
+ O
+
+
+ emergence
+ emergence
+ 23578
+ 23587
+ NN
+ O
+
+
+ of
+ of
+ 23588
+ 23590
+ IN
+ O
+
+
+ aggressive
+ aggressive
+ 23591
+ 23601
+ JJ
+ O
+
+
+ regimes
+ regime
+ 23602
+ 23609
+ NNS
+ O
+
+
+ .
+ .
+ 23609
+ 23610
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (MD could) (VP (VP (VB harm) (NP (NP (NP (DT the) (NN process)) (PP (IN of) (NP (FW de)))) (: -) (NP (NP (NN mocratization)) (PP (IN in) (NP (DT the) (JJ third) (NN world)))))) (CC and) (VP (VB lead) (PP (TO to) (NP (NP (DT the) (NN emergence)) (PP (IN of) (NP (JJ aggressive) (NNS regimes)))))))) (. .)))
+
+
+ ROOT
+ harm
+
+
+ harm
+ It
+
+
+ harm
+ could
+
+
+ process
+ the
+
+
+ harm
+ process
+
+
+ process
+ of
+
+
+ of
+ de
+
+
+ process
+ mocratization
+
+
+ mocratization
+ in
+
+
+ world
+ the
+
+
+ world
+ third
+
+
+ in
+ world
+
+
+ harm
+ and
+
+
+ harm
+ lead
+
+
+ lead
+ to
+
+
+ emergence
+ the
+
+
+ to
+ emergence
+
+
+ emergence
+ of
+
+
+ regimes
+ aggressive
+
+
+ of
+ regimes
+
+
+
+
+ ROOT
+ harm
+
+
+ harm
+ It
+
+
+ harm
+ could
+
+
+ process
+ the
+
+
+ harm
+ process
+
+
+ process
+ de
+
+
+ process
+ mocratization
+
+
+ world
+ the
+
+
+ world
+ third
+
+
+ mocratization
+ world
+
+
+ harm
+ lead
+
+
+ emergence
+ the
+
+
+ lead
+ emergence
+
+
+ regimes
+ aggressive
+
+
+ emergence
+ regimes
+
+
+
+
+ ROOT
+ harm
+
+
+ harm
+ It
+
+
+ lead
+ It
+
+
+ harm
+ could
+
+
+ process
+ the
+
+
+ harm
+ process
+
+
+ process
+ de
+
+
+ process
+ mocratization
+
+
+ world
+ the
+
+
+ world
+ third
+
+
+ mocratization
+ world
+
+
+ harm
+ lead
+
+
+ emergence
+ the
+
+
+ lead
+ emergence
+
+
+ regimes
+ aggressive
+
+
+ emergence
+ regimes
+
+
+
+
+
+
+ It
+ it
+ 23611
+ 23613
+ PRP
+ O
+
+
+ would
+ would
+ 23615
+ 23620
+ MD
+ O
+
+
+ be
+ be
+ 23621
+ 23623
+ VB
+ O
+
+
+ truly
+ truly
+ 23624
+ 23629
+ RB
+ O
+
+
+ tragic
+ tragic
+ 23630
+ 23636
+ JJ
+ O
+
+
+ if
+ if
+ 23637
+ 23639
+ IN
+ O
+
+
+ the
+ the
+ 23640
+ 23643
+ DT
+ O
+
+
+ end
+ end
+ 23644
+ 23647
+ NN
+ O
+
+
+ of
+ of
+ 23648
+ 23650
+ IN
+ O
+
+
+ the
+ the
+ 23651
+ 23654
+ DT
+ O
+
+
+ Cold
+ Cold
+ 23655
+ 23659
+ NNP
+ MISC
+
+
+ War
+ War
+ 23661
+ 23664
+ NNP
+ MISC
+
+
+ were
+ be
+ 23665
+ 23669
+ VBD
+ O
+
+
+ followed
+ follow
+ 23670
+ 23678
+ VBN
+ O
+
+
+ by
+ by
+ 23679
+ 23681
+ IN
+ O
+
+
+ new
+ new
+ 23682
+ 23685
+ JJ
+ O
+
+
+ wars
+ war
+ 23686
+ 23690
+ NNS
+ O
+
+
+ in
+ in
+ 23691
+ 23693
+ IN
+ O
+
+
+ the
+ the
+ 23694
+ 23697
+ DT
+ O
+
+
+ devel
+ devel
+ 23698
+ 23703
+ NN
+ O
+
+
+ -
+ -
+ 23703
+ 23704
+ :
+ O
+
+
+ oping
+ oping
+ 23706
+ 23711
+ NN
+ O
+
+
+ world
+ world
+ 23712
+ 23717
+ NN
+ O
+
+
+ or
+ or
+ 23718
+ 23720
+ CC
+ O
+
+
+ growing
+ grow
+ 23721
+ 23728
+ VBG
+ O
+
+
+ conflict
+ conflict
+ 23729
+ 23737
+ NN
+ O
+
+
+ along
+ along
+ 23738
+ 23743
+ IN
+ O
+
+
+ north
+ north
+ 23744
+ 23749
+ NN
+ O
+
+
+ -
+ -
+ 23749
+ 23750
+ :
+ O
+
+
+ south
+ south
+ 23752
+ 23757
+ RB
+ O
+
+
+ ,
+ ,
+ 23757
+ 23758
+ ,
+ O
+
+
+ rich-poor
+ rich-poor
+ 23759
+ 23768
+ JJ
+ O
+
+
+ lines
+ line
+ 23769
+ 23774
+ NNS
+ O
+
+
+ .
+ .
+ 23774
+ 23775
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (MD would) (VP (VB be) (ADJP (RB truly) (JJ tragic)) (SBAR (IN if) (S (NP (NP (DT the) (NN end)) (PP (IN of) (NP (DT the) (NNP Cold) (NNP War)))) (VP (VBD were) (VP (VBN followed) (PP (IN by) (NP (JJ new) (NNS wars))) (PP (IN in) (NP (NP (DT the) (NN devel)) (: -) (NP (NP (NN oping) (NN world)) (CC or) (NP (NP (VBG growing) (NN conflict)) (PP (IN along) (NP (NP (NN north)) (: -) (ADVP (RB south)) (, ,) (NP (JJ rich-poor) (NNS lines)))))))))))))) (. .)))
+
+
+ ROOT
+ tragic
+
+
+ tragic
+ It
+
+
+ tragic
+ would
+
+
+ tragic
+ be
+
+
+ tragic
+ truly
+
+
+ followed
+ if
+
+
+ end
+ the
+
+
+ followed
+ end
+
+
+ end
+ of
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ of
+ War
+
+
+ followed
+ were
+
+
+ tragic
+ followed
+
+
+ followed
+ by
+
+
+ wars
+ new
+
+
+ by
+ wars
+
+
+ followed
+ in
+
+
+ devel
+ the
+
+
+ in
+ devel
+
+
+ world
+ oping
+
+
+ devel
+ world
+
+
+ world
+ or
+
+
+ conflict
+ growing
+
+
+ world
+ conflict
+
+
+ conflict
+ along
+
+
+ along
+ north
+
+
+ north
+ south
+
+
+ lines
+ rich-poor
+
+
+ north
+ lines
+
+
+
+
+ ROOT
+ tragic
+
+
+ tragic
+ It
+
+
+ tragic
+ would
+
+
+ tragic
+ be
+
+
+ tragic
+ truly
+
+
+ followed
+ if
+
+
+ end
+ the
+
+
+ followed
+ end
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ end
+ War
+
+
+ followed
+ were
+
+
+ tragic
+ followed
+
+
+ wars
+ new
+
+
+ followed
+ wars
+
+
+ devel
+ the
+
+
+ followed
+ devel
+
+
+ world
+ oping
+
+
+ devel
+ world
+
+
+ conflict
+ growing
+
+
+ world
+ conflict
+
+
+ conflict
+ north
+
+
+ north
+ south
+
+
+ lines
+ rich-poor
+
+
+ north
+ lines
+
+
+
+
+ ROOT
+ tragic
+
+
+ tragic
+ It
+
+
+ tragic
+ would
+
+
+ tragic
+ be
+
+
+ tragic
+ truly
+
+
+ followed
+ if
+
+
+ end
+ the
+
+
+ followed
+ end
+
+
+ War
+ the
+
+
+ War
+ Cold
+
+
+ end
+ War
+
+
+ followed
+ were
+
+
+ tragic
+ followed
+
+
+ wars
+ new
+
+
+ followed
+ wars
+
+
+ devel
+ the
+
+
+ followed
+ devel
+
+
+ world
+ oping
+
+
+ devel
+ world
+
+
+ conflict
+ growing
+
+
+ devel
+ conflict
+
+
+ world
+ conflict
+
+
+ conflict
+ north
+
+
+ north
+ south
+
+
+ lines
+ rich-poor
+
+
+ north
+ lines
+
+
+
+
+
+
+ Given
+ give
+ 23779
+ 23784
+ VBN
+ O
+
+
+ the
+ the
+ 23785
+ 23788
+ DT
+ O
+
+
+ consequences
+ consequence
+ 23789
+ 23801
+ NNS
+ O
+
+
+ ,
+ ,
+ 23801
+ 23802
+ ,
+ O
+
+
+ our
+ we
+ 23803
+ 23806
+ PRP$
+ O
+
+
+ response
+ response
+ 23807
+ 23815
+ NN
+ O
+
+
+ to
+ to
+ 23816
+ 23818
+ TO
+ O
+
+
+ environmental
+ environmental
+ 23820
+ 23833
+ JJ
+ O
+
+
+ deterioration
+ deterioration
+ 23834
+ 23847
+ NN
+ O
+
+
+ in
+ in
+ 23848
+ 23850
+ IN
+ O
+
+
+ the
+ the
+ 23851
+ 23854
+ DT
+ O
+
+
+ third
+ third
+ 23855
+ 23860
+ JJ
+ ORDINAL
+ 3.0
+
+
+ world
+ world
+ 23862
+ 23867
+ NN
+ O
+
+
+ is
+ be
+ 23868
+ 23870
+ VBZ
+ O
+
+
+ woefully
+ woefully
+ 23871
+ 23879
+ RB
+ O
+
+
+ inadequate
+ inadequate
+ 23880
+ 23890
+ JJ
+ O
+
+
+ .
+ .
+ 23890
+ 23891
+ .
+ O
+
+
+ (ROOT (S (PP (VBN Given) (NP (DT the) (NNS consequences))) (, ,) (NP (NP (PRP$ our) (NN response)) (PP (TO to) (NP (NP (JJ environmental) (NN deterioration)) (PP (IN in) (NP (DT the) (JJ third) (NN world)))))) (VP (VBZ is) (ADJP (RB woefully) (JJ inadequate))) (. .)))
+
+
+ ROOT
+ inadequate
+
+
+ inadequate
+ Given
+
+
+ consequences
+ the
+
+
+ Given
+ consequences
+
+
+ response
+ our
+
+
+ inadequate
+ response
+
+
+ response
+ to
+
+
+ deterioration
+ environmental
+
+
+ to
+ deterioration
+
+
+ deterioration
+ in
+
+
+ world
+ the
+
+
+ world
+ third
+
+
+ in
+ world
+
+
+ inadequate
+ is
+
+
+ inadequate
+ woefully
+
+
+
+
+ ROOT
+ inadequate
+
+
+ inadequate
+ Given
+
+
+ consequences
+ the
+
+
+ Given
+ consequences
+
+
+ response
+ our
+
+
+ inadequate
+ response
+
+
+ deterioration
+ environmental
+
+
+ response
+ deterioration
+
+
+ world
+ the
+
+
+ world
+ third
+
+
+ deterioration
+ world
+
+
+ inadequate
+ is
+
+
+ inadequate
+ woefully
+
+
+
+
+ ROOT
+ inadequate
+
+
+ inadequate
+ Given
+
+
+ consequences
+ the
+
+
+ Given
+ consequences
+
+
+ response
+ our
+
+
+ inadequate
+ response
+
+
+ deterioration
+ environmental
+
+
+ response
+ deterioration
+
+
+ world
+ the
+
+
+ world
+ third
+
+
+ deterioration
+ world
+
+
+ inadequate
+ is
+
+
+ inadequate
+ woefully
+
+
+
+
+
+
+ Until
+ until
+ 23892
+ 23897
+ IN
+ O
+
+
+ recently
+ recently
+ 23898
+ 23906
+ RB
+ DATE
+ PAST_REF
+ PAST_REF
+
+
+ ,
+ ,
+ 23906
+ 23907
+ ,
+ O
+
+
+ the
+ the
+ 23909
+ 23912
+ DT
+ O
+
+
+ principal
+ principal
+ 23913
+ 23922
+ JJ
+ O
+
+
+ development
+ development
+ 23923
+ 23934
+ NN
+ O
+
+
+ banks
+ bank
+ 23935
+ 23940
+ NNS
+ O
+
+
+ and
+ and
+ 23941
+ 23944
+ CC
+ O
+
+
+ major
+ major
+ 23945
+ 23950
+ JJ
+ O
+
+
+ donors
+ donor
+ 23952
+ 23958
+ NNS
+ O
+
+
+ did
+ do
+ 23959
+ 23962
+ VBD
+ O
+
+
+ not
+ not
+ 23963
+ 23966
+ RB
+ O
+
+
+ include
+ include
+ 23967
+ 23974
+ VB
+ O
+
+
+ the
+ the
+ 23975
+ 23978
+ DT
+ O
+
+
+ environment
+ environment
+ 23979
+ 23990
+ NN
+ O
+
+
+ as
+ as
+ 23991
+ 23993
+ IN
+ O
+
+
+ priority
+ priority
+ 23995
+ 24003
+ NN
+ O
+
+
+ in
+ in
+ 24004
+ 24006
+ IN
+ O
+
+
+ the
+ the
+ 24007
+ 24010
+ DT
+ O
+
+
+ development
+ development
+ 24011
+ 24022
+ NN
+ O
+
+
+ process
+ process
+ 24023
+ 24030
+ NN
+ O
+
+
+ .
+ .
+ 24030
+ 24031
+ .
+ O
+
+
+ (ROOT (S (PP (IN Until) (ADVP (RB recently))) (, ,) (NP (NP (DT the) (JJ principal) (NN development) (NNS banks)) (CC and) (NP (JJ major) (NNS donors))) (VP (VBD did) (RB not) (VP (VB include) (NP (DT the) (NN environment)) (PP (IN as) (NP (NP (NN priority)) (PP (IN in) (NP (DT the) (NN development) (NN process))))))) (. .)))
+
+
+ ROOT
+ include
+
+
+ include
+ Until
+
+
+ Until
+ recently
+
+
+ banks
+ the
+
+
+ banks
+ principal
+
+
+ banks
+ development
+
+
+ include
+ banks
+
+
+ banks
+ and
+
+
+ donors
+ major
+
+
+ banks
+ donors
+
+
+ include
+ did
+
+
+ include
+ not
+
+
+ environment
+ the
+
+
+ include
+ environment
+
+
+ include
+ as
+
+
+ as
+ priority
+
+
+ priority
+ in
+
+
+ process
+ the
+
+
+ process
+ development
+
+
+ in
+ process
+
+
+
+
+ ROOT
+ include
+
+
+ include
+ Until
+
+
+ Until
+ recently
+
+
+ banks
+ the
+
+
+ banks
+ principal
+
+
+ banks
+ development
+
+
+ include
+ banks
+
+
+ donors
+ major
+
+
+ banks
+ donors
+
+
+ include
+ did
+
+
+ include
+ not
+
+
+ environment
+ the
+
+
+ include
+ environment
+
+
+ include
+ priority
+
+
+ process
+ the
+
+
+ process
+ development
+
+
+ priority
+ process
+
+
+
+
+ ROOT
+ include
+
+
+ include
+ Until
+
+
+ Until
+ recently
+
+
+ banks
+ the
+
+
+ banks
+ principal
+
+
+ banks
+ development
+
+
+ include
+ banks
+
+
+ donors
+ major
+
+
+ banks
+ donors
+
+
+ include
+ donors
+
+
+ include
+ did
+
+
+ include
+ not
+
+
+ environment
+ the
+
+
+ include
+ environment
+
+
+ include
+ priority
+
+
+ process
+ the
+
+
+ process
+ development
+
+
+ priority
+ process
+
+
+
+
+
+
+ Indeed
+ indeed
+ 24032
+ 24038
+ RB
+ O
+
+
+ ,
+ ,
+ 24038
+ 24039
+ ,
+ O
+
+
+ many
+ many
+ 24041
+ 24045
+ JJ
+ O
+
+
+ donor-financed
+ donor-financed
+ 24046
+ 24060
+ JJ
+ O
+
+
+ projects
+ project
+ 24061
+ 24069
+ NNS
+ O
+
+
+ went
+ go
+ 24070
+ 24074
+ VBD
+ O
+
+
+ forward
+ forward
+ 24075
+ 24082
+ RB
+ O
+
+
+ without
+ without
+ 24084
+ 24091
+ IN
+ O
+
+
+ regard
+ regard
+ 24092
+ 24098
+ NN
+ O
+
+
+ to
+ to
+ 24099
+ 24101
+ TO
+ O
+
+
+ the
+ the
+ 24102
+ 24105
+ DT
+ O
+
+
+ environmental
+ environmental
+ 24106
+ 24119
+ JJ
+ O
+
+
+ conse
+ conse
+ 24120
+ 24125
+ NN
+ O
+
+
+ -
+ -
+ 24125
+ 24126
+ :
+ O
+
+
+ quences
+ quence
+ 24128
+ 24135
+ NNS
+ O
+
+
+ with
+ with
+ 24136
+ 24140
+ IN
+ O
+
+
+ sometimes
+ sometimes
+ 24141
+ 24150
+ RB
+ O
+
+
+ disastrous
+ disastrous
+ 24151
+ 24161
+ JJ
+ O
+
+
+ conse
+ conse
+ 24162
+ 24167
+ NN
+ O
+
+
+ -
+ -
+ 24167
+ 24168
+ :
+ O
+
+
+ quences
+ quence
+ 24170
+ 24177
+ NNS
+ O
+
+
+ .
+ .
+ 24177
+ 24178
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB Indeed)) (, ,) (NP (JJ many) (JJ donor-financed) (NNS projects)) (VP (VBD went) (ADVP (RB forward)) (PP (IN without) (NP (NN regard))) (PP (TO to) (NP (NP (DT the) (JJ environmental) (NN conse)) (: -) (NP (NP (NNS quences)) (PP (IN with) (NP (ADJP (RB sometimes) (JJ disastrous)) (NN conse)))) (: -) (NP (NNS quences))))) (. .)))
+
+
+ ROOT
+ went
+
+
+ went
+ Indeed
+
+
+ projects
+ many
+
+
+ projects
+ donor-financed
+
+
+ went
+ projects
+
+
+ went
+ forward
+
+
+ went
+ without
+
+
+ without
+ regard
+
+
+ went
+ to
+
+
+ conse
+ the
+
+
+ conse
+ environmental
+
+
+ to
+ conse
+
+
+ conse
+ quences
+
+
+ quences
+ with
+
+
+ disastrous
+ sometimes
+
+
+ conse
+ disastrous
+
+
+ with
+ conse
+
+
+ conse
+ quences
+
+
+
+
+ ROOT
+ went
+
+
+ went
+ Indeed
+
+
+ projects
+ many
+
+
+ projects
+ donor-financed
+
+
+ went
+ projects
+
+
+ went
+ forward
+
+
+ went
+ regard
+
+
+ conse
+ the
+
+
+ conse
+ environmental
+
+
+ went
+ conse
+
+
+ conse
+ quences
+
+
+ disastrous
+ sometimes
+
+
+ conse
+ disastrous
+
+
+ quences
+ conse
+
+
+ conse
+ quences
+
+
+
+
+ ROOT
+ went
+
+
+ went
+ Indeed
+
+
+ projects
+ many
+
+
+ projects
+ donor-financed
+
+
+ went
+ projects
+
+
+ went
+ forward
+
+
+ went
+ regard
+
+
+ conse
+ the
+
+
+ conse
+ environmental
+
+
+ went
+ conse
+
+
+ conse
+ quences
+
+
+ disastrous
+ sometimes
+
+
+ conse
+ disastrous
+
+
+ quences
+ conse
+
+
+ conse
+ quences
+
+
+
+
+
+
+ It
+ it
+ 24182
+ 24184
+ PRP
+ O
+
+
+ was
+ be
+ 24185
+ 24188
+ VBD
+ O
+
+
+ only
+ only
+ 24189
+ 24193
+ RB
+ O
+
+
+ in
+ in
+ 24194
+ 24196
+ IN
+ O
+
+
+ 1972
+ 1972
+ 24197
+ 24201
+ CD
+ DATE
+ 1972
+ 1972
+
+
+ that
+ that
+ 24202
+ 24206
+ IN
+ O
+
+
+ the
+ the
+ 24207
+ 24210
+ DT
+ O
+
+
+ international
+ international
+ 24211
+ 24224
+ JJ
+ O
+
+
+ community
+ community
+ 24226
+ 24235
+ NN
+ O
+
+
+ established
+ establish
+ 24236
+ 24247
+ VBD
+ O
+
+
+ an
+ a
+ 24248
+ 24250
+ DT
+ O
+
+
+ organization
+ organization
+ 24251
+ 24263
+ NN
+ O
+
+
+ spe
+ spe
+ 24264
+ 24267
+ NN
+ O
+
+
+ -
+ -
+ 24267
+ 24268
+ :
+ O
+
+
+ cifically
+ cifically
+ 24270
+ 24279
+ RB
+ O
+
+
+ concerned
+ concern
+ 24280
+ 24289
+ VBN
+ O
+
+
+ with
+ with
+ 24290
+ 24294
+ IN
+ O
+
+
+ the
+ the
+ 24295
+ 24298
+ DT
+ O
+
+
+ global
+ global
+ 24299
+ 24305
+ JJ
+ O
+
+
+ environ
+ environ
+ 24306
+ 24313
+ NN
+ O
+
+
+ -
+ -
+ 24313
+ 24314
+ :
+ O
+
+
+ ment
+ ment
+ 24316
+ 24320
+ NN
+ O
+
+
+ .
+ .
+ 24320
+ 24321
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (VBD was) (ADVP (RB only)) (PP (IN in) (NP (CD 1972))) (SBAR (IN that) (S (NP (DT the) (JJ international) (NN community)) (VP (VBD established) (NP (DT an) (NN organization)) (NP (NP (NN spe)) (: -) (ADJP (RB cifically) (VBN concerned) (PP (IN with) (NP (DT the) (JJ global) (NN environ) (: -) (NN ment))))))))) (. .)))
+
+
+ ROOT
+ was
+
+
+ was
+ It
+
+
+ was
+ only
+
+
+ was
+ in
+
+
+ in
+ 1972
+
+
+ established
+ that
+
+
+ community
+ the
+
+
+ community
+ international
+
+
+ established
+ community
+
+
+ was
+ established
+
+
+ organization
+ an
+
+
+ established
+ organization
+
+
+ established
+ spe
+
+
+ concerned
+ cifically
+
+
+ spe
+ concerned
+
+
+ concerned
+ with
+
+
+ ment
+ the
+
+
+ ment
+ global
+
+
+ ment
+ environ
+
+
+ with
+ ment
+
+
+
+
+ ROOT
+ was
+
+
+ was
+ It
+
+
+ was
+ only
+
+
+ was
+ 1972
+
+
+ established
+ that
+
+
+ community
+ the
+
+
+ community
+ international
+
+
+ established
+ community
+
+
+ was
+ established
+
+
+ organization
+ an
+
+
+ established
+ organization
+
+
+ established
+ spe
+
+
+ concerned
+ cifically
+
+
+ spe
+ concerned
+
+
+ ment
+ the
+
+
+ ment
+ global
+
+
+ ment
+ environ
+
+
+ concerned
+ ment
+
+
+
+
+ ROOT
+ was
+
+
+ was
+ It
+
+
+ was
+ only
+
+
+ was
+ 1972
+
+
+ established
+ that
+
+
+ community
+ the
+
+
+ community
+ international
+
+
+ established
+ community
+
+
+ was
+ established
+
+
+ organization
+ an
+
+
+ established
+ organization
+
+
+ established
+ spe
+
+
+ concerned
+ cifically
+
+
+ spe
+ concerned
+
+
+ ment
+ the
+
+
+ ment
+ global
+
+
+ ment
+ environ
+
+
+ concerned
+ ment
+
+
+
+
+
+
+ That
+ that
+ 24322
+ 24326
+ DT
+ O
+
+
+ organization
+ organization
+ 24327
+ 24339
+ NN
+ O
+
+
+ ,
+ ,
+ 24339
+ 24340
+ ,
+ O
+
+
+ the
+ the
+ 24341
+ 24344
+ DT
+ O
+
+
+ United
+ United
+ 24345
+ 24351
+ NNP
+ ORGANIZATION
+
+
+ Na
+ Na
+ 24352
+ 24354
+ NNP
+ ORGANIZATION
+
+
+ -
+ -
+ 24354
+ 24355
+ :
+ O
+
+
+ tions
+ tion
+ 24357
+ 24362
+ NNS
+ O
+
+
+ Environment
+ Environment
+ 24363
+ 24374
+ NNP
+ O
+
+
+ Program
+ Program
+ 24375
+ 24382
+ NNP
+ O
+
+
+ ,
+ ,
+ 24382
+ 24383
+ ,
+ O
+
+
+ remains
+ remain
+ 24384
+ 24391
+ VBZ
+ O
+
+
+ stun
+ stun
+ 24392
+ 24396
+ SYM
+ O
+
+
+ -
+ -
+ 24396
+ 24397
+ :
+ O
+
+
+ ningly
+ ningly
+ 24399
+ 24405
+ RB
+ O
+
+
+ underfunded
+ underfund
+ 24406
+ 24417
+ VBN
+ O
+
+
+ .
+ .
+ 24417
+ 24418
+ .
+ O
+
+
+ (ROOT (S (NP (NP (DT That) (NN organization)) (, ,) (NP (NP (DT the) (NNP United) (NNP Na)) (: -) (NP (NP (NNS tions)) (NP (NNP Environment) (NNP Program)))) (, ,)) (VP (VBZ remains) (S (VP (X (SYM stun)) (: -) (VP (ADVP (RB ningly)) (VBN underfunded))))) (. .)))
+
+
+ ROOT
+ remains
+
+
+ organization
+ That
+
+
+ remains
+ organization
+
+
+ Na
+ the
+
+
+ Na
+ United
+
+
+ organization
+ Na
+
+
+ Na
+ tions
+
+
+ Program
+ Environment
+
+
+ tions
+ Program
+
+
+ underfunded
+ stun
+
+
+ underfunded
+ ningly
+
+
+ remains
+ underfunded
+
+
+
+
+ ROOT
+ remains
+
+
+ organization
+ That
+
+
+ remains
+ organization
+
+
+ Na
+ the
+
+
+ Na
+ United
+
+
+ organization
+ Na
+
+
+ Na
+ tions
+
+
+ Program
+ Environment
+
+
+ tions
+ Program
+
+
+ underfunded
+ stun
+
+
+ underfunded
+ ningly
+
+
+ remains
+ underfunded
+
+
+
+
+ ROOT
+ remains
+
+
+ organization
+ That
+
+
+ remains
+ organization
+
+
+ Na
+ the
+
+
+ Na
+ United
+
+
+ organization
+ Na
+
+
+ Na
+ tions
+
+
+ Program
+ Environment
+
+
+ tions
+ Program
+
+
+ underfunded
+ stun
+
+
+ underfunded
+ ningly
+
+
+ remains
+ underfunded
+
+
+
+
+
+
+ In
+ in
+ 24419
+ 24421
+ IN
+ O
+
+
+ 1989
+ 1989
+ 24422
+ 24426
+ CD
+ DATE
+ 1989
+ 1989
+
+
+ the
+ the
+ 24427
+ 24430
+ DT
+ O
+
+
+ UNEP
+ unep
+ 24431
+ 24435
+ NN
+ ORGANIZATION
+
+
+ budget
+ budget
+ 24437
+ 24443
+ NN
+ O
+
+
+ was
+ be
+ 24444
+ 24447
+ VBD
+ O
+
+
+ a
+ a
+ 24448
+ 24449
+ DT
+ O
+
+
+ mere
+ mere
+ 24450
+ 24454
+ JJ
+ O
+
+
+ $
+ $
+ 24455
+ 24456
+ $
+ MONEY
+ $3.0E7
+
+
+ 30
+ 30
+ 24456
+ 24458
+ CD
+ MONEY
+ $3.0E7
+
+
+ million
+ million
+ 24459
+ 24466
+ CD
+ MONEY
+ $3.0E7
+
+
+ ,
+ ,
+ 24466
+ 24467
+ ,
+ O
+
+
+ not
+ not
+ 24468
+ 24471
+ RB
+ O
+
+
+ even
+ even
+ 24472
+ 24476
+ RB
+ O
+
+
+ one
+ one
+ 24477
+ 24480
+ CD
+ PERCENT
+ %1.0
+
+
+ percent
+ percent
+ 24482
+ 24489
+ NN
+ PERCENT
+ %1.0
+
+
+ of
+ of
+ 24490
+ 24492
+ IN
+ O
+
+
+ U.S.
+ U.S.
+ 24493
+ 24497
+ NNP
+ LOCATION
+
+
+ environmental
+ environmental
+ 24498
+ 24511
+ JJ
+ O
+
+
+ expenditure
+ expenditure
+ 24512
+ 24523
+ NN
+ O
+
+
+ at
+ at
+ 24525
+ 24527
+ IN
+ O
+
+
+ the
+ the
+ 24528
+ 24531
+ DT
+ O
+
+
+ federal
+ federal
+ 24532
+ 24539
+ JJ
+ O
+
+
+ level
+ level
+ 24540
+ 24545
+ NN
+ O
+
+
+ .
+ .
+ 24545
+ 24546
+ .
+ O
+
+
+ (ROOT (S (PP (IN In) (NP (CD 1989))) (NP (DT the) (NN UNEP) (NN budget)) (VP (VBD was) (NP (NP (DT a) (JJ mere) (ADJP (QP ($ $) (CD 30) (CD million))) (PRN (, ,) (RB not) (NP (NP (RB even) (CD one) (NN percent)) (PP (IN of) (NP (NNP U.S.))))) (JJ environmental) (NN expenditure)) (PP (IN at) (NP (DT the) (JJ federal) (NN level))))) (. .)))
+
+
+ ROOT
+ expenditure
+
+
+ expenditure
+ In
+
+
+ In
+ 1989
+
+
+ budget
+ the
+
+
+ budget
+ UNEP
+
+
+ expenditure
+ budget
+
+
+ expenditure
+ was
+
+
+ expenditure
+ a
+
+
+ expenditure
+ mere
+
+
+ expenditure
+ $
+
+
+ $
+ 30
+
+
+ $
+ million
+
+
+ percent
+ not
+
+
+ percent
+ even
+
+
+ percent
+ one
+
+
+ expenditure
+ percent
+
+
+ percent
+ of
+
+
+ of
+ U.S.
+
+
+ expenditure
+ environmental
+
+
+ expenditure
+ at
+
+
+ level
+ the
+
+
+ level
+ federal
+
+
+ at
+ level
+
+
+
+
+ ROOT
+ expenditure
+
+
+ expenditure
+ 1989
+
+
+ budget
+ the
+
+
+ budget
+ UNEP
+
+
+ expenditure
+ budget
+
+
+ expenditure
+ was
+
+
+ expenditure
+ a
+
+
+ expenditure
+ mere
+
+
+ expenditure
+ $
+
+
+ $
+ 30
+
+
+ $
+ million
+
+
+ percent
+ not
+
+
+ percent
+ even
+
+
+ percent
+ one
+
+
+ expenditure
+ percent
+
+
+ percent
+ U.S.
+
+
+ expenditure
+ environmental
+
+
+ level
+ the
+
+
+ level
+ federal
+
+
+ expenditure
+ level
+
+
+
+
+ ROOT
+ expenditure
+
+
+ expenditure
+ 1989
+
+
+ budget
+ the
+
+
+ budget
+ UNEP
+
+
+ expenditure
+ budget
+
+
+ expenditure
+ was
+
+
+ expenditure
+ a
+
+
+ expenditure
+ mere
+
+
+ expenditure
+ $
+
+
+ $
+ 30
+
+
+ $
+ million
+
+
+ percent
+ not
+
+
+ percent
+ even
+
+
+ percent
+ one
+
+
+ expenditure
+ percent
+
+
+ percent
+ U.S.
+
+
+ expenditure
+ environmental
+
+
+ level
+ the
+
+
+ level
+ federal
+
+
+ expenditure
+ level
+
+
+
+
+
+
+ In
+ in
+ 24547
+ 24549
+ IN
+ O
+
+
+ its
+ its
+ 24550
+ 24553
+ PRP$
+ O
+
+
+ 17
+ 17
+ 24554
+ 24556
+ CD
+ DURATION
+ 17.0
+ P17Y
+
+
+ years
+ year
+ 24557
+ 24562
+ NNS
+ NUMBER
+ 0.0
+ P17Y
+
+
+ UNEP
+ UNEP
+ 24563
+ 24567
+ NNP
+ ORGANIZATION
+
+
+ has
+ have
+ 24569
+ 24572
+ VBZ
+ O
+
+
+ had
+ have
+ 24573
+ 24576
+ VBD
+ O
+
+
+ an
+ a
+ 24577
+ 24579
+ DT
+ O
+
+
+ extraordinary
+ extraordinary
+ 24580
+ 24593
+ JJ
+ O
+
+
+ catalytic
+ catalytic
+ 24594
+ 24603
+ JJ
+ O
+
+
+ role
+ role
+ 24604
+ 24608
+ NN
+ O
+
+
+ in
+ in
+ 24609
+ 24611
+ IN
+ O
+
+
+ developing
+ develop
+ 24613
+ 24623
+ VBG
+ O
+
+
+ international
+ international
+ 24624
+ 24637
+ JJ
+ O
+
+
+ environmental
+ environmental
+ 24638
+ 24651
+ JJ
+ O
+
+
+ law
+ law
+ 24652
+ 24655
+ NN
+ O
+
+
+ ,
+ ,
+ 24655
+ 24656
+ ,
+ O
+
+
+ in
+ in
+ 24658
+ 24660
+ IN
+ O
+
+
+ assisting
+ assist
+ 24661
+ 24670
+ VBG
+ O
+
+
+ developing
+ develop
+ 24671
+ 24681
+ VBG
+ O
+
+
+ countries
+ country
+ 24682
+ 24691
+ NNS
+ O
+
+
+ build
+ build
+ 24692
+ 24697
+ VB
+ O
+
+
+ envi
+ envi
+ 24698
+ 24702
+ SYM
+ O
+
+
+ -
+ -
+ 24702
+ 24703
+ :
+ O
+
+
+ ronmental
+ ronmental
+ 24705
+ 24714
+ JJ
+ O
+
+
+ institutions
+ institution
+ 24715
+ 24727
+ NNS
+ O
+
+
+ ,
+ ,
+ 24727
+ 24728
+ ,
+ O
+
+
+ and
+ and
+ 24729
+ 24732
+ CC
+ O
+
+
+ in
+ in
+ 24733
+ 24735
+ IN
+ O
+
+
+ enhancing
+ enhance
+ 24736
+ 24745
+ VBG
+ O
+
+
+ an
+ a
+ 24746
+ 24748
+ DT
+ O
+
+
+ awareness
+ awareness
+ 24750
+ 24759
+ NN
+ O
+
+
+ of
+ of
+ 24760
+ 24762
+ IN
+ O
+
+
+ the
+ the
+ 24763
+ 24766
+ DT
+ O
+
+
+ close
+ close
+ 24767
+ 24772
+ JJ
+ O
+
+
+ link
+ link
+ 24773
+ 24777
+ NN
+ O
+
+
+ between
+ between
+ 24778
+ 24785
+ IN
+ O
+
+
+ the
+ the
+ 24786
+ 24789
+ DT
+ O
+
+
+ en
+ en
+ 24790
+ 24792
+ FW
+ O
+
+
+ -
+ -
+ 24792
+ 24793
+ :
+ O
+
+
+ vironment
+ vironment
+ 24795
+ 24804
+ NN
+ O
+
+
+ and
+ and
+ 24808
+ 24811
+ CC
+ O
+
+
+ development
+ development
+ 24814
+ 24825
+ NN
+ O
+
+
+ .
+ .
+ 24825
+ 24826
+ .
+ O
+
+
+ (ROOT (S (PP (IN In) (NP (PRP$ its) (CD 17) (NNS years))) (NP (NNP UNEP)) (VP (VBZ has) (VP (VBD had) (NP (NP (DT an) (JJ extraordinary) (JJ catalytic) (NN role)) (PP (IN in) (S (VP (VBG developing) (NP (JJ international) (JJ environmental) (NN law)))))))) (, ,) (PP (PP (IN in) (S (VP (VBG assisting) (S (VP (VBG developing) (NP (NNS countries)) (VP (VB build) (FRAG (X (SYM envi)) (: -) (NP (JJ ronmental) (NNS institutions))))))))) (, ,) (CC and) (PP (IN in) (S (VP (VBG enhancing) (NP (NP (NP (DT an) (NN awareness)) (PP (IN of) (NP (NP (DT the) (JJ close) (NN link)) (PP (IN between) (NP (DT the) (FW en)))))) (: -) (NP (NN vironment) (CC and) (NN development))))))) (. .)))
+
+
+ ROOT
+ had
+
+
+ had
+ In
+
+
+ years
+ its
+
+
+ years
+ 17
+
+
+ In
+ years
+
+
+ had
+ UNEP
+
+
+ had
+ has
+
+
+ role
+ an
+
+
+ role
+ extraordinary
+
+
+ role
+ catalytic
+
+
+ had
+ role
+
+
+ role
+ in
+
+
+ in
+ developing
+
+
+ law
+ international
+
+
+ law
+ environmental
+
+
+ developing
+ law
+
+
+ had
+ in
+
+
+ in
+ assisting
+
+
+ assisting
+ developing
+
+
+ developing
+ countries
+
+
+ developing
+ build
+
+
+ institutions
+ envi
+
+
+ institutions
+ ronmental
+
+
+ build
+ institutions
+
+
+ in
+ and
+
+
+ in
+ in
+
+
+ in
+ enhancing
+
+
+ awareness
+ an
+
+
+ enhancing
+ awareness
+
+
+ awareness
+ of
+
+
+ link
+ the
+
+
+ link
+ close
+
+
+ of
+ link
+
+
+ link
+ between
+
+
+ en
+ the
+
+
+ between
+ en
+
+
+ awareness
+ vironment
+
+
+ vironment
+ and
+
+
+ vironment
+ development
+
+
+
+
+ ROOT
+ had
+
+
+ years
+ its
+
+
+ years
+ 17
+
+
+ had
+ years
+
+
+ had
+ UNEP
+
+
+ had
+ has
+
+
+ role
+ an
+
+
+ role
+ extraordinary
+
+
+ role
+ catalytic
+
+
+ had
+ role
+
+
+ role
+ developing
+
+
+ law
+ international
+
+
+ law
+ environmental
+
+
+ developing
+ law
+
+
+ had
+ assisting
+
+
+ assisting
+ developing
+
+
+ developing
+ countries
+
+
+ developing
+ build
+
+
+ institutions
+ envi
+
+
+ institutions
+ ronmental
+
+
+ build
+ institutions
+
+
+ assisting
+ enhancing
+
+
+ awareness
+ an
+
+
+ enhancing
+ awareness
+
+
+ link
+ the
+
+
+ link
+ close
+
+
+ awareness
+ link
+
+
+ en
+ the
+
+
+ link
+ en
+
+
+ awareness
+ vironment
+
+
+ vironment
+ development
+
+
+
+
+ ROOT
+ had
+
+
+ years
+ its
+
+
+ years
+ 17
+
+
+ had
+ years
+
+
+ had
+ UNEP
+
+
+ had
+ has
+
+
+ role
+ an
+
+
+ role
+ extraordinary
+
+
+ role
+ catalytic
+
+
+ had
+ role
+
+
+ role
+ developing
+
+
+ law
+ international
+
+
+ law
+ environmental
+
+
+ developing
+ law
+
+
+ had
+ assisting
+
+
+ assisting
+ developing
+
+
+ developing
+ countries
+
+
+ developing
+ build
+
+
+ institutions
+ envi
+
+
+ institutions
+ ronmental
+
+
+ build
+ institutions
+
+
+ had
+ enhancing
+
+
+ assisting
+ enhancing
+
+
+ awareness
+ an
+
+
+ enhancing
+ awareness
+
+
+ link
+ the
+
+
+ link
+ close
+
+
+ awareness
+ link
+
+
+ en
+ the
+
+
+ link
+ en
+
+
+ awareness
+ vironment
+
+
+ awareness
+ development
+
+
+ vironment
+ development
+
+
+
+
+
+
+ Among
+ among
+ 24829
+ 24834
+ IN
+ O
+
+
+ UNEP
+ UNEP
+ 24836
+ 24840
+ NNP
+ ORGANIZATION
+
+
+ 's
+ 's
+ 24840
+ 24842
+ POS
+ O
+
+
+ recent
+ recent
+ 24843
+ 24849
+ JJ
+ O
+
+
+ achievements
+ achievement
+ 24850
+ 24862
+ NNS
+ O
+
+
+ is
+ be
+ 24863
+ 24865
+ VBZ
+ O
+
+
+ the
+ the
+ 24866
+ 24869
+ DT
+ O
+
+
+ Montre
+ Montre
+ 24870
+ 24876
+ NNP
+ LOCATION
+
+
+ -
+ -
+ 24876
+ 24877
+ :
+ O
+
+
+ al
+ al
+ 24879
+ 24881
+ NNP
+ O
+
+
+ Protocol
+ Protocol
+ 24882
+ 24890
+ NNP
+ O
+
+
+ on
+ on
+ 24891
+ 24893
+ IN
+ O
+
+
+ the
+ the
+ 24894
+ 24897
+ DT
+ O
+
+
+ ozone
+ ozone
+ 24898
+ 24903
+ NN
+ O
+
+
+ layer
+ layer
+ 24904
+ 24909
+ NN
+ O
+
+
+ ,
+ ,
+ 24909
+ 24910
+ ,
+ O
+
+
+ the
+ the
+ 24911
+ 24914
+ DT
+ O
+
+
+ major
+ major
+ 24915
+ 24920
+ JJ
+ O
+
+
+ international
+ international
+ 24922
+ 24935
+ JJ
+ O
+
+
+ environmental
+ environmental
+ 24936
+ 24949
+ JJ
+ O
+
+
+ agreement
+ agreement
+ 24950
+ 24959
+ NN
+ O
+
+
+ of
+ of
+ 24960
+ 24962
+ IN
+ O
+
+
+ the
+ the
+ 24964
+ 24967
+ DT
+ DATE
+ THIS P10Y
+
+
+
+ decade
+ decade
+ 24968
+ 24974
+ NN
+ DATE
+ THIS P10Y
+
+
+
+ and
+ and
+ 24975
+ 24978
+ CC
+ O
+
+
+ the
+ the
+ 24979
+ 24982
+ DT
+ O
+
+
+ first
+ first
+ 24983
+ 24988
+ JJ
+ ORDINAL
+ 1.0
+
+
+ serious
+ serious
+ 24989
+ 24996
+ JJ
+ O
+
+
+ effort
+ effort
+ 24997
+ 25003
+ NN
+ O
+
+
+ to
+ to
+ 25004
+ 25006
+ TO
+ O
+
+
+ ad
+ ad
+ 25007
+ 25009
+ NN
+ O
+
+
+ -
+ -
+ 25009
+ 25010
+ :
+ O
+
+
+ dress
+ dress
+ 25012
+ 25017
+ NN
+ O
+
+
+ the
+ the
+ 25018
+ 25021
+ DT
+ O
+
+
+ global
+ global
+ 25022
+ 25028
+ JJ
+ O
+
+
+ warming
+ warming
+ 25029
+ 25036
+ NN
+ O
+
+
+ problem
+ problem
+ 25037
+ 25044
+ NN
+ O
+
+
+ .
+ .
+ 25044
+ 25045
+ .
+ O
+
+
+ (ROOT (FRAG (S (PP (IN Among) (NP (NP (NNP UNEP) (POS 's)) (JJ recent) (NNS achievements))) (VP (VBZ is) (NP (DT the) (NNP Montre)))) (: -) (NP (NP (NP (NNP al) (NNP Protocol)) (PP (IN on) (NP (DT the) (NN ozone) (NN layer)))) (, ,) (NP (NP (DT the) (JJ major) (JJ international) (JJ environmental) (NN agreement)) (PP (IN of) (NP (NP (DT the) (NN decade)) (CC and) (NP (DT the) (JJ first) (JJ serious) (NN effort)))) (PP (TO to) (NP (NN ad))) (: -) (NP (NP (NN dress)) (NP (DT the) (JJ global) (NN warming) (NN problem))))) (. .)))
+
+
+ ROOT
+ Protocol
+
+
+ Montre
+ Among
+
+
+ achievements
+ UNEP
+
+
+ UNEP
+ 's
+
+
+ achievements
+ recent
+
+
+ Among
+ achievements
+
+
+ Montre
+ is
+
+
+ Montre
+ the
+
+
+ Protocol
+ Montre
+
+
+ Protocol
+ al
+
+
+ Protocol
+ on
+
+
+ layer
+ the
+
+
+ layer
+ ozone
+
+
+ on
+ layer
+
+
+ agreement
+ the
+
+
+ agreement
+ major
+
+
+ agreement
+ international
+
+
+ agreement
+ environmental
+
+
+ Protocol
+ agreement
+
+
+ agreement
+ of
+
+
+ decade
+ the
+
+
+ of
+ decade
+
+
+ decade
+ and
+
+
+ effort
+ the
+
+
+ effort
+ first
+
+
+ effort
+ serious
+
+
+ decade
+ effort
+
+
+ agreement
+ to
+
+
+ to
+ ad
+
+
+ agreement
+ dress
+
+
+ problem
+ the
+
+
+ problem
+ global
+
+
+ problem
+ warming
+
+
+ dress
+ problem
+
+
+
+
+ ROOT
+ Protocol
+
+
+ achievements
+ UNEP
+
+
+ achievements
+ recent
+
+
+ Montre
+ achievements
+
+
+ Montre
+ is
+
+
+ Montre
+ the
+
+
+ Protocol
+ Montre
+
+
+ Protocol
+ al
+
+
+ layer
+ the
+
+
+ layer
+ ozone
+
+
+ Protocol
+ layer
+
+
+ agreement
+ the
+
+
+ agreement
+ major
+
+
+ agreement
+ international
+
+
+ agreement
+ environmental
+
+
+ Protocol
+ agreement
+
+
+ decade
+ the
+
+
+ agreement
+ decade
+
+
+ effort
+ the
+
+
+ effort
+ first
+
+
+ effort
+ serious
+
+
+ decade
+ effort
+
+
+ agreement
+ ad
+
+
+ agreement
+ dress
+
+
+ problem
+ the
+
+
+ problem
+ global
+
+
+ problem
+ warming
+
+
+ dress
+ problem
+
+
+
+
+ ROOT
+ Protocol
+
+
+ achievements
+ UNEP
+
+
+ achievements
+ recent
+
+
+ Montre
+ achievements
+
+
+ Montre
+ is
+
+
+ Montre
+ the
+
+
+ Protocol
+ Montre
+
+
+ Protocol
+ al
+
+
+ layer
+ the
+
+
+ layer
+ ozone
+
+
+ Protocol
+ layer
+
+
+ agreement
+ the
+
+
+ agreement
+ major
+
+
+ agreement
+ international
+
+
+ agreement
+ environmental
+
+
+ Protocol
+ agreement
+
+
+ decade
+ the
+
+
+ agreement
+ decade
+
+
+ effort
+ the
+
+
+ effort
+ first
+
+
+ effort
+ serious
+
+
+ agreement
+ effort
+
+
+ decade
+ effort
+
+
+ agreement
+ ad
+
+
+ agreement
+ dress
+
+
+ problem
+ the
+
+
+ problem
+ global
+
+
+ problem
+ warming
+
+
+ dress
+ problem
+
+
+
+
+
+
+ This
+ this
+ 25046
+ 25050
+ DT
+ O
+
+
+ alone
+ alone
+ 25052
+ 25057
+ RB
+ O
+
+
+ would
+ would
+ 25058
+ 25063
+ MD
+ O
+
+
+ ,
+ ,
+ 25063
+ 25064
+ ,
+ O
+
+
+ In
+ in
+ 25065
+ 25067
+ IN
+ O
+
+
+ my
+ my
+ 25068
+ 25070
+ PRP$
+ O
+
+
+ view
+ view
+ 25071
+ 25075
+ NN
+ O
+
+
+ ,
+ ,
+ 25075
+ 25076
+ ,
+ O
+
+
+ justify
+ justify
+ 25077
+ 25084
+ VB
+ O
+
+
+ the
+ the
+ 25085
+ 25088
+ DT
+ O
+
+
+ paltry
+ paltry
+ 25089
+ 25095
+ JJ
+ O
+
+
+ sums
+ sum
+ 25097
+ 25101
+ NNS
+ O
+
+
+ our
+ we
+ 25102
+ 25105
+ PRP$
+ O
+
+
+ world
+ world
+ 25106
+ 25111
+ NN
+ O
+
+
+ community
+ community
+ 25112
+ 25121
+ NN
+ O
+
+
+ has
+ have
+ 25122
+ 25125
+ VBZ
+ O
+
+
+ expended
+ expend
+ 25126
+ 25134
+ VBN
+ O
+
+
+ on
+ on
+ 25135
+ 25137
+ IN
+ O
+
+
+ UNEP
+ UNEP
+ 25139
+ 25143
+ NNP
+ ORGANIZATION
+
+
+ .
+ .
+ 25143
+ 25144
+ .
+ O
+
+
+ (ROOT (S (NP (DT This)) (ADVP (RB alone)) (VP (MD would) (PRN (, ,) (PP (IN In) (NP (PRP$ my) (NN view))) (, ,)) (VP (VB justify) (NP (NP (DT the) (JJ paltry) (NNS sums)) (SBAR (S (NP (PRP$ our) (NN world) (NN community)) (VP (VBZ has) (VP (VBN expended) (PP (IN on) (NP (NNP UNEP)))))))))) (. .)))
+
+
+ ROOT
+ justify
+
+
+ justify
+ This
+
+
+ justify
+ alone
+
+
+ justify
+ would
+
+
+ justify
+ In
+
+
+ view
+ my
+
+
+ In
+ view
+
+
+ sums
+ the
+
+
+ sums
+ paltry
+
+
+ justify
+ sums
+
+
+ community
+ our
+
+
+ community
+ world
+
+
+ expended
+ community
+
+
+ expended
+ has
+
+
+ sums
+ expended
+
+
+ expended
+ on
+
+
+ on
+ UNEP
+
+
+
+
+ ROOT
+ justify
+
+
+ justify
+ This
+
+
+ justify
+ alone
+
+
+ justify
+ would
+
+
+ justify
+ In
+
+
+ view
+ my
+
+
+ In
+ view
+
+
+ sums
+ the
+
+
+ sums
+ paltry
+
+
+ justify
+ sums
+
+
+ community
+ our
+
+
+ community
+ world
+
+
+ expended
+ community
+
+
+ expended
+ has
+
+
+ sums
+ expended
+
+
+ expended
+ UNEP
+
+
+
+
+ ROOT
+ justify
+
+
+ justify
+ This
+
+
+ justify
+ alone
+
+
+ justify
+ would
+
+
+ justify
+ In
+
+
+ view
+ my
+
+
+ In
+ view
+
+
+ sums
+ the
+
+
+ sums
+ paltry
+
+
+ justify
+ sums
+
+
+ community
+ our
+
+
+ community
+ world
+
+
+ expended
+ community
+
+
+ expended
+ has
+
+
+ sums
+ expended
+
+
+ expended
+ UNEP
+
+
+
+
+
+
+ I
+ I
+ 25148
+ 25149
+ PRP
+ O
+
+
+ believe
+ believe
+ 25150
+ 25157
+ VBP
+ O
+
+
+ we
+ we
+ 25158
+ 25160
+ PRP
+ O
+
+
+ should
+ should
+ 25161
+ 25167
+ MD
+ O
+
+
+ in
+ in
+ 25168
+ 25170
+ IN
+ O
+
+
+ this
+ this
+ 25171
+ 25175
+ DT
+ DATE
+ THIS P10Y
+
+
+
+ decade
+ decade
+ 25176
+ 25182
+ NN
+ DATE
+ THIS P10Y
+
+
+
+ resolve
+ resolve
+ 25183
+ 25190
+ NN
+ O
+
+
+ to
+ to
+ 25192
+ 25194
+ TO
+ O
+
+
+ support
+ support
+ 25195
+ 25202
+ VB
+ O
+
+
+ a
+ a
+ 25203
+ 25204
+ DT
+ O
+
+
+ rapid
+ rapid
+ 25205
+ 25210
+ JJ
+ O
+
+
+ increase
+ increase
+ 25211
+ 25219
+ NN
+ O
+
+
+ in
+ in
+ 25220
+ 25222
+ IN
+ O
+
+
+ the
+ the
+ 25223
+ 25226
+ DT
+ O
+
+
+ size
+ size
+ 25227
+ 25231
+ NN
+ O
+
+
+ and
+ and
+ 25232
+ 25235
+ CC
+ O
+
+
+ scope
+ scope
+ 25237
+ 25242
+ NN
+ O
+
+
+ of
+ of
+ 25243
+ 25245
+ IN
+ O
+
+
+ UNEP
+ unep
+ 25246
+ 25250
+ NN
+ ORGANIZATION
+
+
+ activities
+ activity
+ 25251
+ 25261
+ NNS
+ O
+
+
+ .
+ .
+ 25261
+ 25262
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (VBP believe) (SBAR (S (NP (PRP we)) (VP (MD should) (S (PP (IN in) (NP (DT this) (NN decade) (NN resolve))) (VP (TO to) (VP (VB support) (NP (DT a) (JJ rapid) (NN increase)) (PP (IN in) (NP (NP (DT the) (NN size) (CC and) (NN scope)) (PP (IN of) (NP (NN UNEP) (NNS activities)))))))))))) (. .)))
+
+
+ ROOT
+ believe
+
+
+ believe
+ I
+
+
+ should
+ we
+
+
+ believe
+ should
+
+
+ support
+ in
+
+
+ resolve
+ this
+
+
+ resolve
+ decade
+
+
+ in
+ resolve
+
+
+ support
+ to
+
+
+ should
+ support
+
+
+ increase
+ a
+
+
+ increase
+ rapid
+
+
+ support
+ increase
+
+
+ support
+ in
+
+
+ size
+ the
+
+
+ in
+ size
+
+
+ size
+ and
+
+
+ size
+ scope
+
+
+ size
+ of
+
+
+ activities
+ UNEP
+
+
+ of
+ activities
+
+
+
+
+ ROOT
+ believe
+
+
+ believe
+ I
+
+
+ should
+ we
+
+
+ believe
+ should
+
+
+ resolve
+ this
+
+
+ resolve
+ decade
+
+
+ support
+ resolve
+
+
+ support
+ to
+
+
+ should
+ support
+
+
+ increase
+ a
+
+
+ increase
+ rapid
+
+
+ support
+ increase
+
+
+ size
+ the
+
+
+ support
+ size
+
+
+ size
+ scope
+
+
+ activities
+ UNEP
+
+
+ size
+ activities
+
+
+
+
+ ROOT
+ believe
+
+
+ believe
+ I
+
+
+ should
+ we
+
+
+ believe
+ should
+
+
+ resolve
+ this
+
+
+ resolve
+ decade
+
+
+ support
+ resolve
+
+
+ support
+ to
+
+
+ should
+ support
+
+
+ increase
+ a
+
+
+ increase
+ rapid
+
+
+ support
+ increase
+
+
+ size
+ the
+
+
+ support
+ size
+
+
+ support
+ scope
+
+
+ size
+ scope
+
+
+ activities
+ UNEP
+
+
+ size
+ activities
+
+
+
+
+
+
+ I
+ I
+ 25263
+ 25264
+ PRP
+ O
+
+
+ would
+ would
+ 25265
+ 25270
+ MD
+ O
+
+
+ urge
+ urge
+ 25271
+ 25275
+ VB
+ O
+
+
+ a
+ a
+ 25276
+ 25277
+ DT
+ O
+
+
+ tenfold
+ tenfold
+ 25279
+ 25286
+ JJ
+ O
+
+
+ expansion
+ expansion
+ 25287
+ 25296
+ NN
+ O
+
+
+ in
+ in
+ 25297
+ 25299
+ IN
+ O
+
+
+ the
+ the
+ 25300
+ 25303
+ DT
+ O
+
+
+ UNEP
+ UNEP
+ 25304
+ 25308
+ NNP
+ ORGANIZATION
+
+
+ budget
+ budget
+ 25309
+ 25315
+ NN
+ O
+
+
+ over
+ over
+ 25316
+ 25320
+ IN
+ O
+
+
+ the
+ the
+ 25322
+ 25325
+ DT
+ DURATION
+ P3Y
+
+
+ next
+ next
+ 25326
+ 25330
+ JJ
+ DURATION
+ P3Y
+
+
+ three
+ three
+ 25331
+ 25336
+ CD
+ DURATION
+ P3Y
+
+
+ years
+ year
+ 25337
+ 25342
+ NNS
+ NUMBER
+ 0.0
+ P3Y
+
+
+ .
+ .
+ 25342
+ 25343
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (MD would) (VP (VB urge) (NP (NP (DT a) (JJ tenfold) (NN expansion)) (PP (IN in) (NP (DT the) (NNP UNEP) (NN budget)))) (PP (IN over) (NP (DT the) (JJ next) (CD three) (NNS years))))) (. .)))
+
+
+ ROOT
+ urge
+
+
+ urge
+ I
+
+
+ urge
+ would
+
+
+ expansion
+ a
+
+
+ expansion
+ tenfold
+
+
+ urge
+ expansion
+
+
+ expansion
+ in
+
+
+ budget
+ the
+
+
+ budget
+ UNEP
+
+
+ in
+ budget
+
+
+ urge
+ over
+
+
+ years
+ the
+
+
+ years
+ next
+
+
+ years
+ three
+
+
+ over
+ years
+
+
+
+
+ ROOT
+ urge
+
+
+ urge
+ I
+
+
+ urge
+ would
+
+
+ expansion
+ a
+
+
+ expansion
+ tenfold
+
+
+ urge
+ expansion
+
+
+ budget
+ the
+
+
+ budget
+ UNEP
+
+
+ expansion
+ budget
+
+
+ years
+ the
+
+
+ years
+ next
+
+
+ years
+ three
+
+
+ urge
+ years
+
+
+
+
+ ROOT
+ urge
+
+
+ urge
+ I
+
+
+ urge
+ would
+
+
+ expansion
+ a
+
+
+ expansion
+ tenfold
+
+
+ urge
+ expansion
+
+
+ budget
+ the
+
+
+ budget
+ UNEP
+
+
+ expansion
+ budget
+
+
+ years
+ the
+
+
+ years
+ next
+
+
+ years
+ three
+
+
+ urge
+ years
+
+
+
+
+
+
+ This
+ this
+ 25344
+ 25348
+ DT
+ O
+
+
+ ,
+ ,
+ 25348
+ 25349
+ ,
+ O
+
+
+ of
+ of
+ 25350
+ 25352
+ IN
+ O
+
+
+ course
+ course
+ 25353
+ 25359
+ NN
+ O
+
+
+ ,
+ ,
+ 25359
+ 25360
+ ,
+ O
+
+
+ will
+ will
+ 25361
+ 25365
+ MD
+ O
+
+
+ re
+ re
+ 25366
+ 25368
+ VB
+ O
+
+
+ -
+ -
+ 25368
+ 25369
+ :
+ O
+
+
+ quire
+ quire
+ 25371
+ 25376
+ NN
+ O
+
+
+ leadership
+ leadership
+ 25377
+ 25387
+ NN
+ O
+
+
+ from
+ from
+ 25388
+ 25392
+ IN
+ O
+
+
+ the
+ the
+ 25393
+ 25396
+ DT
+ O
+
+
+ parliamentarians
+ parliamentarian
+ 25397
+ 25413
+ NNS
+ O
+
+
+ amongst
+ amongst
+ 25415
+ 25422
+ IN
+ O
+
+
+ us
+ we
+ 25423
+ 25425
+ PRP
+ O
+
+
+ to
+ to
+ 25426
+ 25428
+ TO
+ O
+
+
+ Increase
+ increase
+ 25429
+ 25437
+ VB
+ O
+
+
+ our
+ we
+ 25438
+ 25441
+ PRP$
+ O
+
+
+ own
+ own
+ 25442
+ 25445
+ JJ
+ O
+
+
+ countries
+ country
+ 25446
+ 25455
+ NNS
+ O
+
+
+ '
+ '
+ 25455
+ 25456
+ POS
+ O
+
+
+ contributions
+ contribution
+ 25458
+ 25471
+ NNS
+ O
+
+
+ .
+ .
+ 25471
+ 25472
+ .
+ O
+
+
+ (ROOT (S (NP (NP (DT This)) (, ,) (PP (IN of) (NP (NN course))) (, ,)) (VP (MD will) (VP (VB re) (: -) (S (NP (NP (NN quire) (NN leadership)) (PP (PP (IN from) (NP (DT the) (NNS parliamentarians))) (PP (IN amongst) (NP (PRP us))))) (VP (TO to) (VP (VB Increase) (NP (NP (PRP$ our) (JJ own) (NNS countries) (POS ')) (NNS contributions))))))) (. .)))
+
+
+ ROOT
+ re
+
+
+ re
+ This
+
+
+ This
+ of
+
+
+ of
+ course
+
+
+ re
+ will
+
+
+ leadership
+ quire
+
+
+ Increase
+ leadership
+
+
+ leadership
+ from
+
+
+ parliamentarians
+ the
+
+
+ from
+ parliamentarians
+
+
+ from
+ amongst
+
+
+ amongst
+ us
+
+
+ Increase
+ to
+
+
+ re
+ Increase
+
+
+ countries
+ our
+
+
+ countries
+ own
+
+
+ contributions
+ countries
+
+
+ Increase
+ contributions
+
+
+
+
+ ROOT
+ re
+
+
+ re
+ This
+
+
+ This
+ course
+
+
+ re
+ will
+
+
+ leadership
+ quire
+
+
+ Increase
+ leadership
+
+
+ parliamentarians
+ the
+
+
+ leadership
+ parliamentarians
+
+
+ leadership
+ us
+
+
+ Increase
+ to
+
+
+ re
+ Increase
+
+
+ countries
+ our
+
+
+ countries
+ own
+
+
+ contributions
+ countries
+
+
+ Increase
+ contributions
+
+
+
+
+ ROOT
+ re
+
+
+ re
+ This
+
+
+ This
+ course
+
+
+ re
+ will
+
+
+ leadership
+ quire
+
+
+ Increase
+ leadership
+
+
+ parliamentarians
+ the
+
+
+ leadership
+ parliamentarians
+
+
+ leadership
+ us
+
+
+ Increase
+ to
+
+
+ re
+ Increase
+
+
+ countries
+ our
+
+
+ countries
+ own
+
+
+ contributions
+ countries
+
+
+ Increase
+ contributions
+
+
+
+
+
+
+ However
+ however
+ 25473
+ 25480
+ RB
+ O
+
+
+ ,
+ ,
+ 25480
+ 25481
+ ,
+ O
+
+
+ even
+ even
+ 25482
+ 25486
+ RB
+ O
+
+
+ at
+ at
+ 25487
+ 25489
+ IN
+ O
+
+
+ the
+ the
+ 25490
+ 25493
+ DT
+ O
+
+
+ $
+ $
+ 25494
+ 25495
+ $
+ MONEY
+ $3.0E8
+
+
+ 300
+ 300
+ 25495
+ 25498
+ CD
+ MONEY
+ $3.0E8
+
+
+ million
+ million
+ 25500
+ 25507
+ CD
+ MONEY
+ $3.0E8
+
+
+ level
+ level
+ 25508
+ 25513
+ NN
+ O
+
+
+ ,
+ ,
+ 25513
+ 25514
+ ,
+ O
+
+
+ UNEP
+ unep
+ 25515
+ 25519
+ NN
+ ORGANIZATION
+
+
+ would
+ would
+ 25520
+ 25525
+ MD
+ O
+
+
+ still
+ still
+ 25526
+ 25531
+ RB
+ O
+
+
+ be
+ be
+ 25532
+ 25534
+ VB
+ O
+
+
+ a
+ a
+ 25535
+ 25536
+ DT
+ O
+
+
+ modest
+ modest
+ 25537
+ 25543
+ JJ
+ O
+
+
+ sized
+ size
+ 25545
+ 25550
+ VBN
+ O
+
+
+ U.N.
+ U.N.
+ 25551
+ 25555
+ NNP
+ ORGANIZATION
+
+
+ agency
+ agency
+ 25556
+ 25562
+ NN
+ O
+
+
+ ,
+ ,
+ 25562
+ 25563
+ ,
+ O
+
+
+ and
+ and
+ 25564
+ 25567
+ CC
+ O
+
+
+ the
+ the
+ 25568
+ 25571
+ DT
+ O
+
+
+ overall
+ overall
+ 25572
+ 25579
+ JJ
+ O
+
+
+ effort
+ effort
+ 25580
+ 25586
+ NN
+ O
+
+
+ would
+ would
+ 25588
+ 25593
+ MD
+ O
+
+
+ be
+ be
+ 25594
+ 25596
+ VB
+ O
+
+
+ still
+ still
+ 25597
+ 25602
+ RB
+ O
+
+
+ small
+ small
+ 25603
+ 25608
+ JJ
+ O
+
+
+ as
+ as
+ 25609
+ 25611
+ IN
+ O
+
+
+ compared
+ compare
+ 25612
+ 25620
+ VBN
+ O
+
+
+ to
+ to
+ 25621
+ 25623
+ TO
+ O
+
+
+ the
+ the
+ 25624
+ 25627
+ DT
+ O
+
+
+ envi
+ envi
+ 25628
+ 25632
+ SYM
+ O
+
+
+ -
+ -
+ 25632
+ 25633
+ :
+ O
+
+
+ ronmental
+ ronmental
+ 25635
+ 25644
+ JJ
+ O
+
+
+ needs
+ need
+ 25645
+ 25650
+ NNS
+ O
+
+
+ of
+ of
+ 25651
+ 25653
+ IN
+ O
+
+
+ the
+ the
+ 25654
+ 25657
+ DT
+ O
+
+
+ developing
+ develop
+ 25658
+ 25668
+ VBG
+ O
+
+
+ world
+ world
+ 25669
+ 25674
+ NN
+ O
+
+
+ or
+ or
+ 25675
+ 25677
+ CC
+ O
+
+
+ the
+ the
+ 25679
+ 25682
+ DT
+ O
+
+
+ scale
+ scale
+ 25683
+ 25688
+ NN
+ O
+
+
+ of
+ of
+ 25689
+ 25691
+ IN
+ O
+
+
+ the
+ the
+ 25692
+ 25695
+ DT
+ O
+
+
+ global
+ global
+ 25696
+ 25702
+ JJ
+ O
+
+
+ environmental
+ environmental
+ 25703
+ 25716
+ JJ
+ O
+
+
+ prob
+ prob
+ 25717
+ 25721
+ NN
+ O
+
+
+ -
+ -
+ 25721
+ 25722
+ :
+ O
+
+
+ lem
+ lem
+ 25724
+ 25727
+ NN
+ O
+
+
+ .
+ .
+ 25727
+ 25728
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB However)) (, ,) (PP (RB even) (PP (IN at) (NP (DT the) (ADJP (QP ($ $) (CD 300) (CD million))) (NN level)))) (, ,) (NP (NN UNEP)) (VP (MD would) (ADVP (RB still)) (VP (VB be) (NP (NP (NP (DT a) (JJ modest) (VBN sized) (NNP U.N.) (NN agency)) (, ,) (CC and) (NP (NP (DT the) (JJ overall) (NN effort)) (SBAR (S (VP (MD would) (VP (VB be) (ADJP (RB still) (JJ small) (PP (IN as))) (PP (VBN compared) (PP (TO to) (NP (NP (DT the)) (X (SYM envi))))))))))) (PRN (: -) (NP (NP (NP (JJ ronmental) (NNS needs)) (PP (IN of) (NP (DT the) (VBG developing) (NN world)))) (CC or) (NP (NP (DT the) (NN scale)) (PP (IN of) (NP (DT the) (JJ global) (JJ environmental) (NN prob))))) (: -)) (NP (NN lem))))) (. .)))
+
+
+ ROOT
+ agency
+
+
+ agency
+ However
+
+
+ at
+ even
+
+
+ agency
+ at
+
+
+ level
+ the
+
+
+ level
+ $
+
+
+ $
+ 300
+
+
+ $
+ million
+
+
+ at
+ level
+
+
+ agency
+ UNEP
+
+
+ agency
+ would
+
+
+ agency
+ still
+
+
+ agency
+ be
+
+
+ agency
+ a
+
+
+ agency
+ modest
+
+
+ agency
+ sized
+
+
+ agency
+ U.N.
+
+
+ agency
+ and
+
+
+ effort
+ the
+
+
+ effort
+ overall
+
+
+ agency
+ effort
+
+
+ small
+ would
+
+
+ small
+ be
+
+
+ small
+ still
+
+
+ effort
+ small
+
+
+ small
+ as
+
+
+ small
+ compared
+
+
+ compared
+ to
+
+
+ to
+ the
+
+
+ the
+ envi
+
+
+ needs
+ ronmental
+
+
+ agency
+ needs
+
+
+ needs
+ of
+
+
+ world
+ the
+
+
+ world
+ developing
+
+
+ of
+ world
+
+
+ needs
+ or
+
+
+ scale
+ the
+
+
+ needs
+ scale
+
+
+ scale
+ of
+
+
+ prob
+ the
+
+
+ prob
+ global
+
+
+ prob
+ environmental
+
+
+ of
+ prob
+
+
+ agency
+ lem
+
+
+
+
+ ROOT
+ agency
+
+
+ agency
+ However
+
+
+ agency
+ even
+
+
+ level
+ the
+
+
+ level
+ $
+
+
+ $
+ 300
+
+
+ $
+ million
+
+
+ agency
+ level
+
+
+ agency
+ UNEP
+
+
+ agency
+ would
+
+
+ agency
+ still
+
+
+ agency
+ be
+
+
+ agency
+ a
+
+
+ agency
+ modest
+
+
+ agency
+ sized
+
+
+ agency
+ U.N.
+
+
+ effort
+ the
+
+
+ effort
+ overall
+
+
+ agency
+ effort
+
+
+ small
+ would
+
+
+ small
+ be
+
+
+ small
+ still
+
+
+ effort
+ small
+
+
+ small
+ as
+
+
+ small
+ to
+
+
+ small
+ the
+
+
+ the
+ envi
+
+
+ needs
+ ronmental
+
+
+ agency
+ needs
+
+
+ world
+ the
+
+
+ world
+ developing
+
+
+ needs
+ world
+
+
+ scale
+ the
+
+
+ needs
+ scale
+
+
+ prob
+ the
+
+
+ prob
+ global
+
+
+ prob
+ environmental
+
+
+ scale
+ prob
+
+
+ agency
+ lem
+
+
+
+
+ ROOT
+ agency
+
+
+ agency
+ However
+
+
+ agency
+ even
+
+
+ level
+ the
+
+
+ level
+ $
+
+
+ $
+ 300
+
+
+ $
+ million
+
+
+ agency
+ level
+
+
+ agency
+ UNEP
+
+
+ agency
+ would
+
+
+ agency
+ still
+
+
+ agency
+ be
+
+
+ agency
+ a
+
+
+ agency
+ modest
+
+
+ agency
+ sized
+
+
+ agency
+ U.N.
+
+
+ effort
+ the
+
+
+ effort
+ overall
+
+
+ agency
+ effort
+
+
+ small
+ would
+
+
+ small
+ be
+
+
+ small
+ still
+
+
+ effort
+ small
+
+
+ small
+ as
+
+
+ small
+ to
+
+
+ small
+ the
+
+
+ the
+ envi
+
+
+ needs
+ ronmental
+
+
+ agency
+ needs
+
+
+ world
+ the
+
+
+ world
+ developing
+
+
+ needs
+ world
+
+
+ scale
+ the
+
+
+ agency
+ scale
+
+
+ needs
+ scale
+
+
+ prob
+ the
+
+
+ prob
+ global
+
+
+ prob
+ environmental
+
+
+ scale
+ prob
+
+
+ agency
+ lem
+
+
+
+
+
+
+ As
+ as
+ 25732
+ 25734
+ IN
+ O
+
+
+ you
+ you
+ 25735
+ 25738
+ PRP
+ O
+
+
+ will
+ will
+ 25739
+ 25743
+ MD
+ O
+
+
+ have
+ have
+ 25744
+ 25748
+ VB
+ O
+
+
+ noticed
+ notice
+ 25749
+ 25756
+ VBN
+ O
+
+
+ my
+ my
+ 25757
+ 25759
+ PRP$
+ O
+
+
+ remarks
+ remark
+ 25760
+ 25767
+ NNS
+ O
+
+
+ have
+ have
+ 25768
+ 25772
+ VBP
+ O
+
+
+ focused
+ focus
+ 25776
+ 25783
+ VBN
+ O
+
+
+ heavily
+ heavily
+ 25784
+ 25791
+ RB
+ O
+
+
+ on
+ on
+ 25792
+ 25794
+ IN
+ O
+
+
+ the
+ the
+ 25795
+ 25798
+ DT
+ O
+
+
+ Issue
+ issue
+ 25799
+ 25804
+ NN
+ O
+
+
+ of
+ of
+ 25805
+ 25807
+ IN
+ O
+
+
+ resources
+ resource
+ 25808
+ 25817
+ NNS
+ O
+
+
+ .
+ .
+ 25817
+ 25818
+ .
+ O
+
+
+ (ROOT (S (SBAR (IN As) (S (NP (PRP you)) (VP (MD will) (VP (VB have) (VP (VBN noticed) (NP (PRP$ my) (NNS remarks))))))) (VP (VBP have) (VP (VBN focused) (ADVP (RB heavily)) (PP (IN on) (NP (NP (DT the) (NN Issue)) (PP (IN of) (NP (NNS resources))))))) (. .)))
+
+
+ ROOT
+ focused
+
+
+ noticed
+ As
+
+
+ noticed
+ you
+
+
+ noticed
+ will
+
+
+ noticed
+ have
+
+
+ focused
+ noticed
+
+
+ remarks
+ my
+
+
+ noticed
+ remarks
+
+
+ focused
+ have
+
+
+ focused
+ heavily
+
+
+ focused
+ on
+
+
+ Issue
+ the
+
+
+ on
+ Issue
+
+
+ Issue
+ of
+
+
+ of
+ resources
+
+
+
+
+ ROOT
+ focused
+
+
+ noticed
+ As
+
+
+ noticed
+ you
+
+
+ noticed
+ will
+
+
+ noticed
+ have
+
+
+ focused
+ noticed
+
+
+ remarks
+ my
+
+
+ noticed
+ remarks
+
+
+ focused
+ have
+
+
+ focused
+ heavily
+
+
+ Issue
+ the
+
+
+ focused
+ Issue
+
+
+ Issue
+ resources
+
+
+
+
+ ROOT
+ focused
+
+
+ noticed
+ As
+
+
+ noticed
+ you
+
+
+ noticed
+ will
+
+
+ noticed
+ have
+
+
+ focused
+ noticed
+
+
+ remarks
+ my
+
+
+ noticed
+ remarks
+
+
+ focused
+ have
+
+
+ focused
+ heavily
+
+
+ Issue
+ the
+
+
+ focused
+ Issue
+
+
+ Issue
+ resources
+
+
+
+
+
+
+ After
+ after
+ 25822
+ 25827
+ IN
+ O
+
+
+ a
+ a
+ 25828
+ 25829
+ DT
+ DURATION
+ P10Y
+
+
+ decade
+ decade
+ 25830
+ 25836
+ NN
+ DURATION
+ P10Y
+
+
+ of
+ of
+ 25837
+ 25839
+ IN
+ O
+
+
+ borrowing
+ borrowing
+ 25840
+ 25849
+ NN
+ O
+
+
+ and
+ and
+ 25850
+ 25853
+ CC
+ O
+
+
+ spending
+ spending
+ 25854
+ 25862
+ NN
+ O
+
+
+ ,
+ ,
+ 25862
+ 25863
+ ,
+ O
+
+
+ it
+ it
+ 25864
+ 25866
+ PRP
+ O
+
+
+ has
+ have
+ 25870
+ 25873
+ VBZ
+ O
+
+
+ become
+ become
+ 25874
+ 25880
+ VBN
+ O
+
+
+ fashionable
+ fashionable
+ 25881
+ 25892
+ JJ
+ O
+
+
+ in
+ in
+ 25893
+ 25895
+ IN
+ O
+
+
+ the
+ the
+ 25896
+ 25899
+ DT
+ O
+
+
+ United
+ United
+ 25900
+ 25906
+ NNP
+ LOCATION
+
+
+ States
+ States
+ 25908
+ 25914
+ NNPS
+ LOCATION
+
+
+ to
+ to
+ 25915
+ 25917
+ TO
+ O
+
+
+ talk
+ talk
+ 25918
+ 25922
+ VB
+ O
+
+
+ of
+ of
+ 25923
+ 25925
+ IN
+ O
+
+
+ actions
+ action
+ 25926
+ 25933
+ NNS
+ O
+
+
+ that
+ that
+ 25934
+ 25938
+ WDT
+ O
+
+
+ do
+ do
+ 25939
+ 25941
+ VBP
+ O
+
+
+ not
+ not
+ 25942
+ 25945
+ RB
+ O
+
+
+ cost
+ cost
+ 25946
+ 25950
+ VB
+ O
+
+
+ money
+ money
+ 25952
+ 25957
+ NN
+ O
+
+
+ .
+ .
+ 25957
+ 25958
+ .
+ O
+
+
+ (ROOT (S (PP (IN After) (NP (NP (DT a) (NN decade)) (PP (IN of) (NP (NN borrowing) (CC and) (NN spending))))) (, ,) (NP (PRP it)) (VP (VBZ has) (VP (VBN become) (S (ADJP (JJ fashionable))) (PP (IN in) (NP (DT the) (NNP United) (NNPS States))) (VP (TO to) (VP (VB talk) (PP (IN of) (NP (NP (NNS actions)) (SBAR (WHNP (WDT that)) (S (VP (VBP do) (RB not) (VP (VB cost) (NP (NN money)))))))))))) (. .)))
+
+
+ ROOT
+ talk
+
+
+ talk
+ After
+
+
+ decade
+ a
+
+
+ After
+ decade
+
+
+ decade
+ of
+
+
+ of
+ borrowing
+
+
+ borrowing
+ and
+
+
+ borrowing
+ spending
+
+
+ talk
+ it
+
+
+ talk
+ has
+
+
+ talk
+ become
+
+
+ talk
+ fashionable
+
+
+ talk
+ in
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ in
+ States
+
+
+ talk
+ to
+
+
+ talk
+ of
+
+
+ of
+ actions
+
+
+ cost
+ that
+
+
+ cost
+ do
+
+
+ cost
+ not
+
+
+ actions
+ cost
+
+
+ cost
+ money
+
+
+
+
+ ROOT
+ talk
+
+
+ decade
+ a
+
+
+ talk
+ decade
+
+
+ decade
+ borrowing
+
+
+ borrowing
+ spending
+
+
+ talk
+ it
+
+
+ talk
+ has
+
+
+ talk
+ become
+
+
+ talk
+ fashionable
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ talk
+ States
+
+
+ talk
+ to
+
+
+ talk
+ actions
+
+
+ cost
+ that
+
+
+ cost
+ do
+
+
+ cost
+ not
+
+
+ actions
+ cost
+
+
+ cost
+ money
+
+
+
+
+ ROOT
+ talk
+
+
+ decade
+ a
+
+
+ talk
+ decade
+
+
+ decade
+ borrowing
+
+
+ decade
+ spending
+
+
+ borrowing
+ spending
+
+
+ talk
+ it
+
+
+ talk
+ has
+
+
+ talk
+ become
+
+
+ talk
+ fashionable
+
+
+ States
+ the
+
+
+ States
+ United
+
+
+ talk
+ States
+
+
+ talk
+ to
+
+
+ talk
+ actions
+
+
+ cost
+ that
+
+
+ cost
+ do
+
+
+ cost
+ not
+
+
+ actions
+ cost
+
+
+ cost
+ money
+
+
+
+
+
+
+ Given
+ give
+ 25959
+ 25964
+ VBN
+ O
+
+
+ the
+ the
+ 25965
+ 25968
+ DT
+ O
+
+
+ economic
+ economic
+ 25969
+ 25977
+ JJ
+ O
+
+
+ crisis
+ crisis
+ 25978
+ 25984
+ NN
+ O
+
+
+ of
+ of
+ 25985
+ 25987
+ IN
+ O
+
+
+ the
+ the
+ 25988
+ 25991
+ DT
+ O
+
+
+ East
+ East
+ 25993
+ 25997
+ NNP
+ LOCATION
+
+
+ ,
+ ,
+ 25997
+ 25998
+ ,
+ O
+
+
+ they
+ they
+ 25999
+ 26003
+ PRP
+ O
+
+
+ too
+ too
+ 26004
+ 26007
+ RB
+ O
+
+
+ may
+ may
+ 26008
+ 26011
+ MD
+ O
+
+
+ be
+ be
+ 26012
+ 26014
+ VB
+ O
+
+
+ subject
+ subject
+ 26015
+ 26022
+ JJ
+ O
+
+
+ to
+ to
+ 26023
+ 26025
+ TO
+ O
+
+
+ the
+ the
+ 26026
+ 26029
+ DT
+ O
+
+
+ same
+ same
+ 26030
+ 26034
+ JJ
+ O
+
+
+ tendency
+ tendency
+ 26036
+ 26044
+ NN
+ O
+
+
+ .
+ .
+ 26044
+ 26045
+ .
+ O
+
+
+ (ROOT (S (PP (VBN Given) (NP (NP (DT the) (JJ economic) (NN crisis)) (PP (IN of) (NP (DT the) (NNP East))))) (, ,) (NP (PRP they)) (ADVP (RB too)) (VP (MD may) (VP (VB be) (ADJP (JJ subject) (PP (TO to) (NP (DT the) (JJ same) (NN tendency)))))) (. .)))
+
+
+ ROOT
+ subject
+
+
+ subject
+ Given
+
+
+ crisis
+ the
+
+
+ crisis
+ economic
+
+
+ Given
+ crisis
+
+
+ crisis
+ of
+
+
+ East
+ the
+
+
+ of
+ East
+
+
+ subject
+ they
+
+
+ subject
+ too
+
+
+ subject
+ may
+
+
+ subject
+ be
+
+
+ subject
+ to
+
+
+ tendency
+ the
+
+
+ tendency
+ same
+
+
+ to
+ tendency
+
+
+
+
+ ROOT
+ subject
+
+
+ subject
+ Given
+
+
+ crisis
+ the
+
+
+ crisis
+ economic
+
+
+ Given
+ crisis
+
+
+ East
+ the
+
+
+ crisis
+ East
+
+
+ subject
+ they
+
+
+ subject
+ too
+
+
+ subject
+ may
+
+
+ subject
+ be
+
+
+ tendency
+ the
+
+
+ tendency
+ same
+
+
+ subject
+ tendency
+
+
+
+
+ ROOT
+ subject
+
+
+ subject
+ Given
+
+
+ crisis
+ the
+
+
+ crisis
+ economic
+
+
+ Given
+ crisis
+
+
+ East
+ the
+
+
+ crisis
+ East
+
+
+ subject
+ they
+
+
+ subject
+ too
+
+
+ subject
+ may
+
+
+ subject
+ be
+
+
+ tendency
+ the
+
+
+ tendency
+ same
+
+
+ subject
+ tendency
+
+
+
+
+
+
+ And
+ and
+ 26046
+ 26049
+ CC
+ O
+
+
+ there
+ there
+ 26050
+ 26055
+ EX
+ O
+
+
+ is
+ be
+ 26056
+ 26058
+ VBZ
+ O
+
+
+ ,
+ ,
+ 26058
+ 26059
+ ,
+ O
+
+
+ of
+ of
+ 26060
+ 26062
+ IN
+ O
+
+
+ course
+ course
+ 26063
+ 26069
+ NN
+ O
+
+
+ ,
+ ,
+ 26069
+ 26070
+ ,
+ O
+
+
+ much
+ much
+ 26071
+ 26075
+ RB
+ O
+
+
+ that
+ that
+ 26076
+ 26080
+ IN
+ O
+
+
+ can
+ can
+ 26082
+ 26085
+ MD
+ O
+
+
+ be
+ be
+ 26086
+ 26088
+ VB
+ O
+
+
+ done
+ do
+ 26089
+ 26093
+ VBN
+ O
+
+
+ to
+ to
+ 26094
+ 26096
+ TO
+ O
+
+
+ protect
+ protect
+ 26097
+ 26104
+ VB
+ O
+
+
+ the
+ the
+ 26105
+ 26108
+ DT
+ O
+
+
+ environment
+ environment
+ 26109
+ 26120
+ NN
+ O
+
+
+ without
+ without
+ 26122
+ 26129
+ IN
+ O
+
+
+ costing
+ cost
+ 26130
+ 26137
+ VBG
+ O
+
+
+ a
+ a
+ 26138
+ 26139
+ DT
+ O
+
+
+ lot
+ lot
+ 26140
+ 26143
+ NN
+ O
+
+
+ of
+ of
+ 26144
+ 26146
+ IN
+ O
+
+
+ money
+ money
+ 26147
+ 26152
+ NN
+ O
+
+
+ .
+ .
+ 26152
+ 26153
+ .
+ O
+
+
+ (ROOT (S (CC And) (NP (EX there)) (VP (VBZ is) (, ,) (PP (IN of) (NP (NN course))) (, ,) (SBAR (RB much) (IN that) (S (VP (MD can) (VP (VB be) (VP (VBN done) (S (VP (TO to) (VP (VB protect) (NP (DT the) (NN environment)) (PP (IN without) (S (VP (VBG costing) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NN money)))))))))))))))) (. .)))
+
+
+ ROOT
+ is
+
+
+ is
+ And
+
+
+ is
+ there
+
+
+ is
+ of
+
+
+ of
+ course
+
+
+ done
+ much
+
+
+ done
+ that
+
+
+ done
+ can
+
+
+ done
+ be
+
+
+ is
+ done
+
+
+ protect
+ to
+
+
+ done
+ protect
+
+
+ environment
+ the
+
+
+ protect
+ environment
+
+
+ protect
+ without
+
+
+ without
+ costing
+
+
+ lot
+ a
+
+
+ costing
+ lot
+
+
+ lot
+ of
+
+
+ of
+ money
+
+
+
+
+ ROOT
+ is
+
+
+ is
+ And
+
+
+ is
+ there
+
+
+ is
+ course
+
+
+ done
+ much
+
+
+ done
+ that
+
+
+ done
+ can
+
+
+ done
+ be
+
+
+ is
+ done
+
+
+ protect
+ to
+
+
+ done
+ protect
+
+
+ environment
+ the
+
+
+ protect
+ environment
+
+
+ protect
+ costing
+
+
+ lot
+ a
+
+
+ costing
+ lot
+
+
+ lot
+ money
+
+
+
+
+ ROOT
+ is
+
+
+ is
+ And
+
+
+ is
+ there
+
+
+ is
+ course
+
+
+ done
+ much
+
+
+ done
+ that
+
+
+ done
+ can
+
+
+ done
+ be
+
+
+ is
+ done
+
+
+ protect
+ to
+
+
+ done
+ protect
+
+
+ environment
+ the
+
+
+ protect
+ environment
+
+
+ protect
+ costing
+
+
+ lot
+ a
+
+
+ costing
+ lot
+
+
+ lot
+ money
+
+
+
+
+
+
+ However
+ however
+ 26154
+ 26161
+ RB
+ O
+
+
+ ,
+ ,
+ 26161
+ 26162
+ ,
+ O
+
+
+ we
+ we
+ 26163
+ 26165
+ PRP
+ O
+
+
+ can
+ can
+ 26167
+ 26170
+ MD
+ O
+
+
+ not
+ not
+ 26170
+ 26173
+ RB
+ O
+
+
+ seriously
+ seriously
+ 26174
+ 26183
+ RB
+ O
+
+
+ address
+ address
+ 26184
+ 26191
+ VB
+ O
+
+
+ our
+ we
+ 26192
+ 26195
+ PRP$
+ O
+
+
+ environmental
+ environmental
+ 26196
+ 26209
+ JJ
+ O
+
+
+ crisis
+ crisis
+ 26211
+ 26217
+ NN
+ O
+
+
+ unless
+ unless
+ 26218
+ 26224
+ IN
+ O
+
+
+ we
+ we
+ 26225
+ 26227
+ PRP
+ O
+
+
+ are
+ be
+ 26228
+ 26231
+ VBP
+ O
+
+
+ also
+ also
+ 26232
+ 26236
+ RB
+ O
+
+
+ prepared
+ prepare
+ 26237
+ 26245
+ VBN
+ O
+
+
+ to
+ to
+ 26246
+ 26248
+ TO
+ O
+
+
+ address
+ address
+ 26249
+ 26256
+ VB
+ O
+
+
+ the
+ the
+ 26258
+ 26261
+ DT
+ O
+
+
+ need
+ need
+ 26262
+ 26266
+ NN
+ O
+
+
+ for
+ for
+ 26267
+ 26270
+ IN
+ O
+
+
+ major
+ major
+ 26271
+ 26276
+ JJ
+ O
+
+
+ new
+ new
+ 26277
+ 26280
+ JJ
+ O
+
+
+ resources
+ resource
+ 26281
+ 26290
+ NNS
+ O
+
+
+ .
+ .
+ 26290
+ 26291
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB However)) (, ,) (NP (PRP we)) (VP (MD can) (RB not) (ADVP (RB seriously)) (VP (VB address) (NP (PRP$ our) (JJ environmental) (NN crisis)) (SBAR (IN unless) (S (NP (PRP we)) (VP (VBP are) (ADVP (RB also)) (VP (VBN prepared) (S (VP (TO to) (VP (VB address) (NP (NP (DT the) (NN need)) (PP (IN for) (NP (JJ major) (JJ new) (NNS resources))))))))))))) (. .)))
+
+
+ ROOT
+ address
+
+
+ address
+ However
+
+
+ address
+ we
+
+
+ address
+ can
+
+
+ address
+ not
+
+
+ address
+ seriously
+
+
+ crisis
+ our
+
+
+ crisis
+ environmental
+
+
+ address
+ crisis
+
+
+ prepared
+ unless
+
+
+ prepared
+ we
+
+
+ prepared
+ are
+
+
+ prepared
+ also
+
+
+ address
+ prepared
+
+
+ address
+ to
+
+
+ prepared
+ address
+
+
+ need
+ the
+
+
+ address
+ need
+
+
+ need
+ for
+
+
+ resources
+ major
+
+
+ resources
+ new
+
+
+ for
+ resources
+
+
+
+
+ ROOT
+ address
+
+
+ address
+ However
+
+
+ address
+ we
+
+
+ address
+ can
+
+
+ address
+ not
+
+
+ address
+ seriously
+
+
+ crisis
+ our
+
+
+ crisis
+ environmental
+
+
+ address
+ crisis
+
+
+ prepared
+ unless
+
+
+ prepared
+ we
+
+
+ prepared
+ are
+
+
+ prepared
+ also
+
+
+ address
+ prepared
+
+
+ address
+ to
+
+
+ prepared
+ address
+
+
+ need
+ the
+
+
+ address
+ need
+
+
+ resources
+ major
+
+
+ resources
+ new
+
+
+ need
+ resources
+
+
+
+
+ ROOT
+ address
+
+
+ address
+ However
+
+
+ address
+ we
+
+
+ address
+ can
+
+
+ address
+ not
+
+
+ address
+ seriously
+
+
+ crisis
+ our
+
+
+ crisis
+ environmental
+
+
+ address
+ crisis
+
+
+ prepared
+ unless
+
+
+ prepared
+ we
+
+
+ prepared
+ are
+
+
+ prepared
+ also
+
+
+ address
+ prepared
+
+
+ address
+ to
+
+
+ prepared
+ address
+
+
+ need
+ the
+
+
+ address
+ need
+
+
+ resources
+ major
+
+
+ resources
+ new
+
+
+ need
+ resources
+
+
+
+
+
+
+ Hence
+ hence
+ 26292
+ 26297
+ RB
+ O
+
+
+ the
+ the
+ 26299
+ 26302
+ DT
+ O
+
+
+ Importance
+ importance
+ 26303
+ 26313
+ NN
+ O
+
+
+ I
+ I
+ 26314
+ 26315
+ PRP
+ O
+
+
+ have
+ have
+ 26316
+ 26320
+ VBP
+ O
+
+
+ given
+ give
+ 26321
+ 26326
+ VBN
+ O
+
+
+ to
+ to
+ 26327
+ 26329
+ TO
+ O
+
+
+ means
+ means
+ 26330
+ 26335
+ NNS
+ O
+
+
+ for
+ for
+ 26336
+ 26339
+ IN
+ O
+
+
+ finding
+ find
+ 26341
+ 26348
+ VBG
+ O
+
+
+ such
+ such
+ 26349
+ 26353
+ JJ
+ O
+
+
+ resources
+ resource
+ 26354
+ 26363
+ NNS
+ O
+
+
+ .
+ .
+ 26363
+ 26364
+ .
+ O
+
+
+ (ROOT (FRAG (ADVP (RB Hence)) (NP (DT the) (NN Importance) (SBAR (S (NP (PRP I)) (VP (VBP have) (VP (VBN given) (PP (TO to) (NP (NNS means))) (PP (IN for) (S (VP (VBG finding) (NP (JJ such) (NNS resources)))))))))) (. .)))
+
+
+ ROOT
+ Importance
+
+
+ Importance
+ Hence
+
+
+ Importance
+ the
+
+
+ given
+ I
+
+
+ given
+ have
+
+
+ Importance
+ given
+
+
+ given
+ to
+
+
+ to
+ means
+
+
+ given
+ for
+
+
+ for
+ finding
+
+
+ resources
+ such
+
+
+ finding
+ resources
+
+
+
+
+ ROOT
+ Importance
+
+
+ Importance
+ Hence
+
+
+ Importance
+ the
+
+
+ given
+ I
+
+
+ given
+ have
+
+
+ Importance
+ given
+
+
+ given
+ means
+
+
+ given
+ finding
+
+
+ resources
+ such
+
+
+ finding
+ resources
+
+
+
+
+ ROOT
+ Importance
+
+
+ Importance
+ Hence
+
+
+ Importance
+ the
+
+
+ given
+ I
+
+
+ given
+ have
+
+
+ Importance
+ given
+
+
+ given
+ means
+
+
+ given
+ finding
+
+
+ resources
+ such
+
+
+ finding
+ resources
+
+
+
+
+
+
+ As
+ as
+ 26368
+ 26370
+ IN
+ O
+
+
+ a
+ a
+ 26371
+ 26372
+ DT
+ O
+
+
+ planet
+ planet
+ 26373
+ 26379
+ NN
+ O
+
+
+ we
+ we
+ 26380
+ 26382
+ PRP
+ O
+
+
+ face
+ face
+ 26383
+ 26387
+ VBP
+ O
+
+
+ a
+ a
+ 26388
+ 26389
+ DT
+ O
+
+
+ threat
+ threat
+ 26390
+ 26396
+ NN
+ O
+
+
+ to
+ to
+ 26397
+ 26399
+ TO
+ O
+
+
+ our
+ we
+ 26400
+ 26403
+ PRP$
+ O
+
+
+ surviv
+ surviv
+ 26404
+ 26410
+ NN
+ O
+
+
+ -
+ -
+ 26410
+ 26411
+ :
+ O
+
+
+ al
+ al
+ 26415
+ 26417
+ NNP
+ O
+
+
+ comparable
+ comparable
+ 26418
+ 26428
+ JJ
+ O
+
+
+ to
+ to
+ 26429
+ 26431
+ TO
+ O
+
+
+ the
+ the
+ 26432
+ 26435
+ DT
+ O
+
+
+ threat
+ threat
+ 26436
+ 26442
+ NN
+ O
+
+
+ a
+ a
+ 26443
+ 26444
+ DT
+ O
+
+
+ foreign
+ foreign
+ 26445
+ 26452
+ JJ
+ O
+
+
+ enemy
+ enemy
+ 26453
+ 26458
+ NN
+ O
+
+
+ can
+ can
+ 26462
+ 26465
+ MD
+ O
+
+
+ pose
+ pose
+ 26466
+ 26470
+ VB
+ O
+
+
+ to
+ to
+ 26471
+ 26473
+ TO
+ O
+
+
+ national
+ national
+ 26474
+ 26482
+ JJ
+ O
+
+
+ survival
+ survival
+ 26483
+ 26491
+ NN
+ O
+
+
+ .
+ .
+ 26491
+ 26492
+ .
+ O
+
+
+ (ROOT (S (PP (IN As) (NP (DT a) (NN planet))) (NP (PRP we)) (VP (VBP face) (NP (DT a) (NN threat)) (PP (TO to) (NP (PRP$ our) (NN surviv))) (: -) (S (NP (NNP al)) (ADJP (JJ comparable) (PP (TO to) (NP (NP (DT the) (NN threat)) (SBAR (S (NP (DT a) (JJ foreign) (NN enemy)) (VP (MD can) (VP (VB pose) (PP (TO to) (NP (JJ national) (NN survival)))))))))))) (. .)))
+
+
+ ROOT
+ face
+
+
+ face
+ As
+
+
+ planet
+ a
+
+
+ As
+ planet
+
+
+ face
+ we
+
+
+ threat
+ a
+
+
+ face
+ threat
+
+
+ face
+ to
+
+
+ surviv
+ our
+
+
+ to
+ surviv
+
+
+ comparable
+ al
+
+
+ face
+ comparable
+
+
+ comparable
+ to
+
+
+ threat
+ the
+
+
+ to
+ threat
+
+
+ enemy
+ a
+
+
+ enemy
+ foreign
+
+
+ pose
+ enemy
+
+
+ pose
+ can
+
+
+ threat
+ pose
+
+
+ pose
+ to
+
+
+ survival
+ national
+
+
+ to
+ survival
+
+
+
+
+ ROOT
+ face
+
+
+ planet
+ a
+
+
+ face
+ planet
+
+
+ face
+ we
+
+
+ threat
+ a
+
+
+ face
+ threat
+
+
+ surviv
+ our
+
+
+ face
+ surviv
+
+
+ comparable
+ al
+
+
+ face
+ comparable
+
+
+ threat
+ the
+
+
+ comparable
+ threat
+
+
+ enemy
+ a
+
+
+ enemy
+ foreign
+
+
+ pose
+ enemy
+
+
+ pose
+ can
+
+
+ threat
+ pose
+
+
+ survival
+ national
+
+
+ pose
+ survival
+
+
+
+
+ ROOT
+ face
+
+
+ planet
+ a
+
+
+ face
+ planet
+
+
+ face
+ we
+
+
+ threat
+ a
+
+
+ face
+ threat
+
+
+ surviv
+ our
+
+
+ face
+ surviv
+
+
+ comparable
+ al
+
+
+ face
+ comparable
+
+
+ threat
+ the
+
+
+ comparable
+ threat
+
+
+ enemy
+ a
+
+
+ enemy
+ foreign
+
+
+ pose
+ enemy
+
+
+ pose
+ can
+
+
+ threat
+ pose
+
+
+ survival
+ national
+
+
+ pose
+ survival
+
+
+
+
+
+
+ New
+ New
+ 26493
+ 26496
+ NNP
+ O
+
+
+ ideas
+ idea
+ 26497
+ 26502
+ NNS
+ O
+
+
+ and
+ and
+ 26503
+ 26506
+ CC
+ O
+
+
+ cost-free
+ cost-free
+ 26508
+ 26517
+ JJ
+ O
+
+
+ measures
+ measure
+ 26518
+ 26526
+ NNS
+ O
+
+
+ have
+ have
+ 26527
+ 26531
+ VBP
+ O
+
+
+ their
+ they
+ 26532
+ 26537
+ PRP$
+ O
+
+
+ place
+ place
+ 26538
+ 26543
+ NN
+ O
+
+
+ .
+ .
+ 26543
+ 26544
+ .
+ O
+
+
+ (ROOT (S (NP (NP (NNP New) (NNS ideas)) (CC and) (NP (JJ cost-free) (NNS measures))) (VP (VBP have) (NP (PRP$ their) (NN place))) (. .)))
+
+
+ ROOT
+ have
+
+
+ ideas
+ New
+
+
+ have
+ ideas
+
+
+ ideas
+ and
+
+
+ measures
+ cost-free
+
+
+ ideas
+ measures
+
+
+ place
+ their
+
+
+ have
+ place
+
+
+
+
+ ROOT
+ have
+
+
+ ideas
+ New
+
+
+ have
+ ideas
+
+
+ measures
+ cost-free
+
+
+ ideas
+ measures
+
+
+ place
+ their
+
+
+ have
+ place
+
+
+
+
+ ROOT
+ have
+
+
+ ideas
+ New
+
+
+ have
+ ideas
+
+
+ measures
+ cost-free
+
+
+ ideas
+ measures
+
+
+ have
+ measures
+
+
+ place
+ their
+
+
+ have
+ place
+
+
+
+
+
+
+ There
+ there
+ 26545
+ 26550
+ EX
+ O
+
+
+ is
+ be
+ 26552
+ 26554
+ VBZ
+ O
+
+
+ ,
+ ,
+ 26554
+ 26555
+ ,
+ O
+
+
+ however
+ however
+ 26556
+ 26563
+ RB
+ O
+
+
+ ,
+ ,
+ 26563
+ 26564
+ ,
+ O
+
+
+ no
+ no
+ 26565
+ 26567
+ DT
+ O
+
+
+ substitute
+ substitute
+ 26568
+ 26578
+ NN
+ O
+
+
+ for
+ for
+ 26579
+ 26582
+ IN
+ O
+
+
+ cold
+ cold
+ 26583
+ 26587
+ JJ
+ O
+
+
+ ,
+ ,
+ 26587
+ 26588
+ ,
+ O
+
+
+ hard
+ hard
+ 26589
+ 26593
+ JJ
+ O
+
+
+ cash
+ cash
+ 26595
+ 26599
+ NN
+ O
+
+
+ .
+ .
+ 26599
+ 26600
+ .
+ O
+
+
+ (ROOT (S (NP (EX There)) (VP (VBZ is) (, ,) (ADVP (RB however)) (, ,) (NP (NP (DT no) (NN substitute)) (PP (IN for) (NP (JJ cold) (, ,) (JJ hard) (NN cash))))) (. .)))
+
+
+ ROOT
+ is
+
+
+ is
+ There
+
+
+ is
+ however
+
+
+ substitute
+ no
+
+
+ is
+ substitute
+
+
+ substitute
+ for
+
+
+ cash
+ cold
+
+
+ cash
+ hard
+
+
+ for
+ cash
+
+
+
+
+ ROOT
+ is
+
+
+ is
+ There
+
+
+ is
+ however
+
+
+ substitute
+ no
+
+
+ is
+ substitute
+
+
+ cash
+ cold
+
+
+ cash
+ hard
+
+
+ substitute
+ cash
+
+
+
+
+ ROOT
+ is
+
+
+ is
+ There
+
+
+ is
+ however
+
+
+ substitute
+ no
+
+
+ is
+ substitute
+
+
+ cash
+ cold
+
+
+ cash
+ hard
+
+
+ substitute
+ cash
+
+
+
+
+
+
+ Fortunately
+ fortunately
+ 26601
+ 26612
+ RB
+ O
+
+
+ ,
+ ,
+ 26612
+ 26613
+ ,
+ O
+
+
+ the
+ the
+ 26614
+ 26617
+ DT
+ O
+
+
+ prospective
+ prospective
+ 26618
+ 26629
+ JJ
+ O
+
+
+ peace
+ peace
+ 26630
+ 26635
+ NN
+ O
+
+
+ dividend
+ dividend
+ 26637
+ 26645
+ NN
+ O
+
+
+ provides
+ provide
+ 26646
+ 26654
+ VBZ
+ O
+
+
+ a
+ a
+ 26655
+ 26656
+ DT
+ O
+
+
+ source
+ source
+ 26657
+ 26663
+ NN
+ O
+
+
+ for
+ for
+ 26664
+ 26667
+ IN
+ O
+
+
+ such
+ such
+ 26668
+ 26672
+ JJ
+ O
+
+
+ cash
+ cash
+ 26673
+ 26677
+ NN
+ O
+
+
+ .
+ .
+ 26677
+ 26678
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB Fortunately)) (, ,) (NP (DT the) (JJ prospective) (NN peace) (NN dividend)) (VP (VBZ provides) (NP (NP (DT a) (NN source)) (PP (IN for) (NP (JJ such) (NN cash))))) (. .)))
+
+
+ ROOT
+ provides
+
+
+ provides
+ Fortunately
+
+
+ dividend
+ the
+
+
+ dividend
+ prospective
+
+
+ dividend
+ peace
+
+
+ provides
+ dividend
+
+
+ source
+ a
+
+
+ provides
+ source
+
+
+ source
+ for
+
+
+ cash
+ such
+
+
+ for
+ cash
+
+
+
+
+ ROOT
+ provides
+
+
+ provides
+ Fortunately
+
+
+ dividend
+ the
+
+
+ dividend
+ prospective
+
+
+ dividend
+ peace
+
+
+ provides
+ dividend
+
+
+ source
+ a
+
+
+ provides
+ source
+
+
+ cash
+ such
+
+
+ source
+ cash
+
+
+
+
+ ROOT
+ provides
+
+
+ provides
+ Fortunately
+
+
+ dividend
+ the
+
+
+ dividend
+ prospective
+
+
+ dividend
+ peace
+
+
+ provides
+ dividend
+
+
+ source
+ a
+
+
+ provides
+ source
+
+
+ cash
+ such
+
+
+ source
+ cash
+
+
+
+
+
+
+ This
+ this
+ 26682
+ 26686
+ DT
+ O
+
+
+ said
+ say
+ 26687
+ 26691
+ VBD
+ O
+
+
+ ,
+ ,
+ 26691
+ 26692
+ ,
+ O
+
+
+ I
+ I
+ 26693
+ 26694
+ PRP
+ O
+
+
+ would
+ would
+ 26695
+ 26700
+ MD
+ O
+
+
+ like
+ like
+ 26701
+ 26705
+ VB
+ O
+
+
+ to
+ to
+ 26706
+ 26708
+ TO
+ O
+
+
+ put
+ put
+ 26709
+ 26712
+ VB
+ O
+
+
+ in
+ in
+ 26713
+ 26715
+ RP
+ O
+
+
+ a
+ a
+ 26716
+ 26717
+ DT
+ O
+
+
+ word
+ word
+ 26718
+ 26722
+ NN
+ O
+
+
+ on
+ on
+ 26723
+ 26725
+ IN
+ O
+
+
+ behalf
+ behalf
+ 26727
+ 26733
+ NN
+ O
+
+
+ of
+ of
+ 26734
+ 26736
+ IN
+ O
+
+
+ several
+ several
+ 26737
+ 26744
+ JJ
+ O
+
+
+ relatively
+ relatively
+ 26745
+ 26755
+ RB
+ O
+
+
+ low
+ low
+ 26756
+ 26759
+ JJ
+ O
+
+
+ cost
+ cost
+ 26760
+ 26764
+ NN
+ O
+
+
+ environ
+ environ
+ 26765
+ 26772
+ NN
+ O
+
+
+ -
+ -
+ 26772
+ 26773
+ :
+ O
+
+
+ mental
+ mental
+ 26775
+ 26781
+ JJ
+ O
+
+
+ Initiatives
+ initiative
+ 26782
+ 26793
+ NNS
+ O
+
+
+ with
+ with
+ 26794
+ 26798
+ IN
+ O
+
+
+ which
+ which
+ 26799
+ 26804
+ WDT
+ O
+
+
+ I
+ I
+ 26805
+ 26806
+ PRP
+ O
+
+
+ personally
+ personally
+ 26807
+ 26817
+ RB
+ O
+
+
+ have
+ have
+ 26819
+ 26823
+ VBP
+ O
+
+
+ long
+ long
+ 26824
+ 26828
+ RB
+ O
+
+
+ been
+ be
+ 26829
+ 26833
+ VBN
+ O
+
+
+ associated
+ associate
+ 26834
+ 26844
+ VBN
+ O
+
+
+ .
+ .
+ 26844
+ 26845
+ .
+ O
+
+
+ (ROOT (S (S (NP (DT This)) (VP (VBD said))) (, ,) (NP (PRP I)) (VP (MD would) (VP (VB like) (S (VP (TO to) (VP (VB put) (PRT (RP in)) (NP (NP (DT a) (NN word)) (PP (IN on) (NP (NP (NN behalf)) (PP (IN of) (NP (NP (JJ several) (ADJP (RB relatively) (JJ low) (NN cost)) (NN environ)) (: -) (NP (NP (JJ mental) (NNS Initiatives)) (SBAR (WHPP (IN with) (WHNP (WDT which))) (S (NP (PRP I)) (ADVP (RB personally)) (VP (VBP have) (ADVP (RB long)) (VP (VBN been) (VP (VBN associated))))))))))))))))) (. .)))
+
+
+ ROOT
+ like
+
+
+ said
+ This
+
+
+ like
+ said
+
+
+ like
+ I
+
+
+ like
+ would
+
+
+ put
+ to
+
+
+ like
+ put
+
+
+ put
+ in
+
+
+ word
+ a
+
+
+ put
+ word
+
+
+ word
+ on
+
+
+ on
+ behalf
+
+
+ behalf
+ of
+
+
+ environ
+ several
+
+
+ cost
+ relatively
+
+
+ cost
+ low
+
+
+ environ
+ cost
+
+
+ of
+ environ
+
+
+ Initiatives
+ mental
+
+
+ environ
+ Initiatives
+
+
+ associated
+ with
+
+
+ with
+ which
+
+
+ associated
+ I
+
+
+ associated
+ personally
+
+
+ associated
+ have
+
+
+ associated
+ long
+
+
+ associated
+ been
+
+
+ Initiatives
+ associated
+
+
+
+
+ ROOT
+ like
+
+
+ said
+ This
+
+
+ like
+ said
+
+
+ like
+ I
+
+
+ like
+ would
+
+
+ put
+ to
+
+
+ like
+ put
+
+
+ put
+ in
+
+
+ word
+ a
+
+
+ put
+ word
+
+
+ environ
+ several
+
+
+ cost
+ relatively
+
+
+ cost
+ low
+
+
+ environ
+ cost
+
+
+ word
+ environ
+
+
+ Initiatives
+ mental
+
+
+ environ
+ Initiatives
+
+
+ associated
+ which
+
+
+ associated
+ I
+
+
+ associated
+ personally
+
+
+ associated
+ have
+
+
+ associated
+ long
+
+
+ associated
+ been
+
+
+ Initiatives
+ associated
+
+
+
+
+ ROOT
+ like
+
+
+ said
+ This
+
+
+ like
+ said
+
+
+ like
+ I
+
+
+ like
+ would
+
+
+ put
+ to
+
+
+ like
+ put
+
+
+ put
+ in
+
+
+ word
+ a
+
+
+ put
+ word
+
+
+ environ
+ several
+
+
+ cost
+ relatively
+
+
+ cost
+ low
+
+
+ environ
+ cost
+
+
+ word
+ environ
+
+
+ Initiatives
+ mental
+
+
+ environ
+ Initiatives
+
+
+ associated
+ which
+
+
+ associated
+ I
+
+
+ associated
+ personally
+
+
+ associated
+ have
+
+
+ associated
+ long
+
+
+ associated
+ been
+
+
+ Initiatives
+ associated
+
+
+
+
+
+
+ On
+ on
+ 26846
+ 26848
+ IN
+ O
+
+
+ several
+ several
+ 26849
+ 26856
+ JJ
+ O
+
+
+ occa
+ occa
+ 26857
+ 26861
+ NN
+ O
+
+
+ -
+ -
+ 26861
+ 26862
+ :
+ O
+
+
+ sions
+ sion
+ 26864
+ 26869
+ NNS
+ O
+
+
+ I
+ I
+ 26870
+ 26871
+ PRP
+ O
+
+
+ have
+ have
+ 26872
+ 26876
+ VBP
+ O
+
+
+ persuaded
+ persuade
+ 26877
+ 26886
+ VBN
+ O
+
+
+ my
+ my
+ 26887
+ 26889
+ PRP$
+ O
+
+
+ Senate
+ Senate
+ 26890
+ 26896
+ NNP
+ ORGANIZATION
+
+
+ col
+ col
+ 26897
+ 26900
+ NN
+ O
+
+
+ -
+ -
+ 26900
+ 26901
+ :
+ O
+
+
+ leagues
+ league
+ 26903
+ 26910
+ NNS
+ O
+
+
+ to
+ to
+ 26911
+ 26913
+ TO
+ O
+
+
+ endorse
+ endorse
+ 26914
+ 26921
+ VB
+ O
+
+
+ resolutions
+ resolution
+ 26922
+ 26933
+ NNS
+ O
+
+
+ containing
+ contain
+ 26934
+ 26944
+ VBG
+ O
+
+
+ draft
+ draft
+ 26946
+ 26951
+ NN
+ O
+
+
+ treaty
+ treaty
+ 26952
+ 26958
+ NN
+ O
+
+
+ language
+ language
+ 26959
+ 26967
+ NN
+ O
+
+
+ .
+ .
+ 26967
+ 26968
+ .
+ O
+
+
+ (ROOT (FRAG (PP (IN On) (NP (JJ several) (NN occa))) (: -) (NP (NP (NNS sions)) (SBAR (S (NP (PRP I)) (VP (VBP have) (VP (VBN persuaded) (NP (PRP$ my) (NNP Senate) (NN col)) (: -) (S (NP (NNS leagues)) (VP (TO to) (VP (VB endorse) (NP (NP (NNS resolutions)) (VP (VBG containing) (NP (NN draft) (NN treaty) (NN language)))))))))))) (. .)))
+
+
+ ROOT
+ sions
+
+
+ sions
+ On
+
+
+ occa
+ several
+
+
+ On
+ occa
+
+
+ persuaded
+ I
+
+
+ persuaded
+ have
+
+
+ sions
+ persuaded
+
+
+ col
+ my
+
+
+ col
+ Senate
+
+
+ persuaded
+ col
+
+
+ endorse
+ leagues
+
+
+ endorse
+ to
+
+
+ persuaded
+ endorse
+
+
+ endorse
+ resolutions
+
+
+ resolutions
+ containing
+
+
+ language
+ draft
+
+
+ language
+ treaty
+
+
+ containing
+ language
+
+
+
+
+ ROOT
+ sions
+
+
+ occa
+ several
+
+
+ sions
+ occa
+
+
+ persuaded
+ I
+
+
+ persuaded
+ have
+
+
+ sions
+ persuaded
+
+
+ col
+ my
+
+
+ col
+ Senate
+
+
+ persuaded
+ col
+
+
+ endorse
+ leagues
+
+
+ endorse
+ to
+
+
+ persuaded
+ endorse
+
+
+ endorse
+ resolutions
+
+
+ resolutions
+ containing
+
+
+ language
+ draft
+
+
+ language
+ treaty
+
+
+ containing
+ language
+
+
+
+
+ ROOT
+ sions
+
+
+ occa
+ several
+
+
+ sions
+ occa
+
+
+ persuaded
+ I
+
+
+ persuaded
+ have
+
+
+ sions
+ persuaded
+
+
+ col
+ my
+
+
+ col
+ Senate
+
+
+ persuaded
+ col
+
+
+ endorse
+ leagues
+
+
+ endorse
+ to
+
+
+ persuaded
+ endorse
+
+
+ endorse
+ resolutions
+
+
+ resolutions
+ containing
+
+
+ language
+ draft
+
+
+ language
+ treaty
+
+
+ containing
+ language
+
+
+
+
+
+
+ I
+ I
+ 26969
+ 26970
+ PRP
+ O
+
+
+ am
+ be
+ 26971
+ 26973
+ VBP
+ O
+
+
+ pleased
+ pleased
+ 26974
+ 26981
+ JJ
+ O
+
+
+ to
+ to
+ 26982
+ 26984
+ TO
+ O
+
+
+ say
+ say
+ 26985
+ 26988
+ VB
+ O
+
+
+ that
+ that
+ 26990
+ 26994
+ IN
+ O
+
+
+ two
+ two
+ 26995
+ 26998
+ CD
+ NUMBER
+ 2.0
+
+
+ of
+ of
+ 26999
+ 27001
+ IN
+ O
+
+
+ these
+ these
+ 27002
+ 27007
+ DT
+ O
+
+
+ efforts
+ effort
+ 27008
+ 27015
+ NNS
+ O
+
+
+ were
+ be
+ 27016
+ 27020
+ VBD
+ O
+
+
+ ,
+ ,
+ 27020
+ 27021
+ ,
+ O
+
+
+ In
+ in
+ 27022
+ 27024
+ IN
+ O
+
+
+ fact
+ fact
+ 27025
+ 27029
+ NN
+ O
+
+
+ ,
+ ,
+ 27029
+ 27030
+ ,
+ O
+
+
+ con
+ con
+ 27031
+ 27034
+ NN
+ O
+
+
+ -
+ -
+ 27034
+ 27035
+ :
+ O
+
+
+ verted
+ vert
+ 27037
+ 27043
+ VBN
+ O
+
+
+ from
+ from
+ 27044
+ 27048
+ IN
+ O
+
+
+ Senate
+ Senate
+ 27049
+ 27055
+ NNP
+ ORGANIZATION
+
+
+ resolution
+ resolution
+ 27056
+ 27066
+ NN
+ O
+
+
+ into
+ into
+ 27067
+ 27071
+ IN
+ O
+
+
+ an
+ a
+ 27072
+ 27074
+ DT
+ O
+
+
+ actual
+ actual
+ 27075
+ 27081
+ JJ
+ O
+
+
+ treaty
+ treaty
+ 27083
+ 27089
+ NN
+ O
+
+
+ now
+ now
+ 27090
+ 27093
+ RB
+ DATE
+ PRESENT_REF
+ PRESENT_REF
+
+
+ In
+ in
+ 27094
+ 27096
+ IN
+ O
+
+
+ force
+ force
+ 27097
+ 27102
+ NN
+ O
+
+
+ .
+ .
+ 27102
+ 27103
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (VBP am) (ADJP (JJ pleased) (S (VP (TO to) (VP (VB say) (SBAR (IN that) (S (NP (NP (CD two)) (PP (IN of) (NP (DT these) (NNS efforts)))) (VP (VP (VBD were)) (, ,) (VP (PP (IN In) (NP (NN fact))) (, ,) (NP (NN con))) (: -) (VP (VBN verted) (PP (IN from) (NP (NNP Senate) (NN resolution)))) (PP (IN into) (NP (DT an) (JJ actual) (NN treaty)))))))))) (PRN (ADVP (RB now)) (PP (IN In) (NP (NN force))))) (. .)))
+
+
+ ROOT
+ pleased
+
+
+ pleased
+ I
+
+
+ pleased
+ am
+
+
+ say
+ to
+
+
+ pleased
+ say
+
+
+ were
+ that
+
+
+ were
+ two
+
+
+ two
+ of
+
+
+ efforts
+ these
+
+
+ of
+ efforts
+
+
+ say
+ were
+
+
+ con
+ In
+
+
+ In
+ fact
+
+
+ were
+ con
+
+
+ were
+ verted
+
+
+ verted
+ from
+
+
+ resolution
+ Senate
+
+
+ from
+ resolution
+
+
+ were
+ into
+
+
+ treaty
+ an
+
+
+ treaty
+ actual
+
+
+ into
+ treaty
+
+
+ In
+ now
+
+
+ pleased
+ In
+
+
+ In
+ force
+
+
+
+
+ ROOT
+ pleased
+
+
+ pleased
+ I
+
+
+ pleased
+ am
+
+
+ say
+ to
+
+
+ pleased
+ say
+
+
+ were
+ that
+
+
+ were
+ two
+
+
+ efforts
+ these
+
+
+ two
+ efforts
+
+
+ say
+ were
+
+
+ con
+ fact
+
+
+ were
+ con
+
+
+ were
+ verted
+
+
+ resolution
+ Senate
+
+
+ verted
+ resolution
+
+
+ treaty
+ an
+
+
+ treaty
+ actual
+
+
+ were
+ treaty
+
+
+ In
+ now
+
+
+ pleased
+ In
+
+
+ In
+ force
+
+
+
+
+ ROOT
+ pleased
+
+
+ pleased
+ I
+
+
+ pleased
+ am
+
+
+ say
+ to
+
+
+ pleased
+ say
+
+
+ were
+ that
+
+
+ were
+ two
+
+
+ efforts
+ these
+
+
+ two
+ efforts
+
+
+ say
+ were
+
+
+ con
+ fact
+
+
+ were
+ con
+
+
+ were
+ verted
+
+
+ resolution
+ Senate
+
+
+ verted
+ resolution
+
+
+ treaty
+ an
+
+
+ treaty
+ actual
+
+
+ were
+ treaty
+
+
+ In
+ now
+
+
+ pleased
+ In
+
+
+ In
+ force
+
+
+
+
+
+
+ These
+ these
+ 27104
+ 27109
+ DT
+ O
+
+
+ are
+ be
+ 27110
+ 27113
+ VBP
+ O
+
+
+ a
+ a
+ 27114
+ 27115
+ DT
+ O
+
+
+ treaty
+ treaty
+ 27116
+ 27122
+ NN
+ O
+
+
+ ban
+ ban
+ 27123
+ 27126
+ NN
+ O
+
+
+ -
+ -
+ 27126
+ 27127
+ :
+ O
+
+
+ ning
+ ning
+ 27129
+ 27133
+ JJ
+ O
+
+
+ tile
+ tile
+ 27134
+ 27138
+ NN
+ O
+
+
+ emplacement
+ emplacement
+ 27139
+ 27150
+ NN
+ O
+
+
+ of
+ of
+ 27151
+ 27153
+ IN
+ O
+
+
+ weapons
+ weapon
+ 27154
+ 27161
+ NNS
+ O
+
+
+ of
+ of
+ 27162
+ 27164
+ IN
+ O
+
+
+ mass
+ mass
+ 27165
+ 27169
+ NN
+ O
+
+
+ destruction
+ destruction
+ 27171
+ 27182
+ NN
+ O
+
+
+ on
+ on
+ 27183
+ 27185
+ IN
+ O
+
+
+ the
+ the
+ 27186
+ 27189
+ DT
+ O
+
+
+ seabed
+ seab
+ 27190
+ 27196
+ VBN
+ O
+
+
+ floor
+ floor
+ 27197
+ 27202
+ NN
+ O
+
+
+ and
+ and
+ 27203
+ 27206
+ CC
+ O
+
+
+ a
+ a
+ 27207
+ 27208
+ DT
+ O
+
+
+ treaty
+ treaty
+ 27209
+ 27215
+ NN
+ O
+
+
+ banning
+ ban
+ 27217
+ 27224
+ VBG
+ O
+
+
+ the
+ the
+ 27225
+ 27228
+ DT
+ O
+
+
+ use
+ use
+ 27229
+ 27232
+ NN
+ O
+
+
+ of
+ of
+ 27233
+ 27235
+ IN
+ O
+
+
+ environmental
+ environmental
+ 27236
+ 27249
+ JJ
+ O
+
+
+ modifica
+ modifica
+ 27250
+ 27258
+ NN
+ O
+
+
+ -
+ -
+ 27258
+ 27259
+ :
+ O
+
+
+ tion
+ tion
+ 27261
+ 27265
+ NN
+ O
+
+
+ techinques
+ techinque
+ 27266
+ 27276
+ NNS
+ O
+
+
+ In
+ in
+ 27277
+ 27279
+ IN
+ O
+
+
+ warfare
+ warfare
+ 27280
+ 27287
+ NN
+ O
+
+
+ .
+ .
+ 27287
+ 27288
+ .
+ O
+
+
+ (ROOT (S (S (NP (DT These)) (VP (VBP are) (NP (NP (NP (DT a) (NN treaty) (NN ban)) (: -) (NP (NP (JJ ning) (NN tile) (NN emplacement)) (PP (IN of) (NP (NP (NNS weapons)) (PP (IN of) (NP (NP (NN mass) (NN destruction)) (PP (IN on) (NP (DT the) (S (VP (VBN seabed))) (NN floor))))))))) (CC and) (NP (NP (DT a) (NN treaty)) (VP (VBG banning) (NP (NP (DT the) (NN use)) (PP (IN of) (NP (JJ environmental) (NN modifica))))))))) (: -) (S (NP (NN tion) (NNS techinques)) (PP (IN In) (NP (NN warfare)))) (. .)))
+
+
+ ROOT
+ ban
+
+
+ ban
+ These
+
+
+ ban
+ are
+
+
+ ban
+ a
+
+
+ ban
+ treaty
+
+
+ emplacement
+ ning
+
+
+ emplacement
+ tile
+
+
+ ban
+ emplacement
+
+
+ emplacement
+ of
+
+
+ of
+ weapons
+
+
+ weapons
+ of
+
+
+ destruction
+ mass
+
+
+ of
+ destruction
+
+
+ destruction
+ on
+
+
+ floor
+ the
+
+
+ floor
+ seabed
+
+
+ on
+ floor
+
+
+ ban
+ and
+
+
+ treaty
+ a
+
+
+ ban
+ treaty
+
+
+ treaty
+ banning
+
+
+ use
+ the
+
+
+ banning
+ use
+
+
+ use
+ of
+
+
+ modifica
+ environmental
+
+
+ of
+ modifica
+
+
+ techinques
+ tion
+
+
+ ban
+ techinques
+
+
+ techinques
+ In
+
+
+ In
+ warfare
+
+
+
+
+ ROOT
+ ban
+
+
+ ban
+ These
+
+
+ ban
+ are
+
+
+ ban
+ a
+
+
+ ban
+ treaty
+
+
+ emplacement
+ ning
+
+
+ emplacement
+ tile
+
+
+ ban
+ emplacement
+
+
+ emplacement
+ weapons
+
+
+ destruction
+ mass
+
+
+ weapons
+ destruction
+
+
+ floor
+ the
+
+
+ floor
+ seabed
+
+
+ destruction
+ floor
+
+
+ treaty
+ a
+
+
+ ban
+ treaty
+
+
+ treaty
+ banning
+
+
+ use
+ the
+
+
+ banning
+ use
+
+
+ modifica
+ environmental
+
+
+ use
+ modifica
+
+
+ techinques
+ tion
+
+
+ ban
+ techinques
+
+
+ techinques
+ In
+
+
+ In
+ warfare
+
+
+
+
+ ROOT
+ ban
+
+
+ ban
+ These
+
+
+ ban
+ are
+
+
+ ban
+ a
+
+
+ ban
+ treaty
+
+
+ emplacement
+ ning
+
+
+ emplacement
+ tile
+
+
+ ban
+ emplacement
+
+
+ emplacement
+ weapons
+
+
+ destruction
+ mass
+
+
+ weapons
+ destruction
+
+
+ floor
+ the
+
+
+ floor
+ seabed
+
+
+ destruction
+ floor
+
+
+ treaty
+ a
+
+
+ ban
+ treaty
+
+
+ treaty
+ banning
+
+
+ use
+ the
+
+
+ banning
+ use
+
+
+ modifica
+ environmental
+
+
+ use
+ modifica
+
+
+ techinques
+ tion
+
+
+ ban
+ techinques
+
+
+ techinques
+ In
+
+
+ In
+ warfare
+
+
+
+
+
+
+ In
+ in
+ 27292
+ 27294
+ IN
+ O
+
+
+ 1977
+ 1977
+ 27295
+ 27299
+ CD
+ DATE
+ 1977
+ 1977
+
+
+ I
+ I
+ 27300
+ 27301
+ PRP
+ O
+
+
+ put
+ put
+ 27302
+ 27305
+ VBD
+ O
+
+
+ forward
+ forward
+ 27306
+ 27313
+ RB
+ O
+
+
+ draft
+ draft
+ 27314
+ 27319
+ NN
+ O
+
+
+ language
+ language
+ 27320
+ 27328
+ NN
+ O
+
+
+ for
+ for
+ 27329
+ 27332
+ IN
+ O
+
+
+ a
+ a
+ 27333
+ 27334
+ DT
+ O
+
+
+ third
+ third
+ 27336
+ 27341
+ JJ
+ ORDINAL
+ 3.0
+
+
+ treaty
+ treaty
+ 27342
+ 27348
+ NN
+ O
+
+
+ ,
+ ,
+ 27348
+ 27349
+ ,
+ O
+
+
+ an
+ a
+ 27350
+ 27352
+ DT
+ O
+
+
+ international
+ international
+ 27353
+ 27366
+ JJ
+ O
+
+
+ agreement
+ agreement
+ 27367
+ 27376
+ NN
+ O
+
+
+ mandating
+ mandate
+ 27378
+ 27387
+ VBG
+ O
+
+
+ the
+ the
+ 27388
+ 27391
+ DT
+ O
+
+
+ preparation
+ preparation
+ 27392
+ 27403
+ NN
+ O
+
+
+ of
+ of
+ 27404
+ 27406
+ IN
+ O
+
+
+ an
+ a
+ 27407
+ 27409
+ DT
+ O
+
+
+ environ
+ environ
+ 27410
+ 27417
+ NN
+ O
+
+
+ -
+ -
+ 27417
+ 27418
+ :
+ O
+
+
+ mental
+ mental
+ 27420
+ 27426
+ JJ
+ O
+
+
+ impact
+ impact
+ 27427
+ 27433
+ NN
+ O
+
+
+ assessment
+ assessment
+ 27434
+ 27444
+ NN
+ O
+
+
+ for
+ for
+ 27445
+ 27448
+ IN
+ O
+
+
+ all
+ all
+ 27449
+ 27452
+ DT
+ O
+
+
+ projects
+ project
+ 27453
+ 27461
+ NNS
+ O
+
+
+ ,
+ ,
+ 27461
+ 27462
+ ,
+ O
+
+
+ public
+ public
+ 27464
+ 27470
+ JJ
+ O
+
+
+ and
+ and
+ 27471
+ 27474
+ CC
+ O
+
+
+ private
+ private
+ 27475
+ 27482
+ JJ
+ O
+
+
+ ,
+ ,
+ 27482
+ 27483
+ ,
+ O
+
+
+ that
+ that
+ 27484
+ 27488
+ WDT
+ O
+
+
+ would
+ would
+ 27489
+ 27494
+ MD
+ O
+
+
+ impact
+ impact
+ 27495
+ 27501
+ VB
+ O
+
+
+ on
+ on
+ 27502
+ 27504
+ IN
+ O
+
+
+ the
+ the
+ 27506
+ 27509
+ DT
+ O
+
+
+ territory
+ territory
+ 27510
+ 27519
+ NN
+ O
+
+
+ of
+ of
+ 27520
+ 27522
+ IN
+ O
+
+
+ another
+ another
+ 27523
+ 27530
+ DT
+ O
+
+
+ state
+ state
+ 27531
+ 27536
+ NN
+ O
+
+
+ or
+ or
+ 27537
+ 27539
+ CC
+ O
+
+
+ on
+ on
+ 27540
+ 27542
+ IN
+ O
+
+
+ the
+ the
+ 27543
+ 27546
+ DT
+ O
+
+
+ global
+ global
+ 27548
+ 27554
+ JJ
+ O
+
+
+ commons
+ common
+ 27555
+ 27562
+ NNS
+ O
+
+
+ .
+ .
+ 27562
+ 27563
+ .
+ O
+
+
+ (ROOT (S (PP (IN In) (NP (CD 1977))) (NP (PRP I)) (VP (VBD put) (ADVP (RB forward)) (NP (NP (NN draft) (NN language)) (PP (IN for) (NP (NP (DT a) (JJ third) (NN treaty)) (, ,) (NP (NP (NP (DT an) (JJ international) (NN agreement)) (VP (VBG mandating) (NP (NP (DT the) (NN preparation)) (PP (IN of) (NP (DT an) (NN environ)))))) (: -) (NP (NP (JJ mental) (NN impact) (NN assessment)) (PP (IN for) (NP (DT all) (NNS projects))))) (, ,) (ADJP (JJ public) (CC and) (JJ private)) (, ,) (SBAR (WHNP (WDT that)) (S (VP (MD would) (VP (VB impact) (PP (PP (IN on) (NP (NP (DT the) (NN territory)) (PP (IN of) (NP (DT another) (NN state))))) (CC or) (PP (IN on) (NP (DT the) (JJ global) (NNS commons)))))))))))) (. .)))
+
+
+ ROOT
+ put
+
+
+ put
+ In
+
+
+ In
+ 1977
+
+
+ put
+ I
+
+
+ put
+ forward
+
+
+ language
+ draft
+
+
+ put
+ language
+
+
+ language
+ for
+
+
+ treaty
+ a
+
+
+ treaty
+ third
+
+
+ for
+ treaty
+
+
+ agreement
+ an
+
+
+ agreement
+ international
+
+
+ treaty
+ agreement
+
+
+ agreement
+ mandating
+
+
+ preparation
+ the
+
+
+ mandating
+ preparation
+
+
+ preparation
+ of
+
+
+ environ
+ an
+
+
+ of
+ environ
+
+
+ assessment
+ mental
+
+
+ assessment
+ impact
+
+
+ agreement
+ assessment
+
+
+ assessment
+ for
+
+
+ projects
+ all
+
+
+ for
+ projects
+
+
+ treaty
+ public
+
+
+ public
+ and
+
+
+ public
+ private
+
+
+ impact
+ that
+
+
+ impact
+ would
+
+
+ treaty
+ impact
+
+
+ impact
+ on
+
+
+ territory
+ the
+
+
+ on
+ territory
+
+
+ territory
+ of
+
+
+ state
+ another
+
+
+ of
+ state
+
+
+ on
+ or
+
+
+ on
+ on
+
+
+ commons
+ the
+
+
+ commons
+ global
+
+
+ on
+ commons
+
+
+
+
+ ROOT
+ put
+
+
+ put
+ 1977
+
+
+ put
+ I
+
+
+ put
+ forward
+
+
+ language
+ draft
+
+
+ put
+ language
+
+
+ treaty
+ a
+
+
+ treaty
+ third
+
+
+ language
+ treaty
+
+
+ agreement
+ an
+
+
+ agreement
+ international
+
+
+ treaty
+ agreement
+
+
+ agreement
+ mandating
+
+
+ preparation
+ the
+
+
+ mandating
+ preparation
+
+
+ environ
+ an
+
+
+ preparation
+ environ
+
+
+ assessment
+ mental
+
+
+ assessment
+ impact
+
+
+ agreement
+ assessment
+
+
+ projects
+ all
+
+
+ assessment
+ projects
+
+
+ treaty
+ public
+
+
+ public
+ private
+
+
+ impact
+ that
+
+
+ impact
+ would
+
+
+ treaty
+ impact
+
+
+ territory
+ the
+
+
+ impact
+ territory
+
+
+ state
+ another
+
+
+ territory
+ state
+
+
+ commons
+ the
+
+
+ commons
+ global
+
+
+ territory
+ commons
+
+
+
+
+ ROOT
+ put
+
+
+ put
+ 1977
+
+
+ put
+ I
+
+
+ put
+ forward
+
+
+ language
+ draft
+
+
+ put
+ language
+
+
+ treaty
+ a
+
+
+ treaty
+ third
+
+
+ language
+ treaty
+
+
+ agreement
+ an
+
+
+ agreement
+ international
+
+
+ treaty
+ agreement
+
+
+ agreement
+ mandating
+
+
+ preparation
+ the
+
+
+ mandating
+ preparation
+
+
+ environ
+ an
+
+
+ preparation
+ environ
+
+
+ assessment
+ mental
+
+
+ assessment
+ impact
+
+
+ agreement
+ assessment
+
+
+ projects
+ all
+
+
+ assessment
+ projects
+
+
+ treaty
+ public
+
+
+ treaty
+ private
+
+
+ public
+ private
+
+
+ impact
+ that
+
+
+ impact
+ would
+
+
+ treaty
+ impact
+
+
+ territory
+ the
+
+
+ impact
+ territory
+
+
+ state
+ another
+
+
+ territory
+ state
+
+
+ commons
+ the
+
+
+ commons
+ global
+
+
+ impact
+ commons
+
+
+ territory
+ commons
+
+
+
+
+
+
+ My
+ my
+ 27564
+ 27566
+ PRP$
+ O
+
+
+ proposed
+ propose
+ 27567
+ 27575
+ VBN
+ O
+
+
+ Environmen
+ Environmen
+ 27576
+ 27586
+ NNP
+ O
+
+
+ -
+ -
+ 27586
+ 27587
+ :
+ O
+
+
+ tal
+ tal
+ 27589
+ 27592
+ JJ
+ O
+
+
+ Impact
+ Impact
+ 27593
+ 27599
+ NNP
+ O
+
+
+ Assessment
+ Assessment
+ 27600
+ 27610
+ NNP
+ O
+
+
+ Treaty
+ Treaty
+ 27611
+ 27617
+ NNP
+ O
+
+
+ would
+ would
+ 27618
+ 27623
+ MD
+ O
+
+
+ not
+ not
+ 27624
+ 27627
+ RB
+ O
+
+
+ prohibit
+ prohibit
+ 27629
+ 27637
+ VB
+ O
+
+
+ a
+ a
+ 27638
+ 27639
+ DT
+ O
+
+
+ state
+ state
+ 27640
+ 27645
+ NN
+ O
+
+
+ from
+ from
+ 27646
+ 27650
+ IN
+ O
+
+
+ carrying
+ carry
+ 27651
+ 27659
+ VBG
+ O
+
+
+ out
+ out
+ 27660
+ 27663
+ RP
+ O
+
+
+ the
+ the
+ 27664
+ 27667
+ DT
+ O
+
+
+ activi
+ activus
+ 27668
+ 27674
+ NN
+ O
+
+
+ -
+ -
+ 27674
+ 27675
+ :
+ O
+
+
+ ty
+ ty
+ 27677
+ 27679
+ NN
+ O
+
+
+ .
+ .
+ 27679
+ 27680
+ .
+ O
+
+
+ (ROOT (S (S (NP (PRP$ My)) (VP (VBN proposed) (NP (NNP Environmen)))) (: -) (S (NP (JJ tal) (NNP Impact) (NNP Assessment) (NNP Treaty)) (VP (MD would) (RB not) (VP (VB prohibit) (NP (DT a) (NN state)) (PP (IN from) (S (VP (VBG carrying) (PRT (RP out)) (NP (DT the) (NN activi) (: -) (NN ty)))))))) (. .)))
+
+
+ ROOT
+ proposed
+
+
+ proposed
+ My
+
+
+ proposed
+ Environmen
+
+
+ Treaty
+ tal
+
+
+ Treaty
+ Impact
+
+
+ Treaty
+ Assessment
+
+
+ prohibit
+ Treaty
+
+
+ prohibit
+ would
+
+
+ prohibit
+ not
+
+
+ proposed
+ prohibit
+
+
+ state
+ a
+
+
+ prohibit
+ state
+
+
+ prohibit
+ from
+
+
+ from
+ carrying
+
+
+ carrying
+ out
+
+
+ ty
+ the
+
+
+ ty
+ activi
+
+
+ carrying
+ ty
+
+
+
+
+ ROOT
+ proposed
+
+
+ proposed
+ My
+
+
+ proposed
+ Environmen
+
+
+ Treaty
+ tal
+
+
+ Treaty
+ Impact
+
+
+ Treaty
+ Assessment
+
+
+ prohibit
+ Treaty
+
+
+ prohibit
+ would
+
+
+ prohibit
+ not
+
+
+ proposed
+ prohibit
+
+
+ state
+ a
+
+
+ prohibit
+ state
+
+
+ prohibit
+ carrying
+
+
+ carrying
+ out
+
+
+ ty
+ the
+
+
+ ty
+ activi
+
+
+ carrying
+ ty
+
+
+
+
+ ROOT
+ proposed
+
+
+ proposed
+ My
+
+
+ proposed
+ Environmen
+
+
+ Treaty
+ tal
+
+
+ Treaty
+ Impact
+
+
+ Treaty
+ Assessment
+
+
+ prohibit
+ Treaty
+
+
+ prohibit
+ would
+
+
+ prohibit
+ not
+
+
+ proposed
+ prohibit
+
+
+ state
+ a
+
+
+ prohibit
+ state
+
+
+ prohibit
+ carrying
+
+
+ carrying
+ out
+
+
+ ty
+ the
+
+
+ ty
+ activi
+
+
+ carrying
+ ty
+
+
+
+
+
+
+ It
+ it
+ 27681
+ 27683
+ PRP
+ O
+
+
+ would
+ would
+ 27684
+ 27689
+ MD
+ O
+
+
+ ,
+ ,
+ 27689
+ 27690
+ ,
+ O
+
+
+ however
+ however
+ 27691
+ 27698
+ RB
+ O
+
+
+ ,
+ ,
+ 27698
+ 27699
+ ,
+ O
+
+
+ be
+ be
+ 27700
+ 27702
+ VB
+ O
+
+
+ required
+ require
+ 27703
+ 27711
+ VBN
+ O
+
+
+ to
+ to
+ 27712
+ 27714
+ TO
+ O
+
+
+ make
+ make
+ 27715
+ 27719
+ VB
+ O
+
+
+ a
+ a
+ 27720
+ 27721
+ DT
+ O
+
+
+ detailed
+ detailed
+ 27723
+ 27731
+ JJ
+ O
+
+
+ assessment
+ assessment
+ 27732
+ 27742
+ NN
+ O
+
+
+ of
+ of
+ 27743
+ 27745
+ IN
+ O
+
+
+ the
+ the
+ 27746
+ 27749
+ DT
+ O
+
+
+ impact
+ impact
+ 27750
+ 27756
+ NN
+ O
+
+
+ of
+ of
+ 27757
+ 27759
+ IN
+ O
+
+
+ the
+ the
+ 27760
+ 27763
+ DT
+ O
+
+
+ ac
+ ac
+ 27764
+ 27766
+ NN
+ O
+
+
+ -
+ -
+ 27766
+ 27767
+ :
+ O
+
+
+ tivity
+ tivity
+ 27769
+ 27775
+ NN
+ O
+
+
+ and
+ and
+ 27776
+ 27779
+ CC
+ O
+
+
+ to
+ to
+ 27780
+ 27782
+ TO
+ O
+
+
+ communicate
+ communicate
+ 27783
+ 27794
+ VB
+ O
+
+
+ this
+ this
+ 27795
+ 27799
+ DT
+ O
+
+
+ information
+ information
+ 27800
+ 27811
+ NN
+ O
+
+
+ to
+ to
+ 27813
+ 27815
+ TO
+ O
+
+
+ the
+ the
+ 27816
+ 27819
+ DT
+ O
+
+
+ affected
+ affected
+ 27820
+ 27828
+ JJ
+ O
+
+
+ countries
+ country
+ 27829
+ 27838
+ NNS
+ O
+
+
+ or
+ or
+ 27839
+ 27841
+ CC
+ O
+
+
+ ,
+ ,
+ 27841
+ 27842
+ ,
+ O
+
+
+ in
+ in
+ 27843
+ 27845
+ IN
+ O
+
+
+ the
+ the
+ 27846
+ 27849
+ DT
+ O
+
+
+ case
+ case
+ 27850
+ 27854
+ NN
+ O
+
+
+ of
+ of
+ 27855
+ 27857
+ IN
+ O
+
+
+ the
+ the
+ 27859
+ 27862
+ DT
+ O
+
+
+ global
+ global
+ 27863
+ 27869
+ JJ
+ O
+
+
+ commons
+ common
+ 27870
+ 27877
+ NNS
+ O
+
+
+ ,
+ ,
+ 27877
+ 27878
+ ,
+ O
+
+
+ to
+ to
+ 27879
+ 27881
+ TO
+ O
+
+
+ the
+ the
+ 27882
+ 27885
+ DT
+ O
+
+
+ United
+ United
+ 27886
+ 27892
+ NNP
+ ORGANIZATION
+
+
+ Nations
+ Nations
+ 27893
+ 27900
+ NNP
+ ORGANIZATION
+
+
+ Environment
+ Environment
+ 27902
+ 27913
+ NNP
+ ORGANIZATION
+
+
+ Program
+ Program
+ 27914
+ 27921
+ NNP
+ ORGANIZATION
+
+
+ .
+ .
+ 27921
+ 27922
+ .
+ O
+
+
+ (ROOT (S (NP (PRP It)) (VP (MD would) (, ,) (ADVP (RB however)) (, ,) (VP (VB be) (VP (VBN required) (S (VP (VP (TO to) (VP (VB make) (NP (NP (DT a) (JJ detailed) (NN assessment)) (PP (IN of) (NP (NP (DT the) (NN impact)) (PP (IN of) (NP (DT the) (NN ac) (: -) (NN tivity)))))))) (CC and) (VP (TO to) (VP (VB communicate) (NP (DT this) (NN information)) (PP (PP (TO to) (NP (DT the) (JJ affected) (NNS countries))) (CC or) (PRN (, ,) (PP (IN in) (NP (NP (DT the) (NN case)) (PP (IN of) (NP (DT the) (JJ global) (NNS commons))))) (, ,)) (PP (TO to) (NP (DT the) (NNP United) (NNP Nations) (NNP Environment) (NNP Program))))))))))) (. .)))
+
+
+ ROOT
+ required
+
+
+ required
+ It
+
+
+ required
+ would
+
+
+ required
+ however
+
+
+ required
+ be
+
+
+ make
+ to
+
+
+ required
+ make
+
+
+ assessment
+ a
+
+
+ assessment
+ detailed
+
+
+ make
+ assessment
+
+
+ assessment
+ of
+
+
+ impact
+ the
+
+
+ of
+ impact
+
+
+ impact
+ of
+
+
+ tivity
+ the
+
+
+ tivity
+ ac
+
+
+ of
+ tivity
+
+
+ make
+ and
+
+
+ communicate
+ to
+
+
+ make
+ communicate
+
+
+ information
+ this
+
+
+ communicate
+ information
+
+
+ communicate
+ to
+
+
+ countries
+ the
+
+
+ countries
+ affected
+
+
+ to
+ countries
+
+
+ to
+ or
+
+
+ to
+ in
+
+
+ case
+ the
+
+
+ in
+ case
+
+
+ case
+ of
+
+
+ commons
+ the
+
+
+ commons
+ global
+
+
+ of
+ commons
+
+
+ to
+ to
+
+
+ Program
+ the
+
+
+ Program
+ United
+
+
+ Program
+ Nations
+
+
+ Program
+ Environment
+
+
+ to
+ Program
+
+
+
+
+ ROOT
+ required
+
+
+ required
+ It
+
+
+ required
+ would
+
+
+ required
+ however
+
+
+ required
+ be
+
+
+ make
+ to
+
+
+ required
+ make
+
+
+ assessment
+ a
+
+
+ assessment
+ detailed
+
+
+ make
+ assessment
+
+
+ impact
+ the
+
+
+ assessment
+ impact
+
+
+ tivity
+ the
+
+
+ tivity
+ ac
+
+
+ impact
+ tivity
+
+
+ communicate
+ to
+
+
+ make
+ communicate
+
+
+ information
+ this
+
+
+ communicate
+ information
+
+
+ countries
+ the
+
+
+ countries
+ affected
+
+
+ communicate
+ countries
+
+
+ communicate
+ in
+
+
+ case
+ the
+
+
+ in
+ case
+
+
+ commons
+ the
+
+
+ commons
+ global
+
+
+ case
+ commons
+
+
+ Program
+ the
+
+
+ Program
+ United
+
+
+ Program
+ Nations
+
+
+ Program
+ Environment
+
+
+ countries
+ Program
+
+
+
+
+ ROOT
+ required
+
+
+ required
+ It
+
+
+ required
+ would
+
+
+ required
+ however
+
+
+ required
+ be
+
+
+ make
+ to
+
+
+ required
+ make
+
+
+ assessment
+ a
+
+
+ assessment
+ detailed
+
+
+ make
+ assessment
+
+
+ impact
+ the
+
+
+ assessment
+ impact
+
+
+ tivity
+ the
+
+
+ tivity
+ ac
+
+
+ impact
+ tivity
+
+
+ communicate
+ to
+
+
+ required
+ communicate
+
+
+ make
+ communicate
+
+
+ information
+ this
+
+
+ communicate
+ information
+
+
+ countries
+ the
+
+
+ countries
+ affected
+
+
+ communicate
+ countries
+
+
+ communicate
+ in
+
+
+ case
+ the
+
+
+ in
+ case
+
+
+ commons
+ the
+
+
+ commons
+ global
+
+
+ case
+ commons
+
+
+ Program
+ the
+
+
+ Program
+ United
+
+
+ Program
+ Nations
+
+
+ Program
+ Environment
+
+
+ communicate
+ Program
+
+
+ countries
+ Program
+
+
+
+
+
+
+ This
+ this
+ 27926
+ 27930
+ DT
+ O
+
+
+ idea
+ idea
+ 27931
+ 27935
+ NN
+ O
+
+
+ was
+ be
+ 27936
+ 27939
+ VBD
+ O
+
+
+ endorsed
+ endorse
+ 27940
+ 27948
+ VBN
+ O
+
+
+ unanimously
+ unanimously
+ 27949
+ 27960
+ RB
+ O
+
+
+ by
+ by
+ 27961
+ 27963
+ IN
+ O
+
+
+ the
+ the
+ 27965
+ 27968
+ DT
+ O
+
+
+ U.S.
+ U.S.
+ 27969
+ 27973
+ NNP
+ ORGANIZATION
+
+
+ Senate
+ Senate
+ 27974
+ 27980
+ NNP
+ ORGANIZATION
+
+
+ in
+ in
+ 27981
+ 27983
+ IN
+ O
+
+
+ 1078
+ 1078
+ 27984
+ 27988
+ CD
+ DATE
+ 1078
+ 1078
+
+
+ .
+ .
+ 27988
+ 27989
+ .
+ O
+
+
+ (ROOT (S (NP (DT This) (NN idea)) (VP (VBD was) (VP (VBN endorsed) (ADVP (RB unanimously)) (PP (IN by) (NP (NP (DT the) (NNP U.S.) (NNP Senate)) (PP (IN in) (NP (CD 1078))))))) (. .)))
+
+
+ ROOT
+ endorsed
+
+
+ idea
+ This
+
+
+ endorsed
+ idea
+
+
+ endorsed
+ was
+
+
+ endorsed
+ unanimously
+
+
+ endorsed
+ by
+
+
+ Senate
+ the
+
+
+ Senate
+ U.S.
+
+
+ by
+ Senate
+
+
+ Senate
+ in
+
+
+ in
+ 1078
+
+
+
+
+ ROOT
+ endorsed
+
+
+ idea
+ This
+
+
+ endorsed
+ idea
+
+
+ endorsed
+ was
+
+
+ endorsed
+ unanimously
+
+
+ Senate
+ the
+
+
+ Senate
+ U.S.
+
+
+ endorsed
+ Senate
+
+
+ Senate
+ 1078
+
+
+
+
+ ROOT
+ endorsed
+
+
+ idea
+ This
+
+
+ endorsed
+ idea
+
+
+ endorsed
+ was
+
+
+ endorsed
+ unanimously
+
+
+ Senate
+ the
+
+
+ Senate
+ U.S.
+
+
+ endorsed
+ Senate
+
+
+ Senate
+ 1078
+
+
+
+
+
+
+ Since
+ since
+ 27990
+ 27995
+ IN
+ O
+
+
+ then
+ then
+ 27996
+ 28000
+ RB
+ O
+
+
+ it
+ it
+ 28001
+ 28003
+ PRP
+ O
+
+
+ has
+ have
+ 28004
+ 28007
+ VBZ
+ O
+
+
+ been
+ be
+ 28009
+ 28013
+ VBN
+ O
+
+
+ on
+ on
+ 28014
+ 28016
+ IN
+ O
+
+
+ the
+ the
+ 28017
+ 28020
+ DT
+ O
+
+
+ agenda
+ agenda
+ 28021
+ 28027
+ NN
+ O
+
+
+ of
+ of
+ 28028
+ 28030
+ IN
+ O
+
+
+ the
+ the
+ 28031
+ 28034
+ DT
+ O
+
+
+ UNEP
+ UNEP
+ 28035
+ 28039
+ NNP
+ ORGANIZATION
+
+
+ Governing
+ Governing
+ 28040
+ 28049
+ NNP
+ O
+
+
+ Council
+ Council
+ 28051
+ 28058
+ NNP
+ O
+
+
+ and
+ and
+ 28059
+ 28062
+ CC
+ O
+
+
+ ,
+ ,
+ 28062
+ 28063
+ ,
+ O
+
+
+ as
+ as
+ 28064
+ 28066
+ IN
+ O
+
+
+ principles
+ principle
+ 28067
+ 28077
+ NNS
+ O
+
+
+ to
+ to
+ 28078
+ 28080
+ TO
+ O
+
+
+ be
+ be
+ 28081
+ 28083
+ VB
+ O
+
+
+ followed
+ follow
+ 28084
+ 28092
+ VBN
+ O
+
+
+ by
+ by
+ 28093
+ 28095
+ IN
+ O
+
+
+ member
+ member
+ 28097
+ 28103
+ NN
+ O
+
+
+ states
+ state
+ 28104
+ 28110
+ NNS
+ O
+
+
+ ,
+ ,
+ 28110
+ 28111
+ ,
+ O
+
+
+ has
+ have
+ 28112
+ 28115
+ VBZ
+ O
+
+
+ received
+ receive
+ 28116
+ 28124
+ VBN
+ O
+
+
+ the
+ the
+ 28125
+ 28128
+ DT
+ O
+
+
+ endorse
+ endorse
+ 28129
+ 28136
+ VB
+ O
+
+
+ -
+ -
+ 28136
+ 28137
+ :
+ O
+
+
+ ment
+ ment
+ 28139
+ 28143
+ NN
+ O
+
+
+ of
+ of
+ 28144
+ 28146
+ IN
+ O
+
+
+ that
+ that
+ 28147
+ 28151
+ DT
+ O
+
+
+ Governing
+ Governing
+ 28152
+ 28161
+ NNP
+ O
+
+
+ Council
+ Council
+ 28162
+ 28169
+ NNP
+ O
+
+
+ .
+ .
+ 28169
+ 28170
+ .
+ O
+
+
+ (ROOT (S (PP (IN Since) (NP (RB then))) (NP (PRP it)) (VP (VP (VBZ has) (VP (VBN been) (PP (IN on) (NP (NP (DT the) (NN agenda)) (PP (IN of) (NP (DT the) (NNP UNEP) (NNP Governing) (NNP Council))))))) (CC and) (PRN (, ,) (SBAR (IN as) (S (NP (NNS principles)) (VP (TO to) (VP (VB be) (VP (VBN followed) (PP (IN by) (NP (NN member) (NNS states)))))))) (, ,)) (VP (VP (VBZ has) (VP (VBN received) (S (NP (DT the)) (VP (VB endorse))))) (: -) (NP (NP (NN ment)) (PP (IN of) (NP (DT that) (NNP Governing) (NNP Council)))))) (. .)))
+
+
+ ROOT
+ been
+
+
+ been
+ Since
+
+
+ Since
+ then
+
+
+ been
+ it
+
+
+ been
+ has
+
+
+ been
+ on
+
+
+ agenda
+ the
+
+
+ on
+ agenda
+
+
+ agenda
+ of
+
+
+ Council
+ the
+
+
+ Council
+ UNEP
+
+
+ Council
+ Governing
+
+
+ of
+ Council
+
+
+ been
+ and
+
+
+ followed
+ as
+
+
+ followed
+ principles
+
+
+ followed
+ to
+
+
+ followed
+ be
+
+
+ been
+ followed
+
+
+ followed
+ by
+
+
+ states
+ member
+
+
+ by
+ states
+
+
+ received
+ has
+
+
+ been
+ received
+
+
+ endorse
+ the
+
+
+ received
+ endorse
+
+
+ received
+ ment
+
+
+ ment
+ of
+
+
+ Council
+ that
+
+
+ Council
+ Governing
+
+
+ of
+ Council
+
+
+
+
+ ROOT
+ been
+
+
+ been
+ Since
+
+
+ Since
+ then
+
+
+ been
+ it
+
+
+ been
+ has
+
+
+ agenda
+ the
+
+
+ been
+ agenda
+
+
+ Council
+ the
+
+
+ Council
+ UNEP
+
+
+ Council
+ Governing
+
+
+ agenda
+ Council
+
+
+ followed
+ as
+
+
+ followed
+ principles
+
+
+ followed
+ to
+
+
+ followed
+ be
+
+
+ been
+ followed
+
+
+ states
+ member
+
+
+ followed
+ states
+
+
+ received
+ has
+
+
+ been
+ received
+
+
+ endorse
+ the
+
+
+ received
+ endorse
+
+
+ received
+ ment
+
+
+ Council
+ that
+
+
+ Council
+ Governing
+
+
+ ment
+ Council
+
+
+
+
+ ROOT
+ been
+
+
+ been
+ Since
+
+
+ Since
+ then
+
+
+ been
+ it
+
+
+ received
+ it
+
+
+ been
+ has
+
+
+ agenda
+ the
+
+
+ been
+ agenda
+
+
+ Council
+ the
+
+
+ Council
+ UNEP
+
+
+ Council
+ Governing
+
+
+ agenda
+ Council
+
+
+ followed
+ as
+
+
+ followed
+ principles
+
+
+ followed
+ to
+
+
+ followed
+ be
+
+
+ been
+ followed
+
+
+ states
+ member
+
+
+ followed
+ states
+
+
+ received
+ has
+
+
+ been
+ received
+
+
+ endorse
+ the
+
+
+ received
+ endorse
+
+
+ received
+ ment
+
+
+ Council
+ that
+
+
+ Council
+ Governing
+
+
+ ment
+ Council
+
+
+
+
+
+
+ Further
+ further
+ 28171
+ 28178
+ RB
+ O
+
+
+ ,
+ ,
+ 28178
+ 28179
+ ,
+ O
+
+
+ UNEP
+ UNEP
+ 28181
+ 28185
+ NNP
+ ORGANIZATION
+
+
+ 's
+ 's
+ 28185
+ 28187
+ POS
+ O
+
+
+ international
+ international
+ 28188
+ 28201
+ JJ
+ O
+
+
+ law
+ law
+ 28202
+ 28205
+ NN
+ O
+
+
+ unit
+ unit
+ 28206
+ 28210
+ NN
+ O
+
+
+ has
+ have
+ 28211
+ 28214
+ VBZ
+ O
+
+
+ made
+ make
+ 28215
+ 28219
+ VBN
+ O
+
+
+ substantial
+ substantial
+ 28221
+ 28232
+ JJ
+ O
+
+
+ progress
+ progress
+ 28233
+ 28241
+ NN
+ O
+
+
+ toward
+ toward
+ 28242
+ 28248
+ IN
+ O
+
+
+ drafting
+ draft
+ 28249
+ 28257
+ VBG
+ O
+
+
+ a
+ a
+ 28258
+ 28259
+ DT
+ O
+
+
+ treaty
+ treaty
+ 28261
+ 28267
+ NN
+ O
+
+
+ .
+ .
+ 28267
+ 28268
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB Further)) (, ,) (NP (NP (NNP UNEP) (POS 's)) (JJ international) (NN law) (NN unit)) (VP (VBZ has) (VP (VBN made) (NP (JJ substantial) (NN progress)) (PP (IN toward) (S (VP (VBG drafting) (NP (DT a) (NN treaty))))))) (. .)))
+
+
+ ROOT
+ made
+
+
+ made
+ Further
+
+
+ unit
+ UNEP
+
+
+ UNEP
+ 's
+
+
+ unit
+ international
+
+
+ unit
+ law
+
+
+ made
+ unit
+
+
+ made
+ has
+
+
+ progress
+ substantial
+
+
+ made
+ progress
+
+
+ made
+ toward
+
+
+ toward
+ drafting
+
+
+ treaty
+ a
+
+
+ drafting
+ treaty
+
+
+
+
+ ROOT
+ made
+
+
+ made
+ Further
+
+
+ unit
+ UNEP
+
+
+ unit
+ international
+
+
+ unit
+ law
+
+
+ made
+ unit
+
+
+ made
+ has
+
+
+ progress
+ substantial
+
+
+ made
+ progress
+
+
+ made
+ drafting
+
+
+ treaty
+ a
+
+
+ drafting
+ treaty
+
+
+
+
+ ROOT
+ made
+
+
+ made
+ Further
+
+
+ unit
+ UNEP
+
+
+ unit
+ international
+
+
+ unit
+ law
+
+
+ made
+ unit
+
+
+ made
+ has
+
+
+ progress
+ substantial
+
+
+ made
+ progress
+
+
+ made
+ drafting
+
+
+ treaty
+ a
+
+
+ drafting
+ treaty
+
+
+
+
+
+
+ I
+ I
+ 28269
+ 28270
+ PRP
+ O
+
+
+ realize
+ realize
+ 28271
+ 28278
+ VBP
+ O
+
+
+ many
+ many
+ 28279
+ 28283
+ JJ
+ O
+
+
+ European
+ european
+ 28284
+ 28292
+ JJ
+ MISC
+
+
+ agreements
+ agreement
+ 28293
+ 28303
+ NNS
+ O
+
+
+ go
+ go
+ 28305
+ 28307
+ VBP
+ O
+
+
+ far
+ far
+ 28308
+ 28311
+ RB
+ O
+
+
+ beyond
+ beyond
+ 28312
+ 28318
+ IN
+ O
+
+
+ this
+ this
+ 28319
+ 28323
+ DT
+ O
+
+
+ treaty
+ treaty
+ 28324
+ 28330
+ NN
+ O
+
+
+ .
+ .
+ 28330
+ 28331
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (VBP realize) (SBAR (S (NP (JJ many) (JJ European) (NNS agreements)) (VP (VBP go) (ADVP (RB far) (PP (IN beyond) (NP (DT this) (NN treaty)))))))) (. .)))
+
+
+ ROOT
+ realize
+
+
+ realize
+ I
+
+
+ agreements
+ many
+
+
+ agreements
+ European
+
+
+ go
+ agreements
+
+
+ realize
+ go
+
+
+ go
+ far
+
+
+ far
+ beyond
+
+
+ treaty
+ this
+
+
+ beyond
+ treaty
+
+
+
+
+ ROOT
+ realize
+
+
+ realize
+ I
+
+
+ agreements
+ many
+
+
+ agreements
+ European
+
+
+ go
+ agreements
+
+
+ realize
+ go
+
+
+ go
+ far
+
+
+ treaty
+ this
+
+
+ far
+ treaty
+
+
+
+
+ ROOT
+ realize
+
+
+ realize
+ I
+
+
+ agreements
+ many
+
+
+ agreements
+ European
+
+
+ go
+ agreements
+
+
+ realize
+ go
+
+
+ go
+ far
+
+
+ treaty
+ this
+
+
+ far
+ treaty
+
+
+
+
+
+
+ However
+ however
+ 28332
+ 28339
+ RB
+ O
+
+
+ ,
+ ,
+ 28339
+ 28340
+ ,
+ O
+
+
+ where
+ where
+ 28341
+ 28346
+ WRB
+ O
+
+
+ no
+ no
+ 28348
+ 28350
+ DT
+ O
+
+
+ such
+ such
+ 28351
+ 28355
+ JJ
+ O
+
+
+ agreements
+ agreement
+ 28356
+ 28366
+ NNS
+ O
+
+
+ are
+ be
+ 28367
+ 28370
+ VBP
+ O
+
+
+ in
+ in
+ 28371
+ 28373
+ IN
+ O
+
+
+ place
+ place
+ 28374
+ 28379
+ NN
+ O
+
+
+ ,
+ ,
+ 28379
+ 28380
+ ,
+ O
+
+
+ I
+ I
+ 28381
+ 28382
+ PRP
+ O
+
+
+ believe
+ believe
+ 28383
+ 28390
+ VBP
+ O
+
+
+ this
+ this
+ 28392
+ 28396
+ DT
+ O
+
+
+ Environmental
+ environmental
+ 28398
+ 28411
+ JJ
+ O
+
+
+ Impact
+ impact
+ 28412
+ 28418
+ NN
+ O
+
+
+ Assessment
+ Assessment
+ 28419
+ 28429
+ NNP
+ O
+
+
+ Treaty
+ Treaty
+ 28431
+ 28437
+ NNP
+ O
+
+
+ represents
+ represent
+ 28438
+ 28448
+ VBZ
+ O
+
+
+ an
+ a
+ 28449
+ 28451
+ DT
+ O
+
+
+ important
+ important
+ 28452
+ 28461
+ JJ
+ O
+
+
+ step
+ step
+ 28462
+ 28466
+ NN
+ O
+
+
+ toward
+ toward
+ 28467
+ 28473
+ IN
+ O
+
+
+ greater
+ greater
+ 28475
+ 28482
+ JJR
+ O
+
+
+ environmental
+ environmental
+ 28483
+ 28496
+ JJ
+ O
+
+
+ responsibility
+ responsibility
+ 28497
+ 28511
+ NN
+ O
+
+
+ .
+ .
+ 28511
+ 28512
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB However)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (DT no) (JJ such) (NNS agreements)) (VP (VBP are) (PP (IN in) (NP (NN place)))))) (, ,) (NP (PRP I)) (VP (VBP believe) (NP (NP (DT this) (JJ Environmental) (NN Impact)) (SBAR (S (NP (NNP Assessment) (NNP Treaty)) (VP (VBZ represents) (NP (NP (DT an) (JJ important) (NN step)) (PP (IN toward) (NP (JJR greater) (JJ environmental) (NN responsibility))))))))) (. .)))
+
+
+ ROOT
+ believe
+
+
+ believe
+ However
+
+
+ are
+ where
+
+
+ agreements
+ no
+
+
+ agreements
+ such
+
+
+ are
+ agreements
+
+
+ believe
+ are
+
+
+ are
+ in
+
+
+ in
+ place
+
+
+ believe
+ I
+
+
+ Impact
+ this
+
+
+ Impact
+ Environmental
+
+
+ believe
+ Impact
+
+
+ Treaty
+ Assessment
+
+
+ represents
+ Treaty
+
+
+ Impact
+ represents
+
+
+ step
+ an
+
+
+ step
+ important
+
+
+ represents
+ step
+
+
+ step
+ toward
+
+
+ responsibility
+ greater
+
+
+ responsibility
+ environmental
+
+
+ toward
+ responsibility
+
+
+
+
+ ROOT
+ believe
+
+
+ believe
+ However
+
+
+ are
+ where
+
+
+ agreements
+ no
+
+
+ agreements
+ such
+
+
+ are
+ agreements
+
+
+ believe
+ are
+
+
+ are
+ place
+
+
+ believe
+ I
+
+
+ Impact
+ this
+
+
+ Impact
+ Environmental
+
+
+ believe
+ Impact
+
+
+ Treaty
+ Assessment
+
+
+ represents
+ Treaty
+
+
+ Impact
+ represents
+
+
+ step
+ an
+
+
+ step
+ important
+
+
+ represents
+ step
+
+
+ responsibility
+ greater
+
+
+ responsibility
+ environmental
+
+
+ step
+ responsibility
+
+
+
+
+ ROOT
+ believe
+
+
+ believe
+ However
+
+
+ are
+ where
+
+
+ agreements
+ no
+
+
+ agreements
+ such
+
+
+ are
+ agreements
+
+
+ believe
+ are
+
+
+ are
+ place
+
+
+ believe
+ I
+
+
+ Impact
+ this
+
+
+ Impact
+ Environmental
+
+
+ believe
+ Impact
+
+
+ Treaty
+ Assessment
+
+
+ represents
+ Treaty
+
+
+ Impact
+ represents
+
+
+ step
+ an
+
+
+ step
+ important
+
+
+ represents
+ step
+
+
+ responsibility
+ greater
+
+
+ responsibility
+ environmental
+
+
+ step
+ responsibility
+
+
+
+
+
+
+ Second
+ second
+ 28516
+ 28522
+ RB
+ ORDINAL
+ 2.0
+
+
+ ,
+ ,
+ 28522
+ 28523
+ ,
+ O
+
+
+ I
+ I
+ 28524
+ 28525
+ PRP
+ O
+
+
+ would
+ would
+ 28526
+ 28531
+ MD
+ O
+
+
+ urge
+ urge
+ 28532
+ 28536
+ VB
+ O
+
+
+ we
+ we
+ 28537
+ 28539
+ PRP
+ O
+
+
+ move
+ move
+ 28540
+ 28544
+ VB
+ O
+
+
+ forward
+ forward
+ 28545
+ 28552
+ RB
+ O
+
+
+ quickly
+ quickly
+ 28554
+ 28561
+ RB
+ O
+
+
+ with
+ with
+ 28562
+ 28566
+ IN
+ O
+
+
+ proposals
+ proposal
+ 28567
+ 28576
+ NNS
+ O
+
+
+ to
+ to
+ 28577
+ 28579
+ TO
+ O
+
+
+ draft
+ draft
+ 28580
+ 28585
+ VB
+ O
+
+
+ and
+ and
+ 28586
+ 28589
+ CC
+ O
+
+
+ enact
+ enact
+ 28590
+ 28595
+ VB
+ O
+
+
+ an
+ a
+ 28596
+ 28598
+ DT
+ O
+
+
+ International
+ International
+ 28600
+ 28613
+ NNP
+ MISC
+
+
+ convention
+ convention
+ 28614
+ 28624
+ NN
+ O
+
+
+ to
+ to
+ 28625
+ 28627
+ TO
+ O
+
+
+ protect
+ protect
+ 28628
+ 28635
+ VB
+ O
+
+
+ biologi
+ biologus
+ 28636
+ 28643
+ NN
+ O
+
+
+ -
+ -
+ 28643
+ 28644
+ :
+ O
+
+
+ cal
+ cal
+ 28646
+ 28649
+ JJ
+ O
+
+
+ diversity
+ diversity
+ 28650
+ 28659
+ NN
+ O
+
+
+ .
+ .
+ 28659
+ 28660
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB Second)) (, ,) (NP (PRP I)) (VP (MD would) (VP (VB urge) (S (NP (PRP we)) (VP (VB move) (ADVP (RB forward) (RB quickly)) (PP (IN with) (NP (NNS proposals) (S (VP (TO to) (VP (VB draft) (CC and) (VB enact) (NP (DT an) (NNP International) (NN convention)) (S (VP (TO to) (VP (VB protect) (NP (NP (NN biologi)) (: -) (NP (JJ cal) (NN diversity))))))))))))))) (. .)))
+
+
+ ROOT
+ urge
+
+
+ urge
+ Second
+
+
+ urge
+ I
+
+
+ urge
+ would
+
+
+ move
+ we
+
+
+ urge
+ move
+
+
+ quickly
+ forward
+
+
+ move
+ quickly
+
+
+ move
+ with
+
+
+ with
+ proposals
+
+
+ draft
+ to
+
+
+ proposals
+ draft
+
+
+ draft
+ and
+
+
+ draft
+ enact
+
+
+ convention
+ an
+
+
+ convention
+ International
+
+
+ draft
+ convention
+
+
+ protect
+ to
+
+
+ draft
+ protect
+
+
+ protect
+ biologi
+
+
+ diversity
+ cal
+
+
+ biologi
+ diversity
+
+
+
+
+ ROOT
+ urge
+
+
+ urge
+ Second
+
+
+ urge
+ I
+
+
+ urge
+ would
+
+
+ move
+ we
+
+
+ urge
+ move
+
+
+ quickly
+ forward
+
+
+ move
+ quickly
+
+
+ move
+ proposals
+
+
+ draft
+ to
+
+
+ proposals
+ draft
+
+
+ draft
+ enact
+
+
+ convention
+ an
+
+
+ convention
+ International
+
+
+ draft
+ convention
+
+
+ protect
+ to
+
+
+ draft
+ protect
+
+
+ protect
+ biologi
+
+
+ diversity
+ cal
+
+
+ biologi
+ diversity
+
+
+
+
+ ROOT
+ urge
+
+
+ urge
+ Second
+
+
+ urge
+ I
+
+
+ urge
+ would
+
+
+ move
+ we
+
+
+ urge
+ move
+
+
+ quickly
+ forward
+
+
+ move
+ quickly
+
+
+ move
+ proposals
+
+
+ draft
+ to
+
+
+ proposals
+ draft
+
+
+ proposals
+ enact
+
+
+ draft
+ enact
+
+
+ convention
+ an
+
+
+ convention
+ International
+
+
+ draft
+ convention
+
+
+ protect
+ to
+
+
+ draft
+ protect
+
+
+ protect
+ biologi
+
+
+ diversity
+ cal
+
+
+ biologi
+ diversity
+
+
+
+
+
+
+ This
+ this
+ 28661
+ 28665
+ DT
+ O
+
+
+ ,
+ ,
+ 28665
+ 28666
+ ,
+ O
+
+
+ too
+ too
+ 28667
+ 28670
+ RB
+ O
+
+
+ ,
+ ,
+ 28670
+ 28671
+ ,
+ O
+
+
+ is
+ be
+ 28672
+ 28674
+ VBZ
+ O
+
+
+ an
+ a
+ 28675
+ 28677
+ DT
+ O
+
+
+ issue
+ issue
+ 28678
+ 28683
+ NN
+ O
+
+
+ of
+ of
+ 28684
+ 28686
+ IN
+ O
+
+
+ person
+ person
+ 28687
+ 28693
+ NN
+ O
+
+
+ -
+ -
+ 28693
+ 28694
+ :
+ O
+
+
+ al
+ al
+ 28696
+ 28698
+ NNP
+ O
+
+
+ concern
+ concern
+ 28699
+ 28706
+ NN
+ O
+
+
+ and
+ and
+ 28707
+ 28710
+ CC
+ O
+
+
+ I
+ I
+ 28711
+ 28712
+ PRP
+ O
+
+
+ am
+ be
+ 28713
+ 28715
+ VBP
+ O
+
+
+ proud
+ proud
+ 28716
+ 28721
+ JJ
+ O
+
+
+ to
+ to
+ 28722
+ 28724
+ TO
+ O
+
+
+ be
+ be
+ 28725
+ 28727
+ VB
+ O
+
+
+ the
+ the
+ 28728
+ 28731
+ DT
+ O
+
+
+ author
+ author
+ 28732
+ 28738
+ NN
+ O
+
+
+ of
+ of
+ 28740
+ 28742
+ IN
+ O
+
+
+ a
+ a
+ 28743
+ 28744
+ DT
+ O
+
+
+ provision
+ provision
+ 28745
+ 28754
+ NN
+ O
+
+
+ of
+ of
+ 28755
+ 28757
+ IN
+ O
+
+
+ U.S.
+ U.S.
+ 28758
+ 28762
+ NNP
+ LOCATION
+
+
+ law
+ law
+ 28763
+ 28766
+ NN
+ O
+
+
+ establishing
+ establish
+ 28767
+ 28779
+ VBG
+ O
+
+
+ a
+ a
+ 28780
+ 28781
+ DT
+ O
+
+
+ pro-
+ pro-
+ 28782
+ 28786
+ JJ
+ O
+
+
+ gram
+ gram
+ 28788
+ 28792
+ NN
+ O
+
+
+ ,
+ ,
+ 28792
+ 28793
+ ,
+ O
+
+
+ under
+ under
+ 28794
+ 28799
+ IN
+ O
+
+
+ the
+ the
+ 28800
+ 28803
+ DT
+ O
+
+
+ auspices
+ auspices
+ 28804
+ 28812
+ NNS
+ O
+
+
+ of
+ of
+ 28813
+ 28815
+ IN
+ O
+
+
+ our
+ we
+ 28816
+ 28819
+ PRP$
+ O
+
+
+ Agency
+ Agency
+ 28820
+ 28826
+ NNP
+ ORGANIZATION
+
+
+ for
+ for
+ 28827
+ 28830
+ IN
+ ORGANIZATION
+
+
+ International
+ International
+ 28832
+ 28845
+ NNP
+ ORGANIZATION
+
+
+ Development
+ Development
+ 28846
+ 28857
+ NNP
+ ORGANIZATION
+
+
+ ,
+ ,
+ 28857
+ 28858
+ ,
+ O
+
+
+ to
+ to
+ 28859
+ 28861
+ TO
+ O
+
+
+ assist
+ assist
+ 28862
+ 28868
+ VB
+ O
+
+
+ coun
+ coun
+ 28869
+ 28873
+ SYM
+ O
+
+
+ -
+ -
+ 28873
+ 28874
+ :
+ O
+
+
+ tries
+ try
+ 28876
+ 28881
+ VBZ
+ O
+
+
+ in
+ in
+ 28882
+ 28884
+ IN
+ O
+
+
+ the
+ the
+ 28885
+ 28888
+ DT
+ O
+
+
+ protection
+ protection
+ 28889
+ 28899
+ NN
+ O
+
+
+ of
+ of
+ 28900
+ 28902
+ IN
+ O
+
+
+ biological
+ biological
+ 28903
+ 28913
+ JJ
+ O
+
+
+ diversi
+ diversus
+ 28914
+ 28921
+ NN
+ O
+
+
+ -
+ -
+ 28921
+ 28922
+ :
+ O
+
+
+ ty
+ ty
+ 28924
+ 28926
+ NN
+ O
+
+
+ .
+ .
+ 28926
+ 28927
+ .
+ O
+
+
+ (ROOT (S (S (NP (DT This)) (, ,) (ADVP (RB too)) (, ,) (VP (VBZ is) (NP (NP (NP (DT an) (NN issue)) (PP (IN of) (NP (NN person)))) (: -) (NP (NNP al) (NN concern))))) (CC and) (S (NP (PRP I)) (VP (VBP am) (ADJP (JJ proud) (S (VP (TO to) (VP (VB be) (NP (NP (DT the) (NN author)) (PP (IN of) (NP (NP (DT a) (NN provision)) (PP (IN of) (NP (NNP U.S.) (NN law))))) (VP (VBG establishing) (NP (DT a) (JJ pro-) (NN gram)))))))))) (, ,) (S (PP (IN under) (NP (NP (DT the) (NNS auspices)) (PP (IN of) (NP (NP (PRP$ our) (NNP Agency)) (PP (IN for) (NP (NNP International) (NNP Development))))))) (, ,) (S (VP (TO to) (VP (VB assist) (X (SYM coun))))) (: -) (VP (VBZ tries) (PP (IN in) (NP (NP (DT the) (NN protection)) (PP (IN of) (NP (JJ biological) (NN diversi) (: -) (NN ty))))))) (. .)))
+
+
+ ROOT
+ issue
+
+
+ issue
+ This
+
+
+ issue
+ too
+
+
+ issue
+ is
+
+
+ issue
+ an
+
+
+ issue
+ of
+
+
+ of
+ person
+
+
+ concern
+ al
+
+
+ issue
+ concern
+
+
+ issue
+ and
+
+
+ proud
+ I
+
+
+ proud
+ am
+
+
+ issue
+ proud
+
+
+ author
+ to
+
+
+ author
+ be
+
+
+ author
+ the
+
+
+ proud
+ author
+
+
+ author
+ of
+
+
+ provision
+ a
+
+
+ of
+ provision
+
+
+ provision
+ of
+
+
+ law
+ U.S.
+
+
+ of
+ law
+
+
+ author
+ establishing
+
+
+ gram
+ a
+
+
+ gram
+ pro-
+
+
+ establishing
+ gram
+
+
+ tries
+ under
+
+
+ auspices
+ the
+
+
+ under
+ auspices
+
+
+ auspices
+ of
+
+
+ Agency
+ our
+
+
+ of
+ Agency
+
+
+ Agency
+ for
+
+
+ Development
+ International
+
+
+ for
+ Development
+
+
+ assist
+ to
+
+
+ tries
+ assist
+
+
+ assist
+ coun
+
+
+ issue
+ tries
+
+
+ tries
+ in
+
+
+ protection
+ the
+
+
+ in
+ protection
+
+
+ protection
+ of
+
+
+ ty
+ biological
+
+
+ ty
+ diversi
+
+
+ of
+ ty
+
+
+
+
+ ROOT
+ issue
+
+
+ issue
+ This
+
+
+ issue
+ too
+
+
+ issue
+ is
+
+
+ issue
+ an
+
+
+ issue
+ person
+
+
+ concern
+ al
+
+
+ issue
+ concern
+
+
+ proud
+ I
+
+
+ proud
+ am
+
+
+ issue
+ proud
+
+
+ author
+ to
+
+
+ author
+ be
+
+
+ author
+ the
+
+
+ proud
+ author
+
+
+ provision
+ a
+
+
+ author
+ provision
+
+
+ law
+ U.S.
+
+
+ provision
+ law
+
+
+ author
+ establishing
+
+
+ gram
+ a
+
+
+ gram
+ pro-
+
+
+ establishing
+ gram
+
+
+ auspices
+ the
+
+
+ tries
+ auspices
+
+
+ Agency
+ our
+
+
+ auspices
+ Agency
+
+
+ Development
+ International
+
+
+ Agency
+ Development
+
+
+ assist
+ to
+
+
+ tries
+ assist
+
+
+ assist
+ coun
+
+
+ issue
+ tries
+
+
+ protection
+ the
+
+
+ tries
+ protection
+
+
+ ty
+ biological
+
+
+ ty
+ diversi
+
+
+ protection
+ ty
+
+
+
+
+ ROOT
+ issue
+
+
+ issue
+ This
+
+
+ issue
+ too
+
+
+ issue
+ is
+
+
+ issue
+ an
+
+
+ issue
+ person
+
+
+ concern
+ al
+
+
+ issue
+ concern
+
+
+ proud
+ I
+
+
+ proud
+ am
+
+
+ issue
+ proud
+
+
+ author
+ to
+
+
+ author
+ be
+
+
+ author
+ the
+
+
+ proud
+ author
+
+
+ provision
+ a
+
+
+ author
+ provision
+
+
+ law
+ U.S.
+
+
+ provision
+ law
+
+
+ author
+ establishing
+
+
+ gram
+ a
+
+
+ gram
+ pro-
+
+
+ establishing
+ gram
+
+
+ auspices
+ the
+
+
+ tries
+ auspices
+
+
+ Agency
+ our
+
+
+ auspices
+ Agency
+
+
+ Development
+ International
+
+
+ Agency
+ Development
+
+
+ assist
+ to
+
+
+ tries
+ assist
+
+
+ assist
+ coun
+
+
+ issue
+ tries
+
+
+ protection
+ the
+
+
+ tries
+ protection
+
+
+ ty
+ biological
+
+
+ ty
+ diversi
+
+
+ protection
+ ty
+
+
+
+
+
+
+ With
+ with
+ 28928
+ 28932
+ IN
+ O
+
+
+ the
+ the
+ 28933
+ 28936
+ DT
+ O
+
+
+ rate
+ rate
+ 28937
+ 28941
+ NN
+ O
+
+
+ of
+ of
+ 28942
+ 28944
+ IN
+ O
+
+
+ extinctions
+ extinction
+ 28945
+ 28956
+ NNS
+ O
+
+
+ rapidly
+ rapidly
+ 28957
+ 28964
+ RB
+ O
+
+
+ ac
+ ac
+ 28965
+ 28967
+ SYM
+ O
+
+
+ -
+ -
+ 28967
+ 28968
+ :
+ O
+
+
+ celerating
+ celerate
+ 28970
+ 28980
+ VBG
+ O
+
+
+ there
+ there
+ 28981
+ 28986
+ RB
+ O
+
+
+ can
+ can
+ 28987
+ 28990
+ MD
+ O
+
+
+ be
+ be
+ 28991
+ 28993
+ VB
+ O
+
+
+ no
+ no
+ 28994
+ 28996
+ DT
+ O
+
+
+ doubt
+ doubt
+ 28997
+ 29002
+ NN
+ O
+
+
+ of
+ of
+ 29003
+ 29005
+ IN
+ O
+
+
+ the
+ the
+ 29006
+ 29009
+ DT
+ O
+
+
+ seri
+ serus
+ 29010
+ 29014
+ NN
+ O
+
+
+ -
+ -
+ 29014
+ 29015
+ :
+ O
+
+
+ ousness
+ ousness
+ 29017
+ 29024
+ NN
+ O
+
+
+ of
+ of
+ 29025
+ 29027
+ IN
+ O
+
+
+ the
+ the
+ 29028
+ 29031
+ DT
+ O
+
+
+ problem
+ problem
+ 29032
+ 29039
+ NN
+ O
+
+
+ .
+ .
+ 29039
+ 29040
+ .
+ O
+
+
+ (ROOT (FRAG (PP (IN With) (NP (NP (NP (DT the) (NN rate)) (PP (IN of) (NP (NP (NNS extinctions)) (ADVP (RB rapidly)))) (X (SYM ac))) (: -) (S (S (VP (VBG celerating) (ADVP (RB there)))) (VP (MD can) (VP (VB be) (NP (NP (NP (DT no) (NN doubt)) (PP (IN of) (NP (DT the) (NN seri)))) (: -) (NP (NP (NN ousness)) (PP (IN of) (NP (DT the) (NN problem)))))))))) (. .)))
+
+
+ ROOT
+ With
+
+
+ rate
+ the
+
+
+ With
+ rate
+
+
+ rate
+ of
+
+
+ of
+ extinctions
+
+
+ extinctions
+ rapidly
+
+
+ rate
+ ac
+
+
+ doubt
+ celerating
+
+
+ celerating
+ there
+
+
+ doubt
+ can
+
+
+ doubt
+ be
+
+
+ doubt
+ no
+
+
+ rate
+ doubt
+
+
+ doubt
+ of
+
+
+ seri
+ the
+
+
+ of
+ seri
+
+
+ doubt
+ ousness
+
+
+ ousness
+ of
+
+
+ problem
+ the
+
+
+ of
+ problem
+
+
+
+
+ ROOT
+ With
+
+
+ rate
+ the
+
+
+ With
+ rate
+
+
+ rate
+ extinctions
+
+
+ extinctions
+ rapidly
+
+
+ rate
+ ac
+
+
+ doubt
+ celerating
+
+
+ celerating
+ there
+
+
+ doubt
+ can
+
+
+ doubt
+ be
+
+
+ doubt
+ no
+
+
+ rate
+ doubt
+
+
+ seri
+ the
+
+
+ doubt
+ seri
+
+
+ doubt
+ ousness
+
+
+ problem
+ the
+
+
+ ousness
+ problem
+
+
+
+
+ ROOT
+ With
+
+
+ rate
+ the
+
+
+ With
+ rate
+
+
+ rate
+ extinctions
+
+
+ extinctions
+ rapidly
+
+
+ rate
+ ac
+
+
+ doubt
+ celerating
+
+
+ celerating
+ there
+
+
+ doubt
+ can
+
+
+ doubt
+ be
+
+
+ doubt
+ no
+
+
+ rate
+ doubt
+
+
+ seri
+ the
+
+
+ doubt
+ seri
+
+
+ doubt
+ ousness
+
+
+ problem
+ the
+
+
+ ousness
+ problem
+
+
+
+
+
+
+ Here
+ here
+ 29041
+ 29045
+ RB
+ O
+
+
+ in
+ in
+ 29046
+ 29048
+ IN
+ O
+
+
+ the
+ the
+ 29049
+ 29052
+ DT
+ O
+
+
+ pres
+ pre
+ 29053
+ 29057
+ NNS
+ O
+
+
+ -
+ -
+ 29057
+ 29058
+ :
+ O
+
+
+ ence
+ ence
+ 29060
+ 29064
+ NN
+ O
+
+
+ of
+ of
+ 29065
+ 29067
+ IN
+ O
+
+
+ so
+ so
+ 29068
+ 29070
+ RB
+ O
+
+
+ many
+ many
+ 29071
+ 29075
+ JJ
+ O
+
+
+ spiritual
+ spiritual
+ 29076
+ 29085
+ JJ
+ O
+
+
+ leaders
+ leader
+ 29086
+ 29093
+ NNS
+ O
+
+
+ I
+ I
+ 29094
+ 29095
+ PRP
+ O
+
+
+ can
+ can
+ 29096
+ 29099
+ MD
+ O
+
+
+ only
+ only
+ 29100
+ 29104
+ RB
+ O
+
+
+ wonder
+ wonder
+ 29106
+ 29112
+ VB
+ O
+
+
+ how
+ how
+ 29113
+ 29116
+ WRB
+ O
+
+
+ the
+ the
+ 29117
+ 29120
+ DT
+ O
+
+
+ divine
+ divine
+ 29121
+ 29127
+ NN
+ O
+
+
+ must
+ must
+ 29128
+ 29132
+ MD
+ O
+
+
+ view
+ view
+ 29133
+ 29137
+ VB
+ O
+
+
+ the
+ the
+ 29138
+ 29141
+ DT
+ O
+
+
+ de
+ de
+ 29142
+ 29144
+ FW
+ O
+
+
+ -
+ -
+ 29144
+ 29145
+ :
+ O
+
+
+ struction
+ struction
+ 29147
+ 29156
+ NN
+ O
+
+
+ of
+ of
+ 29157
+ 29159
+ IN
+ O
+
+
+ so
+ so
+ 29160
+ 29162
+ RB
+ O
+
+
+ many
+ many
+ 29163
+ 29167
+ JJ
+ O
+
+
+ of
+ of
+ 29168
+ 29170
+ IN
+ O
+
+
+ His
+ he
+ 29171
+ 29174
+ PRP$
+ O
+
+
+ creations
+ creation
+ 29175
+ 29184
+ NNS
+ O
+
+
+ .
+ .
+ 29184
+ 29185
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB Here)) (PP (IN in) (NP (NP (DT the) (NNS pres)) (: -) (NP (NP (NN ence)) (PP (IN of) (NP (ADJP (RB so) (JJ many)) (JJ spiritual) (NNS leaders)))))) (NP (PRP I)) (VP (MD can) (ADVP (RB only)) (VP (VB wonder) (SBAR (WHADVP (WRB how)) (S (NP (DT the) (NN divine)) (VP (MD must) (VP (VB view) (NP (NP (DT the) (FW de)) (: -) (NP (NP (NN struction)) (PP (IN of) (NP (NP (RB so) (JJ many)) (PP (IN of) (NP (PRP$ His) (NNS creations))))))))))))) (. .)))
+
+
+ ROOT
+ wonder
+
+
+ wonder
+ Here
+
+
+ wonder
+ in
+
+
+ pres
+ the
+
+
+ in
+ pres
+
+
+ pres
+ ence
+
+
+ ence
+ of
+
+
+ many
+ so
+
+
+ leaders
+ many
+
+
+ leaders
+ spiritual
+
+
+ of
+ leaders
+
+
+ wonder
+ I
+
+
+ wonder
+ can
+
+
+ wonder
+ only
+
+
+ view
+ how
+
+
+ divine
+ the
+
+
+ view
+ divine
+
+
+ view
+ must
+
+
+ wonder
+ view
+
+
+ de
+ the
+
+
+ view
+ de
+
+
+ de
+ struction
+
+
+ struction
+ of
+
+
+ many
+ so
+
+
+ of
+ many
+
+
+ many
+ of
+
+
+ creations
+ His
+
+
+ of
+ creations
+
+
+
+
+ ROOT
+ wonder
+
+
+ wonder
+ Here
+
+
+ pres
+ the
+
+
+ wonder
+ pres
+
+
+ pres
+ ence
+
+
+ many
+ so
+
+
+ leaders
+ many
+
+
+ leaders
+ spiritual
+
+
+ ence
+ leaders
+
+
+ wonder
+ I
+
+
+ wonder
+ can
+
+
+ wonder
+ only
+
+
+ view
+ how
+
+
+ divine
+ the
+
+
+ view
+ divine
+
+
+ view
+ must
+
+
+ wonder
+ view
+
+
+ de
+ the
+
+
+ view
+ de
+
+
+ de
+ struction
+
+
+ many
+ so
+
+
+ struction
+ many
+
+
+ creations
+ His
+
+
+ many
+ creations
+
+
+
+
+ ROOT
+ wonder
+
+
+ wonder
+ Here
+
+
+ pres
+ the
+
+
+ wonder
+ pres
+
+
+ pres
+ ence
+
+
+ many
+ so
+
+
+ leaders
+ many
+
+
+ leaders
+ spiritual
+
+
+ ence
+ leaders
+
+
+ wonder
+ I
+
+
+ wonder
+ can
+
+
+ wonder
+ only
+
+
+ view
+ how
+
+
+ divine
+ the
+
+
+ view
+ divine
+
+
+ view
+ must
+
+
+ wonder
+ view
+
+
+ de
+ the
+
+
+ view
+ de
+
+
+ de
+ struction
+
+
+ many
+ so
+
+
+ struction
+ many
+
+
+ creations
+ His
+
+
+ many
+ creations
+
+
+
+
+
+
+ And
+ and
+ 29186
+ 29189
+ CC
+ O
+
+
+ I
+ I
+ 29190
+ 29191
+ PRP
+ O
+
+
+ wonder
+ wonder
+ 29193
+ 29199
+ VBP
+ O
+
+
+ what
+ what
+ 29200
+ 29204
+ WP
+ O
+
+
+ He
+ he
+ 29205
+ 29207
+ PRP
+ O
+
+
+ must
+ must
+ 29208
+ 29212
+ MD
+ O
+
+
+ think
+ think
+ 29213
+ 29218
+ VB
+ O
+
+
+ of
+ of
+ 29219
+ 29221
+ IN
+ O
+
+
+ the
+ the
+ 29222
+ 29225
+ DT
+ O
+
+
+ cavalier
+ cavalier
+ 29226
+ 29234
+ JJ
+ O
+
+
+ manner
+ manner
+ 29236
+ 29242
+ NN
+ O
+
+
+ In
+ in
+ 29243
+ 29245
+ IN
+ O
+
+
+ which
+ which
+ 29246
+ 29251
+ WDT
+ O
+
+
+ these
+ these
+ 29252
+ 29257
+ DT
+ O
+
+
+ extinctions
+ extinction
+ 29258
+ 29269
+ NNS
+ O
+
+
+ are
+ be
+ 29270
+ 29273
+ VBP
+ O
+
+
+ being
+ be
+ 29274
+ 29279
+ VBG
+ O
+
+
+ carried
+ carry
+ 29281
+ 29288
+ VBD
+ O
+
+
+ out-elephants
+ out-elephants
+ 29289
+ 29302
+ JJ
+ O
+
+
+ and
+ and
+ 29303
+ 29306
+ CC
+ O
+
+
+ rhinos
+ rhino
+ 29307
+ 29313
+ NNS
+ O
+
+
+ destroyed
+ destroy
+ 29314
+ 29323
+ VBN
+ O
+
+
+ for
+ for
+ 29325
+ 29328
+ IN
+ O
+
+
+ ivory
+ ivory
+ 29329
+ 29334
+ NN
+ O
+
+
+ trinkets
+ trinket
+ 29335
+ 29343
+ NNS
+ O
+
+
+ and
+ and
+ 29344
+ 29347
+ CC
+ O
+
+
+ aphrodisiac
+ aphrodisiac
+ 29348
+ 29359
+ NN
+ O
+
+
+ powder
+ powder
+ 29360
+ 29366
+ NN
+ O
+
+
+ ,
+ ,
+ 29366
+ 29367
+ ,
+ O
+
+
+ or
+ or
+ 29369
+ 29371
+ CC
+ O
+
+
+ perhaps
+ perhaps
+ 29372
+ 29379
+ RB
+ O
+
+
+ worse
+ worse
+ 29380
+ 29385
+ JJR
+ O
+
+
+ ,
+ ,
+ 29385
+ 29386
+ ,
+ O
+
+
+ entire
+ entire
+ 29387
+ 29393
+ JJ
+ O
+
+
+ species
+ species
+ 29394
+ 29401
+ NNS
+ O
+
+
+ obliterated
+ obliterate
+ 29402
+ 29413
+ VBD
+ O
+
+
+ without
+ without
+ 29415
+ 29422
+ IN
+ O
+
+
+ man
+ man
+ 29423
+ 29426
+ NN
+ O
+
+
+ even
+ even
+ 29427
+ 29431
+ RB
+ O
+
+
+ knowing
+ know
+ 29432
+ 29439
+ VBG
+ O
+
+
+ what
+ what
+ 29440
+ 29444
+ WP
+ O
+
+
+ was
+ be
+ 29445
+ 29448
+ VBD
+ O
+
+
+ once
+ once
+ 29449
+ 29453
+ RB
+ DATE
+ PAST_REF
+ PAST_REF
+
+
+ there
+ there
+ 29455
+ 29460
+ RB
+ O
+
+
+ .
+ .
+ 29460
+ 29461
+ .
+ O
+
+
+ (ROOT (S (CC And) (S (NP (PRP I)) (VP (VBP wonder) (SBAR (WHNP (WP what)) (S (NP (PRP He)) (VP (MD must) (VP (VB think) (PP (IN of) (NP (NP (NP (DT the) (JJ cavalier) (NN manner)) (SBAR (WHPP (IN In) (WHNP (WDT which))) (S (NP (DT these) (NNS extinctions)) (VP (VBP are) (VP (VBG being) (VP (VBD carried) (S (ADJP (JJ out-elephants))))))))) (CC and) (NP (NP (NNS rhinos)) (VP (VBN destroyed) (PP (IN for) (NP (NN ivory) (NNS trinkets))))))))))))) (CC and) (S (NP (NP (NP (NN aphrodisiac) (NN powder))) (, ,) (CC or) (NP (ADVP (RB perhaps)) (ADJP (JJR worse)))) (, ,) (NP (JJ entire) (NNS species)) (VP (VBD obliterated) (PP (IN without) (NP (NN man))) (S (VP (ADVP (RB even)) (VBG knowing) (SBAR (WHNP (WP what)) (S (VP (VBD was) (ADVP (RB once) (RB there))))))))) (. .)))
+
+
+ ROOT
+ wonder
+
+
+ wonder
+ And
+
+
+ wonder
+ I
+
+
+ think
+ what
+
+
+ think
+ He
+
+
+ think
+ must
+
+
+ wonder
+ think
+
+
+ think
+ of
+
+
+ manner
+ the
+
+
+ manner
+ cavalier
+
+
+ of
+ manner
+
+
+ carried
+ In
+
+
+ In
+ which
+
+
+ extinctions
+ these
+
+
+ carried
+ extinctions
+
+
+ carried
+ are
+
+
+ carried
+ being
+
+
+ manner
+ carried
+
+
+ carried
+ out-elephants
+
+
+ manner
+ and
+
+
+ manner
+ rhinos
+
+
+ rhinos
+ destroyed
+
+
+ destroyed
+ for
+
+
+ trinkets
+ ivory
+
+
+ for
+ trinkets
+
+
+ wonder
+ and
+
+
+ powder
+ aphrodisiac
+
+
+ obliterated
+ powder
+
+
+ powder
+ or
+
+
+ worse
+ perhaps
+
+
+ powder
+ worse
+
+
+ species
+ entire
+
+
+ obliterated
+ species
+
+
+ wonder
+ obliterated
+
+
+ obliterated
+ without
+
+
+ without
+ man
+
+
+ knowing
+ even
+
+
+ obliterated
+ knowing
+
+
+ was
+ what
+
+
+ knowing
+ was
+
+
+ there
+ once
+
+
+ was
+ there
+
+
+
+
+ ROOT
+ wonder
+
+
+ wonder
+ I
+
+
+ think
+ what
+
+
+ think
+ He
+
+
+ think
+ must
+
+
+ wonder
+ think
+
+
+ manner
+ the
+
+
+ manner
+ cavalier
+
+
+ think
+ manner
+
+
+ carried
+ which
+
+
+ extinctions
+ these
+
+
+ carried
+ extinctions
+
+
+ carried
+ are
+
+
+ carried
+ being
+
+
+ manner
+ carried
+
+
+ carried
+ out-elephants
+
+
+ manner
+ rhinos
+
+
+ rhinos
+ destroyed
+
+
+ trinkets
+ ivory
+
+
+ destroyed
+ trinkets
+
+
+ powder
+ aphrodisiac
+
+
+ obliterated
+ powder
+
+
+ worse
+ perhaps
+
+
+ powder
+ worse
+
+
+ species
+ entire
+
+
+ obliterated
+ species
+
+
+ wonder
+ obliterated
+
+
+ obliterated
+ man
+
+
+ knowing
+ even
+
+
+ obliterated
+ knowing
+
+
+ was
+ what
+
+
+ knowing
+ was
+
+
+ there
+ once
+
+
+ was
+ there
+
+
+
+
+ ROOT
+ wonder
+
+
+ wonder
+ I
+
+
+ think
+ what
+
+
+ think
+ He
+
+
+ think
+ must
+
+
+ wonder
+ think
+
+
+ manner
+ the
+
+
+ manner
+ cavalier
+
+
+ think
+ manner
+
+
+ carried
+ which
+
+
+ extinctions
+ these
+
+
+ carried
+ extinctions
+
+
+ carried
+ are
+
+
+ carried
+ being
+
+
+ manner
+ carried
+
+
+ carried
+ out-elephants
+
+
+ think
+ rhinos
+
+
+ manner
+ rhinos
+
+
+ rhinos
+ destroyed
+
+
+ trinkets
+ ivory
+
+
+ destroyed
+ trinkets
+
+
+ powder
+ aphrodisiac
+
+
+ obliterated
+ powder
+
+
+ worse
+ perhaps
+
+
+ powder
+ worse
+
+
+ obliterated
+ worse
+
+
+ species
+ entire
+
+
+ obliterated
+ species
+
+
+ wonder
+ obliterated
+
+
+ obliterated
+ man
+
+
+ knowing
+ even
+
+
+ obliterated
+ knowing
+
+
+ was
+ what
+
+
+ knowing
+ was
+
+
+ there
+ once
+
+
+ was
+ there
+
+
+
+
+
+
+ A
+ a
+ 29465
+ 29466
+ DT
+ O
+
+
+ treaty
+ treaty
+ 29467
+ 29473
+ NN
+ O
+
+
+ to
+ to
+ 29474
+ 29476
+ TO
+ O
+
+
+ conserve
+ conserve
+ 29477
+ 29485
+ VB
+ O
+
+
+ biological
+ biological
+ 29486
+ 29496
+ JJ
+ O
+
+
+ diversity
+ diversity
+ 29497
+ 29506
+ NN
+ O
+
+
+ should
+ should
+ 29508
+ 29514
+ MD
+ O
+
+
+ include
+ include
+ 29515
+ 29522
+ VB
+ O
+
+
+ provisions
+ provision
+ 29523
+ 29533
+ NNS
+ O
+
+
+ under
+ under
+ 29534
+ 29539
+ IN
+ O
+
+
+ which
+ which
+ 29540
+ 29545
+ WDT
+ O
+
+
+ coun
+ coun
+ 29546
+ 29550
+ SYM
+ O
+
+
+ -
+ -
+ 29550
+ 29551
+ :
+ O
+
+
+ tries
+ try
+ 29553
+ 29558
+ VBZ
+ O
+
+
+ would
+ would
+ 29559
+ 29564
+ MD
+ O
+
+
+ register
+ register
+ 29565
+ 29573
+ VB
+ O
+
+
+ species-rich
+ species-rich
+ 29574
+ 29586
+ JJ
+ O
+
+
+ habitats
+ habitat
+ 29587
+ 29595
+ NNS
+ O
+
+
+ ,
+ ,
+ 29595
+ 29596
+ ,
+ O
+
+
+ and
+ and
+ 29598
+ 29601
+ CC
+ O
+
+
+ in
+ in
+ 29602
+ 29604
+ IN
+ O
+
+
+ particular
+ particular
+ 29605
+ 29615
+ JJ
+ O
+
+
+ ,
+ ,
+ 29615
+ 29616
+ ,
+ O
+
+
+ the
+ the
+ 29617
+ 29620
+ DT
+ O
+
+
+ habitats
+ habitat
+ 29621
+ 29629
+ NNS
+ O
+
+
+ of
+ of
+ 29630
+ 29632
+ IN
+ O
+
+
+ endan
+ endan
+ 29633
+ 29638
+ NN
+ O
+
+
+ -
+ -
+ 29638
+ 29639
+ :
+ O
+
+
+ gered
+ gered
+ 29641
+ 29646
+ JJ
+ O
+
+
+ species
+ species
+ 29647
+ 29654
+ NNS
+ O
+
+
+ .
+ .
+ 29654
+ 29655
+ .
+ O
+
+
+ (ROOT (S (NP (DT A) (NN treaty) (S (VP (TO to) (VP (VB conserve) (NP (JJ biological) (NN diversity)))))) (VP (MD should) (VP (VB include) (NP (NP (NNS provisions)) (SBAR (WHPP (IN under) (WHNP (WDT which))) (FRAG (X (SYM coun)) (: -) (VP (VBZ tries) (SBAR (S (VP (VP (MD would) (VP (VB register) (NP (JJ species-rich) (NNS habitats)))) (, ,) (CC and) (VP (PP (IN in) (ADJP (JJ particular))) (, ,) (NP (NP (NP (DT the) (NNS habitats)) (PP (IN of) (NP (NN endan)))) (: -) (NP (JJ gered) (NNS species)))))))) (. .))))))))
+
+
+ ROOT
+ include
+
+
+ treaty
+ A
+
+
+ include
+ treaty
+
+
+ conserve
+ to
+
+
+ treaty
+ conserve
+
+
+ diversity
+ biological
+
+
+ conserve
+ diversity
+
+
+ include
+ should
+
+
+ include
+ provisions
+
+
+ tries
+ under
+
+
+ under
+ which
+
+
+ tries
+ coun
+
+
+ provisions
+ tries
+
+
+ register
+ would
+
+
+ tries
+ register
+
+
+ habitats
+ species-rich
+
+
+ register
+ habitats
+
+
+ register
+ and
+
+
+ habitats
+ in
+
+
+ in
+ particular
+
+
+ habitats
+ the
+
+
+ register
+ habitats
+
+
+ habitats
+ of
+
+
+ of
+ endan
+
+
+ species
+ gered
+
+
+ habitats
+ species
+
+
+
+
+ ROOT
+ include
+
+
+ treaty
+ A
+
+
+ include
+ treaty
+
+
+ conserve
+ to
+
+
+ treaty
+ conserve
+
+
+ diversity
+ biological
+
+
+ conserve
+ diversity
+
+
+ include
+ should
+
+
+ include
+ provisions
+
+
+ tries
+ which
+
+
+ tries
+ coun
+
+
+ provisions
+ tries
+
+
+ register
+ would
+
+
+ tries
+ register
+
+
+ habitats
+ species-rich
+
+
+ register
+ habitats
+
+
+ habitats
+ particular
+
+
+ habitats
+ the
+
+
+ register
+ habitats
+
+
+ habitats
+ endan
+
+
+ species
+ gered
+
+
+ habitats
+ species
+
+
+
+
+ ROOT
+ include
+
+
+ treaty
+ A
+
+
+ include
+ treaty
+
+
+ conserve
+ to
+
+
+ treaty
+ conserve
+
+
+ diversity
+ biological
+
+
+ conserve
+ diversity
+
+
+ include
+ should
+
+
+ include
+ provisions
+
+
+ tries
+ which
+
+
+ tries
+ coun
+
+
+ provisions
+ tries
+
+
+ register
+ would
+
+
+ tries
+ register
+
+
+ habitats
+ species-rich
+
+
+ register
+ habitats
+
+
+ habitats
+ particular
+
+
+ habitats
+ the
+
+
+ tries
+ habitats
+
+
+ register
+ habitats
+
+
+ habitats
+ endan
+
+
+ species
+ gered
+
+
+ habitats
+ species
+
+
+
+
+
+
+ Registration
+ registration
+ 29656
+ 29668
+ NN
+ O
+
+
+ of
+ of
+ 29669
+ 29671
+ IN
+ O
+
+
+ the
+ the
+ 29672
+ 29675
+ DT
+ O
+
+
+ habitat
+ habitat
+ 29676
+ 29683
+ NN
+ O
+
+
+ would
+ would
+ 29685
+ 29690
+ MD
+ O
+
+
+ include
+ include
+ 29691
+ 29698
+ VB
+ O
+
+
+ an
+ a
+ 29699
+ 29701
+ DT
+ O
+
+
+ obligation
+ obligation
+ 29702
+ 29712
+ NN
+ O
+
+
+ to
+ to
+ 29713
+ 29715
+ TO
+ O
+
+
+ protect
+ protect
+ 29716
+ 29723
+ VB
+ O
+
+
+ the
+ the
+ 29724
+ 29727
+ DT
+ O
+
+
+ habitat
+ habitat
+ 29729
+ 29736
+ NN
+ O
+
+
+ ,
+ ,
+ 29736
+ 29737
+ ,
+ O
+
+
+ and
+ and
+ 29738
+ 29741
+ CC
+ O
+
+
+ the
+ the
+ 29742
+ 29745
+ DT
+ O
+
+
+ species
+ species
+ 29746
+ 29753
+ NNS
+ O
+
+
+ contained
+ contain
+ 29754
+ 29763
+ VBD
+ O
+
+
+ therein
+ therein
+ 29764
+ 29771
+ RB
+ O
+
+
+ .
+ .
+ 29771
+ 29772
+ .
+ O
+
+
+ (ROOT (S (S (NP (NP (NN Registration)) (PP (IN of) (NP (DT the) (NN habitat)))) (VP (MD would) (VP (VB include) (NP (DT an) (NN obligation) (S (VP (TO to) (VP (VB protect) (NP (DT the) (NN habitat))))))))) (, ,) (CC and) (S (NP (DT the) (NNS species)) (VP (VBD contained) (ADVP (RB therein)))) (. .)))
+
+
+ ROOT
+ include
+
+
+ include
+ Registration
+
+
+ Registration
+ of
+
+
+ habitat
+ the
+
+
+ of
+ habitat
+
+
+ include
+ would
+
+
+ obligation
+ an
+
+
+ include
+ obligation
+
+
+ protect
+ to
+
+
+ obligation
+ protect
+
+
+ habitat
+ the
+
+
+ protect
+ habitat
+
+
+ include
+ and
+
+
+ species
+ the
+
+
+ contained
+ species
+
+
+ include
+ contained
+
+
+ contained
+ therein
+
+
+
+
+ ROOT
+ include
+
+
+ include
+ Registration
+
+
+ habitat
+ the
+
+
+ Registration
+ habitat
+
+
+ include
+ would
+
+
+ obligation
+ an
+
+
+ include
+ obligation
+
+
+ protect
+ to
+
+
+ obligation
+ protect
+
+
+ habitat
+ the
+
+
+ protect
+ habitat
+
+
+ species
+ the
+
+
+ contained
+ species
+
+
+ include
+ contained
+
+
+ contained
+ therein
+
+
+
+
+ ROOT
+ include
+
+
+ include
+ Registration
+
+
+ habitat
+ the
+
+
+ Registration
+ habitat
+
+
+ include
+ would
+
+
+ obligation
+ an
+
+
+ include
+ obligation
+
+
+ protect
+ to
+
+
+ obligation
+ protect
+
+
+ habitat
+ the
+
+
+ protect
+ habitat
+
+
+ species
+ the
+
+
+ contained
+ species
+
+
+ include
+ contained
+
+
+ contained
+ therein
+
+
+
+
+
+
+ In
+ in
+ 29774
+ 29776
+ IN
+ O
+
+
+ my
+ my
+ 29777
+ 29779
+ PRP$
+ O
+
+
+ view
+ view
+ 29780
+ 29784
+ NN
+ O
+
+
+ ,
+ ,
+ 29784
+ 29785
+ ,
+ O
+
+
+ a
+ a
+ 29786
+ 29787
+ DT
+ O
+
+
+ treaty
+ treaty
+ 29788
+ 29794
+ NN
+ O
+
+
+ should
+ should
+ 29795
+ 29801
+ MD
+ O
+
+
+ spell
+ spell
+ 29802
+ 29807
+ VB
+ O
+
+
+ out
+ out
+ 29808
+ 29811
+ RP
+ O
+
+
+ mini
+ mini
+ 29812
+ 29816
+ SYM
+ O
+
+
+ -
+ -
+ 29816
+ 29817
+ :
+ O
+
+
+ mum
+ mum
+ 29819
+ 29822
+ NN
+ O
+
+
+ standards
+ standard
+ 29823
+ 29832
+ NNS
+ O
+
+
+ for
+ for
+ 29833
+ 29836
+ IN
+ O
+
+
+ habitat
+ habitat
+ 29837
+ 29844
+ NN
+ O
+
+
+ and
+ and
+ 29845
+ 29848
+ CC
+ O
+
+
+ species
+ species
+ 29849
+ 29856
+ NNS
+ O
+
+
+ pro-
+ pro-
+ 29857
+ 29861
+ JJ
+ O
+
+
+ tection
+ tection
+ 29863
+ 29870
+ NN
+ O
+
+
+ .
+ .
+ 29870
+ 29871
+ .
+ O
+
+
+ (ROOT (S (PP (IN In) (NP (PRP$ my) (NN view))) (, ,) (NP (DT a) (NN treaty)) (VP (MD should) (VP (VB spell) (PRT (RP out)) (FRAG (PP (X (SYM mini)) (: -) (PP (NP (NN mum) (NNS standards)) (IN for) (NP (NP (NN habitat)) (CC and) (NP (NP (NNS species)) (NP (JJ pro-) (NN tection))))) (. .)))))))
+
+
+ ROOT
+ spell
+
+
+ spell
+ In
+
+
+ view
+ my
+
+
+ In
+ view
+
+
+ treaty
+ a
+
+
+ spell
+ treaty
+
+
+ spell
+ should
+
+
+ spell
+ out
+
+
+ for
+ mini
+
+
+ standards
+ mum
+
+
+ for
+ standards
+
+
+ spell
+ for
+
+
+ for
+ habitat
+
+
+ habitat
+ and
+
+
+ habitat
+ species
+
+
+ tection
+ pro-
+
+
+ species
+ tection
+
+
+
+
+ ROOT
+ spell
+
+
+ view
+ my
+
+
+ spell
+ view
+
+
+ treaty
+ a
+
+
+ spell
+ treaty
+
+
+ spell
+ should
+
+
+ spell
+ out
+
+
+ for
+ mini
+
+
+ standards
+ mum
+
+
+ for
+ standards
+
+
+ spell
+ for
+
+
+ for
+ habitat
+
+
+ habitat
+ species
+
+
+ tection
+ pro-
+
+
+ species
+ tection
+
+
+
+
+ ROOT
+ spell
+
+
+ view
+ my
+
+
+ spell
+ view
+
+
+ treaty
+ a
+
+
+ spell
+ treaty
+
+
+ spell
+ should
+
+
+ spell
+ out
+
+
+ for
+ mini
+
+
+ standards
+ mum
+
+
+ for
+ standards
+
+
+ spell
+ for
+
+
+ for
+ habitat
+
+
+ for
+ species
+
+
+ habitat
+ species
+
+
+ tection
+ pro-
+
+
+ species
+ tection
+
+
+
+
+
+
+ In
+ in
+ 29872
+ 29874
+ IN
+ O
+
+
+ return
+ return
+ 29875
+ 29881
+ NN
+ O
+
+
+ for
+ for
+ 29882
+ 29885
+ IN
+ O
+
+
+ protecting
+ protect
+ 29886
+ 29896
+ VBG
+ O
+
+
+ these
+ these
+ 29897
+ 29902
+ DT
+ O
+
+
+ habi
+ habus
+ 29903
+ 29907
+ NNS
+ O
+
+
+ -
+ -
+ 29907
+ 29908
+ :
+ O
+
+
+ tats
+ tat
+ 29910
+ 29914
+ NNS
+ O
+
+
+ ,
+ ,
+ 29914
+ 29915
+ ,
+ O
+
+
+ the
+ the
+ 29916
+ 29919
+ DT
+ O
+
+
+ registering
+ register
+ 29920
+ 29931
+ VBG
+ O
+
+
+ countries
+ country
+ 29932
+ 29941
+ NNS
+ O
+
+
+ should
+ should
+ 29942
+ 29948
+ MD
+ O
+
+
+ receive
+ receive
+ 29949
+ 29956
+ VB
+ O
+
+
+ technical
+ technical
+ 29958
+ 29967
+ JJ
+ O
+
+
+ assistance
+ assistance
+ 29968
+ 29978
+ NN
+ O
+
+
+ for
+ for
+ 29979
+ 29982
+ IN
+ O
+
+
+ their
+ they
+ 29983
+ 29988
+ PRP$
+ O
+
+
+ protective
+ protective
+ 29989
+ 29999
+ JJ
+ O
+
+
+ ac
+ ac
+ 30000
+ 30002
+ NN
+ O
+
+
+ -
+ -
+ 30002
+ 30003
+ :
+ O
+
+
+ tivities
+ tivity
+ 30005
+ 30013
+ NNS
+ O
+
+
+ and
+ and
+ 30014
+ 30017
+ CC
+ O
+
+
+ perhaps
+ perhaps
+ 30018
+ 30025
+ RB
+ O
+
+
+ a
+ a
+ 30026
+ 30027
+ DT
+ O
+
+
+ priority
+ priority
+ 30028
+ 30036
+ NN
+ O
+
+
+ for
+ for
+ 30037
+ 30040
+ IN
+ O
+
+
+ other
+ other
+ 30041
+ 30046
+ JJ
+ O
+
+
+ kinds
+ kind
+ 30048
+ 30053
+ NNS
+ O
+
+
+ of
+ of
+ 30054
+ 30056
+ IN
+ O
+
+
+ assistance
+ assistance
+ 30057
+ 30067
+ NN
+ O
+
+
+ Intended
+ intend
+ 30068
+ 30076
+ VBN
+ O
+
+
+ to
+ to
+ 30077
+ 30079
+ TO
+ O
+
+
+ encourage
+ encourage
+ 30080
+ 30089
+ VB
+ O
+
+
+ January
+ January
+ 30097
+ 30104
+ NNP
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ 23
+ 23
+ 30105
+ 30107
+ CD
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ ,
+ ,
+ 30107
+ 30108
+ ,
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ 1990
+ 1990
+ 30109
+ 30113
+ CD
+ DATE
+ 1990-01-23
+ 1990-01-23
+
+
+ CO
+ CO
+ 30131
+ 30133
+ NNP
+ O
+
+
+ local
+ local
+ 30135
+ 30140
+ JJ
+ O
+
+
+ peoples
+ people
+ 30141
+ 30148
+ NNS
+ O
+
+
+ to
+ to
+ 30149
+ 30151
+ TO
+ O
+
+
+ value
+ value
+ 30152
+ 30157
+ VB
+ O
+
+
+ the
+ the
+ 30158
+ 30161
+ DT
+ O
+
+
+ preserved
+ preserved
+ 30162
+ 30171
+ JJ
+ O
+
+
+ life
+ life
+ 30172
+ 30176
+ NN
+ O
+
+
+ re
+ re
+ 30177
+ 30179
+ SYM
+ O
+
+
+ -
+ -
+ 30179
+ 30180
+ :
+ O
+
+
+ sources
+ source
+ 30182
+ 30189
+ NNS
+ O
+
+
+ .
+ .
+ 30189
+ 30190
+ .
+ O
+
+
+ (ROOT (S (PP (IN In) (NP (NP (NN return)) (PP (IN for) (S (VP (VBG protecting) (NP (NP (DT these) (NNS habi)) (: -) (NP (NNS tats)))))))) (, ,) (NP (DT the) (VBG registering) (NNS countries)) (VP (MD should) (VP (VB receive) (NP (NP (NP (JJ technical) (NN assistance)) (PP (IN for) (NP (PRP$ their) (JJ protective) (NN ac)))) (: -) (NP (NP (NNS tivities)) (CC and) (NP (RB perhaps) (DT a) (NN priority)))) (PP (IN for) (NP (NP (JJ other) (NNS kinds)) (PP (IN of) (NP (NP (NN assistance)) (VP (VBN Intended) (S (VP (TO to) (VP (VB encourage) (NP-TMP (NNP January) (CD 23) (, ,) (CD 1990)) (NP (NP (NNP CO) (JJ local) (NNS peoples)) (SBAR (S (VP (TO to) (VP (VB value) (NP (DT the) (JJ preserved) (NN life)) (FRAG (X (SYM re)) (: -) (NP (NNS sources)))))))))))))))))) (. .)))
+
+
+ ROOT
+ receive
+
+
+ receive
+ In
+
+
+ In
+ return
+
+
+ return
+ for
+
+
+ for
+ protecting
+
+
+ habi
+ these
+
+
+ protecting
+ habi
+
+
+ habi
+ tats
+
+
+ countries
+ the
+
+
+ countries
+ registering
+
+
+ receive
+ countries
+
+
+ receive
+ should
+
+
+ assistance
+ technical
+
+
+ receive
+ assistance
+
+
+ assistance
+ for
+
+
+ ac
+ their
+
+
+ ac
+ protective
+
+
+ for
+ ac
+
+
+ assistance
+ tivities
+
+
+ tivities
+ and
+
+
+ priority
+ perhaps
+
+
+ priority
+ a
+
+
+ tivities
+ priority
+
+
+ receive
+ for
+
+
+ kinds
+ other
+
+
+ for
+ kinds
+
+
+ kinds
+ of
+
+
+ of
+ assistance
+
+
+ assistance
+ Intended
+
+
+ encourage
+ to
+
+
+ Intended
+ encourage
+
+
+ encourage
+ January
+
+
+ January
+ 23
+
+
+ January
+ 1990
+
+
+ peoples
+ CO
+
+
+ peoples
+ local
+
+
+ encourage
+ peoples
+
+
+ value
+ to
+
+
+ peoples
+ value
+
+
+ life
+ the
+
+
+ life
+ preserved
+
+
+ value
+ life
+
+
+ sources
+ re
+
+
+ value
+ sources
+
+
+
+
+ ROOT
+ receive
+
+
+ receive
+ return
+
+
+ return
+ protecting
+
+
+ habi
+ these
+
+
+ protecting
+ habi
+
+
+ habi
+ tats
+
+
+ countries
+ the
+
+
+ countries
+ registering
+
+
+ receive
+ countries
+
+
+ receive
+ should
+
+
+ assistance
+ technical
+
+
+ receive
+ assistance
+
+
+ ac
+ their
+
+
+ ac
+ protective
+
+
+ assistance
+ ac
+
+
+ assistance
+ tivities
+
+
+ priority
+ perhaps
+
+
+ priority
+ a
+
+
+ tivities
+ priority
+
+
+ kinds
+ other
+
+
+ receive
+ kinds
+
+
+ kinds
+ assistance
+
+
+ assistance
+ Intended
+
+
+ encourage
+ to
+
+
+ Intended
+ encourage
+
+
+ encourage
+ January
+
+
+ January
+ 23
+
+
+ January
+ 1990
+
+
+ peoples
+ CO
+
+
+ peoples
+ local
+
+
+ encourage
+ peoples
+
+
+ value
+ to
+
+
+ peoples
+ value
+
+
+ life
+ the
+
+
+ life
+ preserved
+
+
+ value
+ life
+
+
+ sources
+ re
+
+
+ value
+ sources
+
+
+
+
+ ROOT
+ receive
+
+
+ receive
+ return
+
+
+ return
+ protecting
+
+
+ habi
+ these
+
+
+ protecting
+ habi
+
+
+ habi
+ tats
+
+
+ countries
+ the
+
+
+ countries
+ registering
+
+
+ receive
+ countries
+
+
+ receive
+ should
+
+
+ assistance
+ technical
+
+
+ receive
+ assistance
+
+
+ ac
+ their
+
+
+ ac
+ protective
+
+
+ assistance
+ ac
+
+
+ assistance
+ tivities
+
+
+ priority
+ perhaps
+
+
+ priority
+ a
+
+
+ assistance
+ priority
+
+
+ tivities
+ priority
+
+
+ kinds
+ other
+
+
+ receive
+ kinds
+
+
+ kinds
+ assistance
+
+
+ assistance
+ Intended
+
+
+ encourage
+ to
+
+
+ Intended
+ encourage
+
+
+ encourage
+ January
+
+
+ January
+ 23
+
+
+ January
+ 1990
+
+
+ peoples
+ CO
+
+
+ peoples
+ local
+
+
+ encourage
+ peoples
+
+
+ value
+ to
+
+
+ peoples
+ value
+
+
+ life
+ the
+
+
+ life
+ preserved
+
+
+ value
+ life
+
+
+ sources
+ re
+
+
+ value
+ sources
+
+
+
+
+
+
+ Finally
+ finally
+ 30194
+ 30201
+ RB
+ O
+
+
+ ,
+ ,
+ 30201
+ 30202
+ ,
+ O
+
+
+ I
+ I
+ 30203
+ 30204
+ PRP
+ O
+
+
+ would
+ would
+ 30205
+ 30210
+ MD
+ O
+
+
+ note
+ note
+ 30211
+ 30215
+ VB
+ O
+
+
+ that
+ that
+ 30216
+ 30220
+ IN
+ O
+
+
+ the
+ the
+ 30221
+ 30224
+ DT
+ DURATION
+ P15Y
+
+
+ last
+ last
+ 30225
+ 30229
+ JJ
+ DATE
+ P15Y
+ P15Y
+
+
+ 15
+ 15
+ 30230
+ 30232
+ CD
+ DATE
+ P15Y
+ P15Y
+
+
+ years
+ year
+ 30236
+ 30241
+ NNS
+ DATE
+ P15Y
+ P15Y
+
+
+ has
+ have
+ 30242
+ 30245
+ VBZ
+ O
+
+
+ seen
+ see
+ 30246
+ 30250
+ VBN
+ O
+
+
+ an
+ a
+ 30251
+ 30253
+ DT
+ O
+
+
+ enormous
+ enormous
+ 30254
+ 30262
+ JJ
+ O
+
+
+ explosion
+ explosion
+ 30263
+ 30272
+ NN
+ O
+
+
+ in
+ in
+ 30273
+ 30275
+ IN
+ O
+
+
+ the
+ the
+ 30276
+ 30279
+ DT
+ O
+
+
+ number
+ number
+ 30281
+ 30287
+ NN
+ O
+
+
+ and
+ and
+ 30288
+ 30291
+ CC
+ O
+
+
+ scope
+ scope
+ 30292
+ 30297
+ NN
+ O
+
+
+ of
+ of
+ 30298
+ 30300
+ IN
+ O
+
+
+ international
+ international
+ 30301
+ 30314
+ JJ
+ O
+
+
+ legal
+ legal
+ 30315
+ 30320
+ JJ
+ O
+
+
+ agreements
+ agreement
+ 30322
+ 30332
+ NNS
+ O
+
+
+ relating
+ relate
+ 30333
+ 30341
+ VBG
+ O
+
+
+ to
+ to
+ 30342
+ 30344
+ TO
+ O
+
+
+ the
+ the
+ 30345
+ 30348
+ DT
+ O
+
+
+ environment
+ environment
+ 30349
+ 30360
+ NN
+ O
+
+
+ .
+ .
+ 30360
+ 30361
+ .
+ O
+
+
+ (ROOT (S (ADVP (RB Finally)) (, ,) (NP (PRP I)) (VP (MD would) (VP (VB note) (SBAR (IN that) (S (NP (DT the) (JJ last) (CD 15) (NNS years)) (VP (VBZ has) (VP (VBN seen) (NP (DT an) (JJ enormous) (NN explosion)) (PP (IN in) (NP (NP (DT the) (NN number) (CC and) (NN scope)) (PP (IN of) (NP (JJ international) (JJ legal) (NNS agreements))))) (VP (VBG relating) (PP (TO to) (NP (DT the) (NN environment)))))))))) (. .)))
+
+
+ ROOT
+ note
+
+
+ note
+ Finally
+
+
+ note
+ I
+
+
+ note
+ would
+
+
+ seen
+ that
+
+
+ years
+ the
+
+
+ years
+ last
+
+
+ years
+ 15
+
+
+ seen
+ years
+
+
+ seen
+ has
+
+
+ note
+ seen
+
+
+ explosion
+ an
+
+
+ explosion
+ enormous
+
+
+ seen
+ explosion
+
+
+ seen
+ in
+
+
+ number
+ the
+
+
+ in
+ number
+
+
+ number
+ and
+
+
+ number
+ scope
+
+
+ number
+ of
+
+
+ agreements
+ international
+
+
+ agreements
+ legal
+
+
+ of
+ agreements
+
+
+ seen
+ relating
+
+
+ relating
+ to
+
+
+ environment
+ the
+
+
+ to
+ environment
+
+
+
+
+ ROOT
+ note
+
+
+ note
+ Finally
+
+
+ note
+ I
+
+
+ note
+ would
+
+
+ seen
+ that
+
+
+ years
+ the
+
+
+ years
+ last
+
+
+ years
+ 15
+
+
+ seen
+ years
+
+
+ seen
+ has
+
+
+ note
+ seen
+
+
+ explosion
+ an
+
+
+ explosion
+ enormous
+
+
+ seen
+ explosion
+
+
+ number
+ the
+
+
+ seen
+ number
+
+
+ number
+ scope
+
+
+ agreements
+ international
+
+
+ agreements
+ legal
+
+
+ number
+ agreements
+
+
+ seen
+ relating
+
+
+ environment
+ the
+
+
+ relating
+ environment
+
+
+
+
+ ROOT
+ note
+
+
+ note
+ Finally
+
+
+ note
+ I
+
+
+ note
+ would
+
+
+ seen
+ that
+
+
+ years
+ the
+
+
+ years
+ last
+
+
+ years
+ 15
+
+
+ seen
+ years
+
+
+ seen
+ has
+
+
+ note
+ seen
+
+
+ explosion
+ an
+
+
+ explosion
+ enormous
+
+
+ seen
+ explosion
+
+
+ number
+ the
+
+
+ seen
+ number
+
+
+ seen
+ scope
+
+
+ number
+ scope
+
+
+ agreements
+ international
+
+
+ agreements
+ legal
+
+
+ number
+ agreements
+
+
+ seen
+ relating
+
+
+ environment
+ the
+
+
+ relating
+ environment
+
+
+
+
+
+
+ The
+ the
+ 30363
+ 30366
+ DT
+ O
+
+
+ development
+ development
+ 30367
+ 30378
+ NN
+ O
+
+
+ of
+ of
+ 30379
+ 30381
+ IN
+ O
+
+
+ international
+ international
+ 30382
+ 30395
+ JJ
+ O
+
+
+ environ
+ environ
+ 30396
+ 30403
+ NN
+ O
+
+
+ -
+ -
+ 30403
+ 30404
+ :
+ O
+
+
+ mental
+ mental
+ 30406
+ 30412
+ JJ
+ O
+
+
+ law
+ law
+ 30413
+ 30416
+ NN
+ O
+
+
+ is
+ be
+ 30417
+ 30419
+ VBZ
+ O
+
+
+ a
+ a
+ 30420
+ 30421
+ DT
+ O
+
+
+ low
+ low
+ 30422
+ 30425
+ JJ
+ O
+
+
+ cost
+ cost
+ 30426
+ 30430
+ NN
+ O
+
+
+ and
+ and
+ 30431
+ 30434
+ CC
+ O
+
+
+ highly
+ highly
+ 30435
+ 30441
+ RB
+ O
+
+
+ benefi
+ benefi
+ 30442
+ 30448
+ FW
+ O
+
+
+ -
+ -
+ 30448
+ 30449
+ :
+ O
+
+
+ cial
+ cial
+ 30451
+ 30455
+ JJ
+ O
+
+
+ way
+ way
+ 30456
+ 30459
+ NN
+ O
+
+
+ of
+ of
+ 30460
+ 30462
+ IN
+ O
+
+
+ protecting
+ protect
+ 30463
+ 30473
+ VBG
+ O
+
+
+ global
+ global
+ 30474
+ 30480
+ JJ
+ O
+
+
+ environment
+ environment
+ 30481
+ 30492
+ NN
+ O
+
+
+ and
+ and
+ 30494
+ 30497
+ CC
+ O
+
+
+ of
+ of
+ 30498
+ 30500
+ IN
+ O
+
+
+ enhancing
+ enhance
+ 30501
+ 30510
+ VBG
+ O
+
+
+ global
+ global
+ 30511
+ 30517
+ JJ
+ O
+
+
+ environmental
+ environmental
+ 30518
+ 30531
+ JJ
+ O
+
+
+ co
+ co
+ 30532
+ 30534
+ NN
+ O
+
+
+ -
+ -
+ 30534
+ 30535
+ :
+ O
+
+
+ operation
+ operation
+ 30537
+ 30546
+ NN
+ O
+
+
+ .
+ .
+ 30546
+ 30547
+ .
+ O
+
+
+ (ROOT (FRAG (NP (NP (DT The) (NN development)) (PP (IN of) (NP (JJ international) (NN environ)))) (: -) (S (NP (JJ mental) (NN law)) (VP (VBZ is) (NP (NP (DT a) (JJ low) (NN cost)) (CC and) (RB highly) (NP (FW benefi)) (: -) (NP (NP (JJ cial) (NN way)) (PP (PP (IN of) (S (VP (VBG protecting) (NP (JJ global) (NN environment))))) (CC and) (PP (IN of) (S (VP (VBG enhancing) (NP (NP (JJ global) (JJ environmental) (NN co)) (: -) (NP (NN operation))))))))))) (. .)))
+
+
+ ROOT
+ development
+
+
+ development
+ The
+
+
+ development
+ of
+
+
+ environ
+ international
+
+
+ of
+ environ
+
+
+ law
+ mental
+
+
+ cost
+ law
+
+
+ cost
+ is
+
+
+ cost
+ a
+
+
+ cost
+ low
+
+
+ development
+ cost
+
+
+ cost
+ and
+
+
+ cost
+ highly
+
+
+ cost
+ benefi
+
+
+ way
+ cial
+
+
+ cost
+ way
+
+
+ way
+ of
+
+
+ of
+ protecting
+
+
+ environment
+ global
+
+
+ protecting
+ environment
+
+
+ of
+ and
+
+
+ of
+ of
+
+
+ of
+ enhancing
+
+
+ co
+ global
+
+
+ co
+ environmental
+
+
+ enhancing
+ co
+
+
+ co
+ operation
+
+
+
+
+ ROOT
+ development
+
+
+ development
+ The
+
+
+ environ
+ international
+
+
+ development
+ environ
+
+
+ law
+ mental
+
+
+ cost
+ law
+
+
+ cost
+ is
+
+
+ cost
+ a
+
+
+ cost
+ low
+
+
+ development
+ cost
+
+
+ cost
+ highly
+
+
+ cost
+ benefi
+
+
+ way
+ cial
+
+
+ cost
+ way
+
+
+ way
+ protecting
+
+
+ environment
+ global
+
+
+ protecting
+ environment
+
+
+ protecting
+ enhancing
+
+
+ co
+ global
+
+
+ co
+ environmental
+
+
+ enhancing
+ co
+
+
+ co
+ operation
+
+
+
+
+ ROOT
+ development
+
+
+ development
+ The
+
+
+ environ
+ international
+
+
+ development
+ environ
+
+
+ law
+ mental
+
+
+ cost
+ law
+
+
+ cost
+ is
+
+
+ cost
+ a
+
+
+ cost
+ low
+
+
+ development
+ cost
+
+
+ cost
+ highly
+
+
+ cost
+ benefi
+
+
+ way
+ cial
+
+
+ development
+ way
+
+
+ cost
+ way
+
+
+ way
+ protecting
+
+
+ environment
+ global
+
+
+ protecting
+ environment
+
+
+ way
+ enhancing
+
+
+ protecting
+ enhancing
+
+
+ co
+ global
+
+
+ co
+ environmental
+
+
+ enhancing
+ co
+
+
+ co
+ operation
+
+
+
+
+
+
+ This
+ this
+ 30548
+ 30552
+ DT
+ O
+
+
+ Is
+ be
+ 30553
+ 30555
+ VBZ
+ O
+
+
+ a
+ a
+ 30556
+ 30557
+ DT
+ O
+
+
+ trend
+ trend
+ 30558
+ 30563
+ NN
+ O
+
+
+ we
+ we
+ 30564
+ 30566
+ PRP
+ O
+
+
+ must
+ must
+ 30567
+ 30571
+ MD
+ O
+
+
+ encor
+ encor
+ 30572
+ 30578
+ VB
+ O
+
+
+ -
+ -
+ 30578
+ 30579
+ :
+ O
+
+
+ age
+ age
+ 30581
+ 30584
+ NN
+ O
+
+
+ .
+ .
+ 30584
+ 30585
+ .
+ O
+
+
+ (ROOT (S (NP (DT This)) (VP (VBZ Is) (NP (NP (DT a) (NN trend)) (SBAR (S (NP (PRP we)) (VP (MD must) (VP (VB encor) (: -) (NP (NN age)))))))) (. .)))
+
+
+ ROOT
+ trend
+
+
+ trend
+ This
+
+
+ trend
+ Is
+
+
+ trend
+ a
+
+
+ encor
+ we
+
+
+ encor
+ must
+
+
+ trend
+ encor
+
+
+ encor
+ age
+
+
+
+
+ ROOT
+ trend
+
+
+ trend
+ This
+
+
+ trend
+ Is
+
+
+ trend
+ a
+
+
+ encor
+ we
+
+
+ encor
+ must
+
+
+ trend
+ encor
+
+
+ encor
+ age
+
+
+
+
+ ROOT
+ trend
+
+
+ trend
+ This
+
+
+ trend
+ Is
+
+
+ trend
+ a
+
+
+ encor
+ we
+
+
+ encor
+ must
+
+
+ trend
+ encor
+
+
+ encor
+ age
+
+
+
+
+
+
+ I
+ I
+ 30586
+ 30587
+ PRP
+ O
+
+
+ would
+ would
+ 30588
+ 30593
+ MD
+ O
+
+
+ hope
+ hope
+ 30594
+ 30598
+ VB
+ O
+
+
+ that
+ that
+ 30599
+ 30603
+ IN
+ O
+
+
+ UNEP
+ UNEP
+ 30604
+ 30608
+ NNP
+ ORGANIZATION
+
+
+ 's
+ 's
+ 30608
+ 30610
+ POS
+ O
+
+
+ environmen
+ environman
+ 30611
+ 30621
+ NN
+ O
+
+
+ -
+ -
+ 30621
+ 30622
+ :
+ O
+
+
+ tal
+ tal
+ 30624
+ 30627
+ JJ
+ O
+
+
+ law
+ law
+ 30628
+ 30631
+ NN
+ O
+
+
+ unit
+ unit
+ 30632
+ 30636
+ NN
+ O
+
+
+ might
+ might
+ 30637
+ 30642
+ MD
+ O
+
+
+ become
+ become
+ 30643
+ 30649
+ VB
+ O
+
+
+ the
+ the
+ 30650
+ 30653
+ DT
+ O
+
+
+ nucleus
+ nucleus
+ 30654
+ 30661
+ NN
+ O
+
+
+ of
+ of
+ 30662
+ 30664
+ IN
+ O
+
+
+ a
+ a
+ 30665
+ 30666
+ DT
+ O
+
+
+ new
+ new
+ 30668
+ 30671
+ JJ
+ O
+
+
+ International
+ International
+ 30672
+ 30685
+ NNP
+ O
+
+
+ environmental
+ environmental
+ 30686
+ 30699
+ JJ
+ O
+
+
+ law
+ law
+ 30700
+ 30703
+ NN
+ O
+
+
+ insti
+ instus
+ 30704
+ 30709
+ NN
+ O
+
+
+ -
+ -
+ 30709
+ 30710
+ :
+ O
+
+
+ tute
+ tute
+ 30712
+ 30716
+ NN
+ O
+
+
+ .
+ .
+ 30716
+ 30717
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (MD would) (VP (VB hope) (SBAR (IN that) (S (NP (NP (NNP UNEP) (POS 's)) (NN environmen)) (: -) (NP (JJ tal) (NN law) (NN unit)) (VP (MD might) (VP (VB become) (NP (NP (NP (DT the) (NN nucleus)) (PP (IN of) (NP (DT a) (JJ new) (NNP International) (JJ environmental) (NN law) (NN insti)))) (: -) (NP (NN tute))))))))) (. .)))
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ hope
+ would
+
+
+ nucleus
+ that
+
+
+ environmen
+ UNEP
+
+
+ UNEP
+ 's
+
+
+ nucleus
+ environmen
+
+
+ unit
+ tal
+
+
+ unit
+ law
+
+
+ nucleus
+ unit
+
+
+ nucleus
+ might
+
+
+ nucleus
+ become
+
+
+ nucleus
+ the
+
+
+ hope
+ nucleus
+
+
+ nucleus
+ of
+
+
+ insti
+ a
+
+
+ insti
+ new
+
+
+ insti
+ International
+
+
+ insti
+ environmental
+
+
+ insti
+ law
+
+
+ of
+ insti
+
+
+ nucleus
+ tute
+
+
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ hope
+ would
+
+
+ nucleus
+ that
+
+
+ environmen
+ UNEP
+
+
+ nucleus
+ environmen
+
+
+ unit
+ tal
+
+
+ unit
+ law
+
+
+ nucleus
+ unit
+
+
+ nucleus
+ might
+
+
+ nucleus
+ become
+
+
+ nucleus
+ the
+
+
+ hope
+ nucleus
+
+
+ insti
+ a
+
+
+ insti
+ new
+
+
+ insti
+ International
+
+
+ insti
+ environmental
+
+
+ insti
+ law
+
+
+ nucleus
+ insti
+
+
+ nucleus
+ tute
+
+
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ hope
+ would
+
+
+ nucleus
+ that
+
+
+ environmen
+ UNEP
+
+
+ nucleus
+ environmen
+
+
+ unit
+ tal
+
+
+ unit
+ law
+
+
+ nucleus
+ unit
+
+
+ nucleus
+ might
+
+
+ nucleus
+ become
+
+
+ nucleus
+ the
+
+
+ hope
+ nucleus
+
+
+ insti
+ a
+
+
+ insti
+ new
+
+
+ insti
+ International
+
+
+ insti
+ environmental
+
+
+ insti
+ law
+
+
+ nucleus
+ insti
+
+
+ nucleus
+ tute
+
+
+
+
+
+
+ Such
+ such
+ 30718
+ 30722
+ PDT
+ O
+
+
+ an
+ a
+ 30723
+ 30725
+ DT
+ O
+
+
+ institute
+ institute
+ 30726
+ 30735
+ NN
+ O
+
+
+ should
+ should
+ 30736
+ 30742
+ MD
+ O
+
+
+ draw
+ draw
+ 30743
+ 30747
+ VB
+ O
+
+
+ on
+ on
+ 30748
+ 30750
+ IN
+ O
+
+
+ the
+ the
+ 30751
+ 30754
+ DT
+ O
+
+
+ resources
+ resource
+ 30756
+ 30765
+ NNS
+ O
+
+
+ of
+ of
+ 30766
+ 30768
+ IN
+ O
+
+
+ UNEP
+ UNEP
+ 30769
+ 30773
+ NNP
+ ORGANIZATION
+
+
+ members
+ member
+ 30774
+ 30781
+ NNS
+ O
+
+
+ ,
+ ,
+ 30781
+ 30782
+ ,
+ O
+
+
+ and
+ and
+ 30783
+ 30786
+ CC
+ O
+
+
+ In
+ in
+ 30787
+ 30789
+ IN
+ O
+
+
+ particu
+ particu
+ 30790
+ 30797
+ NN
+ O
+
+
+ -
+ -
+ 30797
+ 30798
+ :
+ O
+
+
+ lar
+ lar
+ 30800
+ 30803
+ NN
+ O
+
+
+ those
+ those
+ 30804
+ 30809
+ DT
+ O
+
+
+ with
+ with
+ 30810
+ 30814
+ IN
+ O
+
+
+ more
+ more
+ 30815
+ 30819
+ JJR
+ O
+
+
+ developed
+ developed
+ 30820
+ 30829
+ JJ
+ O
+
+
+ domestic
+ domestic
+ 30830
+ 30838
+ JJ
+ O
+
+
+ en
+ en
+ 30839
+ 30841
+ IN
+ O
+
+
+ -
+ -
+ 30841
+ 30842
+ :
+ O
+
+
+ vironmental
+ vironmental
+ 30844
+ 30855
+ JJ
+ O
+
+
+ law
+ law
+ 30856
+ 30859
+ NN
+ O
+
+
+ .
+ .
+ 30859
+ 30860
+ .
+ O
+
+
+ (ROOT (S (NP (PDT Such) (DT an) (NN institute)) (VP (MD should) (VP (VB draw) (PP (IN on) (NP (DT the) (NP (NP (NP (NNS resources)) (PP (IN of) (NP (NNP UNEP) (NNS members)))) (, ,) (CC and) (PP (IN In) (NP (NN particu)) (: -))) (NN lar))) (NP-TMP (NP (DT those)) (PP (IN with) (NP (NP (JJR more)) (RRC (ADJP (JJ developed) (JJ domestic)) (ADVP (IN en))))) (: -) (NP (JJ vironmental) (NN law))))) (. .)))
+
+
+ ROOT
+ draw
+
+
+ institute
+ Such
+
+
+ institute
+ an
+
+
+ draw
+ institute
+
+
+ draw
+ should
+
+
+ draw
+ on
+
+
+ lar
+ the
+
+
+ lar
+ resources
+
+
+ resources
+ of
+
+
+ members
+ UNEP
+
+
+ of
+ members
+
+
+ resources
+ and
+
+
+ resources
+ In
+
+
+ In
+ particu
+
+
+ on
+ lar
+
+
+ draw
+ those
+
+
+ those
+ with
+
+
+ with
+ more
+
+
+ domestic
+ developed
+
+
+ en
+ domestic
+
+
+ more
+ en
+
+
+ law
+ vironmental
+
+
+ those
+ law
+
+
+
+
+ ROOT
+ draw
+
+
+ institute
+ Such
+
+
+ institute
+ an
+
+
+ draw
+ institute
+
+
+ draw
+ should
+
+
+ lar
+ the
+
+
+ lar
+ resources
+
+
+ members
+ UNEP
+
+
+ resources
+ members
+
+
+ resources
+ In
+
+
+ In
+ particu
+
+
+ draw
+ lar
+
+
+ draw
+ those
+
+
+ those
+ more
+
+
+ domestic
+ developed
+
+
+ en
+ domestic
+
+
+ more
+ en
+
+
+ law
+ vironmental
+
+
+ those
+ law
+
+
+
+
+ ROOT
+ draw
+
+
+ institute
+ Such
+
+
+ institute
+ an
+
+
+ draw
+ institute
+
+
+ draw
+ should
+
+
+ lar
+ the
+
+
+ lar
+ resources
+
+
+ members
+ UNEP
+
+
+ resources
+ members
+
+
+ resources
+ In
+
+
+ lar
+ In
+
+
+ In
+ particu
+
+
+ draw
+ lar
+
+
+ draw
+ those
+
+
+ those
+ more
+
+
+ domestic
+ developed
+
+
+ en
+ domestic
+
+
+ more
+ en
+
+
+ law
+ vironmental
+
+
+ those
+ law
+
+
+
+
+
+
+ I
+ I
+ 30861
+ 30862
+ PRP
+ O
+
+
+ would
+ would
+ 30863
+ 30868
+ MD
+ O
+
+
+ hope
+ hope
+ 30869
+ 30873
+ VB
+ O
+
+
+ these
+ these
+ 30874
+ 30879
+ DT
+ O
+
+
+ states
+ state
+ 30880
+ 30886
+ NNS
+ O
+
+
+ might
+ might
+ 30888
+ 30893
+ MD
+ O
+
+
+ secund
+ secund
+ 30894
+ 30900
+ VB
+ O
+
+
+ lawyers
+ lawyer
+ 30901
+ 30908
+ NNS
+ O
+
+
+ to
+ to
+ 30909
+ 30911
+ TO
+ O
+
+
+ the
+ the
+ 30912
+ 30915
+ DT
+ O
+
+
+ international
+ international
+ 30916
+ 30929
+ JJ
+ O
+
+
+ environmental
+ environmental
+ 30931
+ 30944
+ JJ
+ O
+
+
+ law
+ law
+ 30945
+ 30948
+ NN
+ O
+
+
+ institute
+ institute
+ 30949
+ 30958
+ NN
+ O
+
+
+ both
+ both
+ 30959
+ 30963
+ CC
+ O
+
+
+ for
+ for
+ 30964
+ 30967
+ IN
+ O
+
+
+ the
+ the
+ 30968
+ 30971
+ DT
+ O
+
+
+ purpose
+ purpose
+ 30973
+ 30980
+ NN
+ O
+
+
+ of
+ of
+ 30981
+ 30983
+ IN
+ O
+
+
+ developing
+ develop
+ 30984
+ 30994
+ VBG
+ O
+
+
+ further
+ further
+ 30995
+ 31002
+ JJ
+ O
+
+
+ international
+ international
+ 31003
+ 31016
+ JJ
+ O
+
+
+ environmental
+ environmental
+ 31018
+ 31031
+ JJ
+ O
+
+
+ law
+ law
+ 31032
+ 31035
+ NN
+ O
+
+
+ and
+ and
+ 31036
+ 31039
+ CC
+ O
+
+
+ to
+ to
+ 31040
+ 31042
+ TO
+ O
+
+
+ assist
+ assist
+ 31043
+ 31049
+ VB
+ O
+
+
+ countries
+ country
+ 31050
+ 31059
+ NNS
+ O
+
+
+ in
+ in
+ 31060
+ 31062
+ IN
+ O
+
+
+ the
+ the
+ 31064
+ 31067
+ DT
+ O
+
+
+ development
+ development
+ 31068
+ 31079
+ NN
+ O
+
+
+ of
+ of
+ 31080
+ 31082
+ IN
+ O
+
+
+ domestic
+ domestic
+ 31083
+ 31091
+ JJ
+ O
+
+
+ environmental
+ environmental
+ 31092
+ 31105
+ JJ
+ O
+
+
+ law
+ law
+ 31107
+ 31110
+ NN
+ O
+
+
+ .
+ .
+ 31110
+ 31111
+ .
+ O
+
+
+ (ROOT (S (NP (PRP I)) (VP (MD would) (VP (VB hope) (SBAR (S (NP (DT these) (NNS states)) (VP (MD might) (VP (VB secund) (NP (NP (NNS lawyers)) (PP (PP (TO to) (NP (DT the) (JJ international) (JJ environmental) (NN law) (NN institute))) (CC both) (PP (IN for) (NP (DT the) (NN purpose)))) (PP (IN of) (S (VP (VBG developing) (NP (NP (JJ further) (JJ international) (JJ environmental) (NN law)) (CC and) (S (VP (TO to) (VP (VB assist) (NP (NNS countries)) (PP (IN in) (NP (NP (DT the) (NN development)) (PP (IN of) (NP (JJ domestic) (JJ environmental) (NN law))))))))))))))))))) (. .)))
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ hope
+ would
+
+
+ states
+ these
+
+
+ secund
+ states
+
+
+ secund
+ might
+
+
+ hope
+ secund
+
+
+ secund
+ lawyers
+
+
+ lawyers
+ to
+
+
+ institute
+ the
+
+
+ institute
+ international
+
+
+ institute
+ environmental
+
+
+ institute
+ law
+
+
+ to
+ institute
+
+
+ to
+ both
+
+
+ to
+ for
+
+
+ purpose
+ the
+
+
+ for
+ purpose
+
+
+ lawyers
+ of
+
+
+ of
+ developing
+
+
+ law
+ further
+
+
+ law
+ international
+
+
+ law
+ environmental
+
+
+ developing
+ law
+
+
+ law
+ and
+
+
+ assist
+ to
+
+
+ law
+ assist
+
+
+ assist
+ countries
+
+
+ assist
+ in
+
+
+ development
+ the
+
+
+ in
+ development
+
+
+ development
+ of
+
+
+ law
+ domestic
+
+
+ law
+ environmental
+
+
+ of
+ law
+
+
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ hope
+ would
+
+
+ states
+ these
+
+
+ secund
+ states
+
+
+ secund
+ might
+
+
+ hope
+ secund
+
+
+ secund
+ lawyers
+
+
+ institute
+ the
+
+
+ institute
+ international
+
+
+ institute
+ environmental
+
+
+ institute
+ law
+
+
+ lawyers
+ institute
+
+
+ lawyers
+ both
+
+
+ lawyers
+ for
+
+
+ purpose
+ the
+
+
+ for
+ purpose
+
+
+ lawyers
+ developing
+
+
+ law
+ further
+
+
+ law
+ international
+
+
+ law
+ environmental
+
+
+ developing
+ law
+
+
+ assist
+ to
+
+
+ law
+ assist
+
+
+ assist
+ countries
+
+
+ development
+ the
+
+
+ assist
+ development
+
+
+ law
+ domestic
+
+
+ law
+ environmental
+
+
+ development
+ law
+
+
+
+
+ ROOT
+ hope
+
+
+ hope
+ I
+
+
+ hope
+ would
+
+
+ states
+ these
+
+
+ secund
+ states
+
+
+ secund
+ might
+
+
+ hope
+ secund
+
+
+ secund
+ lawyers
+
+
+ institute
+ the
+
+
+ institute
+ international
+
+
+ institute
+ environmental
+
+
+ institute
+ law
+
+
+ lawyers
+ institute
+
+
+ lawyers
+ both
+
+
+ lawyers
+ for
+
+
+ purpose
+ the
+
+
+ for
+ purpose
+
+
+ lawyers
+ developing
+
+
+ law
+ further
+
+
+ law
+ international
+
+
+ law
+ environmental
+
+
+ developing
+ law
+
+
+ assist
+ to
+
+
+ developing
+ assist
+
+
+ law
+ assist
+
+
+ assist
+ countries
+
+
+ development
+ the
+
+
+ assist
+ development
+
+
+ law
+ domestic
+
+
+ law
+ environmental
+
+
+ development
+ law
+
+
+
+
+
+
+ Twenty-five
+ twenty-five
+ 31115
+ 31126
+ CD
+ DATE
+ OFFSET P-25Y
+
+
+
+ years
+ year
+ 31127
+ 31132
+ NNS
+ DATE
+ OFFSET P-25Y
+
+
+
+ ago
+ ago
+ 31133
+ 31136
+ RB
+ DATE
+ OFFSET P-25Y
+
+
+
+ ,
+ ,
+ 31136
+ 31137
+ ,
+ O
+
+
+ in
+ in
+ 31138
+ 31140
+ IN
+ O
+
+
+ his
+ he
+ 31141
+ 31144
+ PRP$
+ O
+
+
+ last
+ last
+ 31145
+ 31149
+ JJ
+ O
+
+
+ speech
+ speech
+ 31150
+ 31156
+ NN
+ O
+
+
+ to
+ to
+ 31158
+ 31160
+ TO
+ O
+
+
+ the
+ the
+ 31161
+ 31164
+ DT
+ O
+
+
+ United
+ United
+ 31165
+ 31171
+ NNP
+ ORGANIZATION
+
+
+ Nations
+ Nations
+ 31172
+ 31179
+ NNPS
+ ORGANIZATION
+
+
+ ,
+ ,
+ 31179
+ 31180
+ ,
+ O
+
+
+ U.S.
+ U.S.
+ 31181
+ 31185
+ NNP
+ LOCATION
+
+
+ Ambassador
+ Ambassador
+ 31186
+ 31196
+ NNP
+ O
+
+
+ Adlai
+ Adlai
+ 31198
+ 31203
+ NNP
+ PERSON
+
+
+ Stevenson
+ Stevenson
+ 31204
+ 31213
+ NNP
+ PERSON
+
+
+ made
+ make
+ 31214
+ 31218
+ VBD
+ O
+
+
+ reference
+ reference
+ 31219
+ 31228
+ NN
+ O
+
+
+ to
+ to
+ 31229
+ 31231
+ TO
+ O
+
+
+ the
+ the
+ 31232
+ 31235
+ DT
+ O
+
+
+ pho
+ pho
+ 31236
+ 31239
+ NN
+ O
+
+
+ -
+ -
+ 31239
+ 31240
+ :
+ O
+
+
+ tographs
+ tograph
+ 31242
+ 31250
+ NNS
+ O
+
+
+ of
+ of
+ 31251
+ 31253
+ IN
+ O
+
+
+ Earth
+ Earth
+ 31254
+ 31259
+ NNP
+ MISC
+
+
+ taken
+ take
+ 31260
+ 31265
+ VBN
+ O
+
+
+ from
+ from
+ 31266
+ 31270
+ IN
+ O
+
+
+ an
+ a
+ 31271
+ 31273
+ DT
+ O
+
+
+ early
+ early
+ 31274
+ 31279
+ JJ
+ O
+
+
+ space
+ space
+ 31280
+ 31285
+ NN
+ O
+
+
+ mission
+ mission
+ 31287
+ 31294
+ NN
+ O
+
+
+ .
+ .
+ 31294
+ 31295
+ .
+ O
+
+
+ (ROOT (S (ADVP (NP (CD Twenty-five) (NNS years)) (RB ago)) (, ,) (PP (IN in) (NP (NP (PRP$ his) (JJ last) (NN speech)) (PP (TO to) (NP (DT the) (NNP United) (NNPS Nations))))) (, ,) (NP (NNP U.S.) (NNP Ambassador) (NNP Adlai) (NNP Stevenson)) (VP (VBD made) (NP (NN reference)) (PP (TO to) (NP (DT the) (NN pho))) (: -) (NP (NP (NNS tographs)) (PP (IN of) (NP (NP (NNP Earth)) (VP (VBN taken) (PP (IN from) (NP (DT an) (JJ early) (NN space) (NN mission)))))))) (. .)))
+
+
+ ROOT
+ made
+
+
+ years
+ Twenty-five
+
+
+ ago
+ years
+
+
+ made
+ ago
+
+
+ made
+ in
+
+
+ speech
+ his
+
+
+ speech
+ last
+
+
+ in
+ speech
+
+
+ speech
+ to
+
+
+ Nations
+ the
+
+
+ Nations
+ United
+
+
+ to
+ Nations
+
+
+ Stevenson
+ U.S.
+
+
+ Stevenson
+ Ambassador
+
+
+ Stevenson
+ Adlai
+
+
+ made
+ Stevenson
+
+
+ made
+ reference
+
+
+ made
+ to
+
+
+ pho
+ the
+
+
+ to
+ pho
+
+
+ made
+ tographs
+
+
+ tographs
+ of
+
+
+ of
+ Earth
+
+
+ Earth
+ taken
+
+
+ taken
+ from
+
+
+ mission
+ an
+
+
+ mission
+ early
+
+
+ mission
+ space
+
+
+ from
+ mission
+
+
+
+
+ ROOT
+ made
+
+
+ years
+ Twenty-five
+
+
+ ago
+ years
+
+
+ made
+ ago
+
+
+ speech
+ his
+
+
+ speech
+ last
+
+
+ made
+ speech
+
+
+ Nations
+ the
+
+
+ Nations
+ United
+
+
+ speech
+ Nations
+
+
+ Stevenson
+ U.S.
+
+
+ Stevenson
+ Ambassador
+
+
+ Stevenson
+ Adlai
+
+
+ made
+ Stevenson
+
+
+ made
+ reference
+
+
+ pho
+ the
+
+
+ made
+ pho
+
+
+ made
+ tographs
+
+
+ tographs
+ Earth
+
+
+ Earth
+ taken
+
+
+ mission
+ an
+
+
+ mission
+ early
+
+
+ mission
+ space
+
+
+ taken
+ mission
+
+
+
+
+ ROOT
+ made
+
+
+ years
+ Twenty-five
+
+
+ ago
+ years
+
+
+ made
+ ago
+
+
+ speech
+ his
+
+
+ speech
+ last
+
+
+ made
+ speech
+
+
+ Nations
+ the
+
+
+ Nations
+ United
+
+
+ speech
+ Nations
+
+
+ Stevenson
+ U.S.
+
+
+ Stevenson
+ Ambassador
+
+
+ Stevenson
+ Adlai
+
+
+ made
+ Stevenson
+
+
+ made
+ reference
+
+
+ pho
+ the
+
+
+ made
+ pho
+
+
+ made
+ tographs
+
+
+ tographs
+ Earth
+
+
+ Earth
+ taken
+
+
+ mission
+ an
+
+
+ mission
+ early
+
+
+ mission
+ space
+
+
+ taken
+ mission
+
+
+
+
+
+
+ Today
+ today
+ 31296
+ 31301
+ NN
+ DATE
+ THIS P1D
+
+
+
+ these
+ these
+ 31302
+ 31307
+ DT
+ O
+
+
+ images
+ image
+ 31308
+ 31314
+ NNS
+ O
+
+
+ have
+ have
+ 31315
+ 31319
+ VBP
+ O
+
+
+ become
+ become
+ 31320
+ 31326
+ VBN
+ O
+
+
+ commonplace
+ commonplace
+ 31328
+ 31339
+ JJ
+ O
+
+
+ but
+ but
+ 31340
+ 31343
+ CC
+ O
+
+
+ at
+ at
+ 31344
+ 31346
+ IN
+ O
+
+
+ that
+ that
+ 31347
+ 31351
+ DT
+ O
+
+
+ time
+ time
+ 31352
+ 31356
+ NN
+ O
+
+
+ they
+ they
+ 31357
+ 31361
+ PRP
+ O
+
+
+ were
+ be
+ 31362
+ 31366
+ VBD
+ O
+
+
+ strikingly
+ strikingly
+ 31368
+ 31378
+ RB
+ O
+
+
+ new
+ new
+ 31379
+ 31382
+ JJ
+ O
+
+
+ and
+ and
+ 31383
+ 31386
+ CC
+ O
+
+
+ they
+ they
+ 31387
+ 31391
+ PRP
+ O
+
+
+ led
+ lead
+ 31392
+ 31395
+ VBD
+ O
+
+
+ Ambassador
+ Ambassador
+ 31396
+ 31406
+ NNP
+ O
+
+
+ Stevenson
+ Stevenson
+ 31408
+ 31417
+ NNP
+ PERSON
+
+
+ to
+ to
+ 31418
+ 31420
+ TO
+ O
+
+
+ reflect
+ reflect
+ 31421
+ 31428
+ VB
+ O
+
+
+ on
+ on
+ 31429
+ 31431
+ IN
+ O
+
+
+ the
+ the
+ 31432
+ 31435
+ DT
+ O
+
+
+ fragility
+ fragility
+ 31436
+ 31445
+ NN
+ O
+
+
+ of
+ of
+ 31446
+ 31448
+ IN
+ O
+
+
+ our
+ we
+ 31449
+ 31452
+ PRP$
+ O
+
+
+ human
+ human
+ 31454
+ 31459
+ JJ
+ O
+
+
+ environment
+ environment
+ 31460
+ 31471
+ NN
+ O
+
+
+ .
+ .
+ 31471
+ 31472
+ .
+ O
+
+
+ (ROOT (S (S (NP-TMP (NN Today)) (NP (DT these) (NNS images)) (VP (VBP have) (VP (VBN become) (S (ADJP (JJ commonplace)))))) (CC but) (S (PP (IN at) (NP (DT that) (NN time))) (NP (PRP they)) (VP (VBD were) (ADJP (RB strikingly) (JJ new)))) (CC and) (S (NP (PRP they)) (VP (VBD led) (S (NP (NNP Ambassador) (NNP Stevenson)) (VP (TO to) (VP (VB reflect) (PP (IN on) (NP (NP (DT the) (NN fragility)) (PP (IN of) (NP (PRP$ our) (JJ human) (NN environment)))))))))) (. .)))
+
+
+ ROOT
+ become
+
+
+ become
+ Today
+
+
+ images
+ these
+
+
+ become
+ images
+
+
+ become
+ have
+
+
+ become
+ commonplace
+
+
+ become
+ but
+
+
+ new
+ at
+
+
+ time
+ that
+
+
+ at
+ time
+
+
+ new
+ they
+
+
+ new
+ were
+
+
+ new
+ strikingly
+
+
+ become
+ new
+
+
+ become
+ and
+
+
+ led
+ they
+
+
+ become
+ led
+
+
+ Stevenson
+ Ambassador
+
+
+ reflect
+ Stevenson
+
+
+ reflect
+ to
+
+
+ led
+ reflect
+
+
+ reflect
+ on
+
+
+ fragility
+ the
+
+
+ on
+ fragility
+
+
+ fragility
+ of
+
+
+ environment
+ our
+
+
+ environment
+ human
+
+
+ of
+ environment
+
+
+
+
+ ROOT
+ become
+
+
+ become
+ Today
+
+
+ images
+ these
+
+
+ become
+ images
+
+
+ become
+ have
+
+
+ become
+ commonplace
+
+
+ time
+ that
+
+
+ new
+ time
+
+
+ new
+ they
+
+
+ new
+ were
+
+
+ new
+ strikingly
+
+
+ become
+ new
+
+
+ led
+ they
+
+
+ become
+ led
+
+
+ Stevenson
+ Ambassador
+
+
+ reflect
+ Stevenson
+
+
+ reflect
+ to
+
+
+ led
+ reflect
+
+
+ fragility
+ the
+
+
+ reflect
+ fragility
+
+
+ environment
+ our
+
+
+ environment
+ human
+
+
+ fragility
+ environment
+
+
+
+
+ ROOT
+ become
+
+
+ become
+ Today
+
+
+ images
+ these
+
+
+ become
+ images
+
+
+ become
+ have
+
+
+ become
+ commonplace
+
+
+ time
+ that
+
+
+ new
+ time
+
+
+ new
+ they
+
+
+ new
+ were
+
+
+ new
+ strikingly
+
+
+ become
+ new
+
+
+ led
+ they
+
+
+ become
+ led
+
+
+ Stevenson
+ Ambassador
+
+
+ reflect
+ Stevenson
+
+
+ reflect
+ to
+
+
+ led
+ reflect
+
+
+ fragility
+ the
+
+
+ reflect
+ fragility
+
+
+ environment
+ our
+
+
+ environment
+ human
+
+
+ fragility
+ environment
+
+
+
+
+
+
+ ``
+ ``
+ 31476
+ 31477
+ ``
+ O
+
+
+ We
+ we
+ 31477
+ 31479
+ PRP
+ O
+
+
+ travel
+ travel
+ 31480
+ 31486
+ VBP
+ O
+
+
+ together
+ together
+ 31487
+ 31495
+ RB
+ O
+
+
+ ,
+ ,
+ 31495
+ 31496
+ ,
+ O
+
+
+ ''
+ ''
+ 31496
+ 31497
+ ''
+ O
+
+
+ he
+ he
+ 31498
+ 31500
+ PRP
+ O
+
+
+ said
+ say
+ 31501
+ 31505
+ VBD
+ O
+
+
+ ,
+ ,
+ 31505
+ 31506
+ ,
+ O
+
+
+ ``
+ ``
+ 31507
+ 31508
+ ``
+ O
+
+
+ passengers
+ passenger
+ 31508
+ 31518
+ NNS
+ O
+
+
+ on
+ on
+ 31520
+ 31522
+ IN
+ O
+
+
+ a
+ a
+ 31523
+ 31524
+ DT
+ O
+
+
+ little
+ little
+ 31525
+ 31531
+ JJ
+ O
+
+
+ space
+ space
+ 31532
+ 31537
+ NN
+ O
+
+
+ ship
+ ship
+ 31538
+ 31542
+ NN
+ O
+
+
+ ,
+ ,
+ 31542
+ 31543
+ ,
+ O
+
+
+ dependent
+ dependent
+ 31544
+ 31553
+ JJ
+ O
+
+
+ on
+ on
+ 31554
+ 31556
+ IN
+ O
+
+
+ its
+ its
+ 31557
+ 31560
+ PRP$
+ O
+
+
+ vul
+ vul
+ 31561
+ 31564
+ NN
+ O
+
+
+ -
+ -
+ 31564
+ 31565
+ :
+ O
+
+
+ nerable
+ nerable
+ 31567
+ 31574
+ JJ
+ O
+
+
+ reserves
+ reserve
+ 31575
+ 31583
+ NNS
+ O
+
+
+ of
+ of
+ 31584
+ 31586
+ IN
+ O
+
+
+ air
+ air
+ 31587
+ 31590
+ NN
+ O
+
+
+ and
+ and
+ 31591
+ 31594
+ CC
+ O
+
+
+ soil
+ soil
+ 31595
+ 31599
+ NN
+ O
+
+
+ ,
+ ,
+ 31599
+ 31600
+ ,
+ O
+
+
+ all
+ all
+ 31601
+ 31604
+ DT
+ O
+
+
+ commit
+ commit
+ 31605
+ 31611
+ VB
+ O
+
+
+ -
+ -
+ 31611
+ 31612
+ :
+ O
+
+
+ ted
+ ted
+ 31614
+ 31617
+ VBN
+ O
+
+
+ for
+ for
+ 31618
+ 31621
+ IN
+ O
+
+
+ our
+ we
+ 31622
+ 31625
+ PRP$
+ O
+
+
+ safety
+ safety
+ 31626
+ 31632
+ NN
+ O
+
+
+ to
+ to
+ 31633
+ 31635
+ TO
+ O
+
+
+ its
+ its
+ 31636
+ 31639
+ PRP$
+ O
+
+
+ security
+ security
+ 31640
+ 31648
+ NN
+ O
+
+
+ and
+ and
+ 31649
+ 31652
+ CC
+ O
+
+
+ peace
+ peace
+ 31653
+ 31658
+ NN
+ O
+
+
+ ;
+ ;
+ 31658
+ 31659
+ :
+ O
+
+
+ preserved
+ preserve
+ 31661
+ 31670
+ VBN
+ O
+
+
+ from
+ from
+ 31671
+ 31675
+ IN
+ O
+
+
+ annihilation
+ annihilation
+ 31676
+ 31688
+ NN
+ O
+
+
+ only
+ only
+ 31689
+ 31693
+ RB
+ O
+
+
+ by
+ by
+ 31694
+ 31696
+ IN
+ O
+
+
+ the
+ the
+ 31697
+ 31700
+ DT
+ O
+
+
+ care
+ care
+ 31702
+ 31706
+ NN
+ O
+
+
+ ,
+ ,
+ 31706
+ 31707
+ ,
+ O
+
+
+ the
+ the
+ 31708
+ 31711
+ DT
+ O
+
+
+ work
+ work
+ 31712
+ 31716
+ NN
+ O
+
+
+ ,
+ ,
+ 31716
+ 31717
+ ,
+ O
+
+
+ and
+ and
+ 31718
+ 31721
+ CC
+ O
+
+
+ I
+ I
+ 31722
+ 31723
+ PRP
+ O
+
+
+ will
+ will
+ 31724
+ 31728
+ MD
+ O
+
+
+ say
+ say
+ 31729
+ 31732
+ VB
+ O
+
+
+ ,
+ ,
+ 31732
+ 31733
+ ,
+ O
+
+
+ the
+ the
+ 31734
+ 31737
+ DT
+ O
+
+
+ love
+ love
+ 31738
+ 31742
+ NN
+ O
+
+
+ we
+ we
+ 31743
+ 31745
+ PRP
+ O
+
+
+ give
+ give
+ 31747
+ 31751
+ VBP
+ O
+
+
+ our
+ we
+ 31752
+ 31755
+ PRP$
+ O
+
+
+ fragile
+ fragile
+ 31756
+ 31763
+ JJ
+ O
+
+
+ craft
+ craft
+ 31764
+ 31769
+ NN
+ O
+
+
+ .
+ .
+ 31769
+ 31770
+ .
+ O
+
+
+ ''
+ ''
+ 31770
+ 31771
+ ''
+ O
+
+
+ (ROOT (S (`` ``) (S (NP (PRP We)) (VP (VBP travel) (ADVP (RB together)))) (, ,) ('' '') (NP (PRP he)) (VP (VP (VBD said) (, ,) (`` ``) (S (S (NP (NP (NNS passengers)) (PP (IN on) (NP (NP (DT a) (JJ little) (NN space) (NN ship)) (, ,) (ADJP (ADJP (JJ dependent) (PP (IN on) (NP (PRP$ its) (NN vul)))) (: -) (NP (NP (JJ nerable) (NNS reserves)) (PP (IN of) (NP (NP (NN air) (CC and) (NN soil)) (, ,) (SBAR (WHNP (DT all)) (S (VP (VB commit)))))))))) (: -) (VP (VBN ted) (PP (IN for) (NP (PRP$ our) (NN safety))) (PP (TO to) (NP (PRP$ its) (NN security) (CC and) (NN peace)))) (: ;)) (VP (VBN preserved) (PP (IN from) (NP (NN annihilation))) (PP (RB only) (IN by) (NP (NP (DT the) (NN care)) (, ,) (NP (DT the) (NN work)))))) (, ,) (CC and) (S (NP (PRP I)) (VP (MD will) (VP (VB say)))))) (, ,) (NP (NP (DT the) (NN love)) (SBAR (S (NP (PRP we)) (VP (VBP give) (NP (PRP$ our) (JJ fragile) (NN craft))))))) (. .) ('' '')))
+
+
+ ROOT
+ said
+
+
+ travel
+ We
+
+
+ said
+ travel
+
+
+ travel
+ together
+
+
+ said
+ he
+
+
+ preserved
+ passengers
+
+
+ passengers
+ on
+
+
+ ship
+ a
+
+
+ ship
+ little
+
+
+ ship
+ space
+
+
+ on
+ ship
+
+
+ ship
+ dependent
+
+
+ dependent
+ on
+
+
+ vul
+ its
+
+
+ on
+ vul
+
+
+ reserves
+ nerable
+
+
+ dependent
+ reserves
+
+
+ reserves
+ of
+
+
+ of
+ air
+
+
+ air
+ and
+
+
+ air
+ soil
+
+
+ commit
+ all
+
+
+ air
+ commit
+
+
+ passengers
+ ted
+
+
+ ted
+ for
+
+
+ safety
+ our
+
+
+ for
+ safety
+
+
+ ted
+ to
+
+
+ security
+ its
+
+
+ to
+ security
+
+
+ security
+ and
+
+
+ security
+ peace
+
+
+ said
+ preserved
+
+
+ preserved
+ from
+
+
+ from
+ annihilation
+
+
+ by
+ only
+
+
+ preserved
+ by
+
+
+ care
+ the
+
+
+ by
+ care
+
+
+ work
+ the
+
+
+ care
+ work
+
+
+ preserved
+ and
+
+
+ say
+ I
+
+
+ say
+ will
+
+
+ preserved
+ say
+
+
+ love
+ the
+
+
+ said
+ love
+
+
+ give
+ we
+
+
+ love
+ give
+
+
+ craft
+ our
+
+
+ craft
+ fragile
+
+
+ give
+ craft
+
+
+
+
+ ROOT
+ said
+
+
+ travel
+ We
+
+
+ said
+ travel
+
+
+ travel
+ together
+
+
+ said
+ he
+
+
+ preserved
+ passengers
+
+
+ ship
+ a
+
+
+ ship
+ little
+
+
+ ship
+ space
+
+
+ passengers
+ ship
+
+
+ ship
+ dependent
+
+
+ vul
+ its
+
+
+ dependent
+ vul
+
+
+ reserves
+ nerable
+
+
+ dependent
+ reserves
+
+
+ reserves
+ air
+
+
+ air
+ soil
+
+
+ commit
+ all
+
+
+ air
+ commit
+
+
+ passengers
+ ted
+
+
+ safety
+ our
+
+
+ ted
+ safety
+
+
+ security
+ its
+
+
+ ted
+ security
+
+
+ security
+ peace
+
+
+ said
+ preserved
+
+
+ preserved
+ annihilation
+
+
+ preserved
+ only
+
+
+ care
+ the
+
+
+ preserved
+ care
+
+
+ work
+ the
+
+
+ care
+ work
+
+
+ say
+ I
+
+
+ say
+ will
+
+
+ preserved
+ say
+
+
+ love
+ the
+
+
+ said
+ love
+
+
+ give
+ we
+
+
+ love
+ give
+
+
+ craft
+ our
+
+
+ craft
+ fragile
+
+
+ give
+ craft
+
+
+
+
+ ROOT
+ said
+
+
+ travel
+ We
+
+
+ said
+ travel
+
+
+ travel
+ together
+
+
+ said
+ he
+
+
+ preserved
+ passengers
+
+
+ ship
+ a
+
+
+ ship
+ little
+
+
+ ship
+ space
+
+
+ passengers
+ ship
+
+
+ ship
+ dependent
+
+
+ vul
+ its
+
+
+ dependent
+ vul
+
+
+ reserves
+ nerable
+
+
+ dependent
+ reserves
+
+
+ reserves
+ air
+
+
+ reserves
+ soil
+
+
+ air
+ soil
+
+
+ commit
+ all
+
+
+ air
+ commit
+
+
+ passengers
+ ted
+
+
+ safety
+ our
+
+
+ ted
+ safety
+
+
+ security
+ its
+
+
+ ted
+ security
+
+
+ ted
+ peace
+
+
+ security
+ peace
+
+
+ said
+ preserved
+
+
+ preserved
+ annihilation
+
+
+ preserved
+ only
+
+
+ care
+ the
+
+
+ preserved
+ care
+
+
+ work
+ the
+
+
+ care
+ work
+
+
+ say
+ I
+
+
+ say
+ will
+
+
+ said
+ say
+
+
+ preserved
+ say
+
+
+ love
+ the
+
+
+ said
+ love
+
+
+ give
+ we
+
+
+ love
+ give
+
+
+ craft
+ our
+
+
+ craft
+ fragile
+
+
+ give
+ craft
+
+
+
+
+
+
+ The
+ the
+ 31775
+ 31778
+ DT
+ O
+
+
+ rapid
+ rapid
+ 31779
+ 31784
+ JJ
+ O
+
+
+ political
+ political
+ 31785
+ 31794
+ JJ
+ O
+
+
+ changes
+ change
+ 31795
+ 31802
+ NNS
+ O
+
+
+ of
+ of
+ 31803
+ 31805
+ IN
+ O
+
+
+ the
+ the
+ 31806
+ 31809
+ DT
+ DATE
+ PREV_IMMEDIATE P1Y
+
+
+
+ last
+ last
+ 31810
+ 31814
+ JJ
+ DATE
+ PREV_IMMEDIATE P1Y
+
+
+
+ year
+ year
+ 31816
+ 31820
+ NN
+ DATE
+ PREV_IMMEDIATE P1Y
+
+
+
+ now
+ now
+ 31821
+ 31824
+ RB
+ DATE
+ PREV_IMMEDIATE P1Y
+ PRESENT_REF
+
+
+ provide
+ provide
+ 31825
+ 31832
+ VBP
+ O
+
+
+ an
+ a
+ 31833
+ 31835
+ DT
+ O
+
+
+ extraordinary
+ extraordinary
+ 31836
+ 31849
+ JJ
+ O
+
+
+ opportu
+ opportu
+ 31850
+ 31857
+ NN
+ O
+
+
+ -
+ -
+ 31857
+ 31858
+ :
+ O
+
+
+ nity-an
+ nity-an
+ 31860
+ 31867
+ JJ
+ O
+
+
+ opportunity
+ opportunity
+ 31869
+ 31880
+ NN
+ O
+
+
+ for
+ for
+ 31881
+ 31884
+ IN
+ O
+
+
+ unprecedented
+ unprecedented
+ 31885
+ 31898
+ JJ
+ O
+
+
+ global
+ global
+ 31900
+ 31906
+ JJ
+ O
+
+
+ cooperation
+ cooperation
+ 31907
+ 31918
+ NN
+ O
+
+
+ and
+ and
+ 31919
+ 31922
+ CC
+ O
+
+
+ an
+ a
+ 31923
+ 31925
+ DT
+ O
+
+
+ opportunity
+ opportunity
+ 31926
+ 31937
+ NN
+ O
+
+
+ to
+ to
+ 31938
+ 31940
+ TO
+ O
+
+
+ mobilize
+ mobilize
+ 31942
+ 31950
+ VB
+ O
+
+
+ significant
+ significant
+ 31951
+ 31962
+ JJ
+ O
+
+
+ new
+ new
+ 31963
+ 31966
+ JJ
+ O
+
+
+ resources-to
+ resources-to
+ 31967
+ 31979
+ NN
+ O
+
+
+ the
+ the
+ 31980
+ 31983
+ DT
+ O
+
+
+ task
+ task
+ 31985
+ 31989
+ NN
+ O
+
+
+ of
+ of
+ 31990
+ 31992
+ IN
+ O
+
+
+ protecting
+ protect
+ 31993
+ 32003
+ VBG
+ O
+
+
+ our
+ we
+ 32004
+ 32007
+ PRP$
+ O
+
+
+ fragile
+ fragile
+ 32008
+ 32015
+ JJ
+ O
+
+
+ craft
+ craft
+ 32016
+ 32021
+ NN
+ O
+
+
+ .
+ .
+ 32021
+ 32022
+ .
+ O
+
+
+ (ROOT (S (NP (NP (DT The) (JJ rapid) (JJ political) (NNS changes)) (PP (IN of) (NP (DT the) (JJ last) (NN year)))) (ADVP (RB now)) (VP (VBP provide) (NP (DT an) (JJ extraordinary) (NN opportu)) (: -) (S (NP (NP (JJ nity-an) (NN opportunity)) (PP (IN for) (NP (NP (JJ unprecedented) (JJ global) (NN cooperation)) (CC and) (NP (DT an) (NN opportunity))))) (VP (TO to) (VP (VB mobilize) (S (NP (JJ significant) (JJ new) (NN resources-to)) (NP (NP (DT the) (NN task)) (PP (IN of) (S (VP (VBG protecting) (NP (PRP$ our) (JJ fragile) (NN craft))))))))))) (. .)))
+
+
+ ROOT
+ provide
+
+
+ changes
+ The
+
+
+ changes
+ rapid
+
+
+ changes
+ political
+
+
+ provide
+ changes
+
+
+ changes
+ of
+
+
+ year
+ the
+
+
+ year
+ last
+
+
+ of
+ year
+
+
+ provide
+ now
+
+
+ opportu
+ an
+
+
+ opportu
+ extraordinary
+
+
+ provide
+ opportu
+
+
+ opportunity
+ nity-an
+
+
+ mobilize
+ opportunity
+
+
+ opportunity
+ for
+
+
+ cooperation
+ unprecedented
+
+
+ cooperation
+ global
+
+
+ for
+ cooperation
+
+
+ cooperation
+ and
+
+
+ opportunity
+ an
+
+
+ cooperation
+ opportunity
+
+
+ mobilize
+ to
+
+
+ provide
+ mobilize
+
+
+ resources-to
+ significant
+
+
+ resources-to
+ new
+
+
+ task
+ resources-to
+
+
+ task
+ the
+
+
+ mobilize
+ task
+
+
+ task
+ of
+
+
+ of
+ protecting
+
+
+ craft
+ our
+
+
+ craft
+ fragile
+
+
+ protecting
+ craft
+
+
+
+
+ ROOT
+ provide
+
+
+ changes
+ The
+
+
+ changes
+ rapid
+
+
+ changes
+ political
+
+
+ provide
+ changes
+
+
+ year
+ the
+
+
+ year
+ last
+
+
+ changes
+ year
+
+
+ provide
+ now
+
+
+ opportu
+ an
+
+
+ opportu
+ extraordinary
+
+
+ provide
+ opportu
+
+
+ opportunity
+ nity-an
+
+
+ mobilize
+ opportunity
+
+
+ cooperation
+ unprecedented
+
+
+ cooperation
+ global
+
+
+ opportunity
+ cooperation
+
+
+ opportunity
+ an
+
+
+ cooperation
+ opportunity
+
+
+ mobilize
+ to
+
+
+ provide
+ mobilize
+
+
+ resources-to
+ significant
+
+
+ resources-to
+ new
+
+
+ task
+ resources-to
+
+
+ task
+ the
+
+
+ mobilize
+ task
+
+
+ task
+ protecting
+
+
+ craft
+ our
+
+
+ craft
+ fragile
+
+
+ protecting
+ craft
+
+
+
+
+ ROOT
+ provide
+
+
+ changes
+ The
+
+
+ changes
+ rapid
+
+
+ changes
+ political
+
+
+ provide
+ changes
+
+
+ year
+ the
+
+
+ year
+ last
+
+
+ changes
+ year
+
+
+ provide
+ now
+
+
+ opportu
+ an
+
+
+ opportu
+ extraordinary
+
+
+ provide
+ opportu
+
+
+ opportunity
+ nity-an
+
+
+ mobilize
+ opportunity
+
+
+ cooperation
+ unprecedented
+
+
+ cooperation
+ global
+
+
+ opportunity
+ cooperation
+
+
+ opportunity
+ an
+
+
+ opportunity
+ opportunity
+
+
+ cooperation
+ opportunity
+
+
+ mobilize
+ to
+
+
+ provide
+ mobilize
+
+
+ resources-to
+ significant
+
+
+ resources-to
+ new
+
+
+ task
+ resources-to
+
+
+ task
+ the
+
+
+ mobilize
+ task
+
+
+ task
+ protecting
+
+
+ craft
+ our
+
+
+ craft
+ fragile
+
+
+ protecting
+ craft
+
+
+
+
+
+
+ We
+ we
+ 32023
+ 32025
+ PRP
+ O
+
+
+ must
+ must
+ 32026
+ 32030
+ MD
+ O
+
+
+ go
+ go
+ 32032
+ 32034
+ VB
+ O
+
+
+ forward
+ forward
+ 32035
+ 32042
+ RB
+ O
+
+
+ from
+ from
+ 32043
+ 32047
+ IN
+ O
+
+
+ here
+ here
+ 32048
+ 32052
+ RB
+ O
+
+
+ reaffirming
+ reaffirm
+ 32053
+ 32064
+ VBG
+ O
+
+
+ our
+ we
+ 32065
+ 32068
+ PRP$
+ O
+
+
+ love
+ love
+ 32069
+ 32073
+ NN
+ O
+
+
+ for
+ for
+ 32075
+ 32078
+ IN
+ O
+
+
+ this
+ this
+ 32079
+ 32083
+ DT
+ O
+
+
+ planet
+ planet
+ 32084
+ 32090
+ NN
+ O
+
+
+ and
+ and
+ 32091
+ 32094
+ CC
+ O
+
+
+ rededicating
+ rededicate
+ 32095
+ 32107
+ VBG
+ O
+
+
+ ourselves
+ ourselves
+ 32108
+ 32117
+ PRP
+ O
+
+
+ to
+ to
+ 32118
+ 32120
+ TO
+ O
+
+
+ its
+ its
+ 32122
+ 32125
+ PRP$
+ O
+
+
+ protection
+ protection
+ 32126
+ 32136
+ NN
+ O
+
+
+ .
+ .
+ 32136
+ 32137
+ .
+ O
+
+
+ (ROOT (S (NP (PRP We)) (VP (MD must) (VP (VB go) (ADVP (RB forward)) (PP (IN from) (S (VP (VP (ADVP (RB here)) (VBG reaffirming) (NP (PRP$ our) (NN love)) (PP (IN for) (NP (DT this) (NN planet)))) (CC and) (VP (VBG rededicating) (NP (PRP ourselves)) (PP (TO to) (NP (PRP$ its) (NN protection))))))))) (. .)))
+
+
+ ROOT
+ go
+
+
+ go
+ We
+
+
+ go
+ must
+
+
+ go
+ forward
+
+
+ go
+ from
+
+
+ reaffirming
+ here
+
+
+ from
+ reaffirming
+
+
+ love
+ our
+
+
+ reaffirming
+ love
+
+
+ reaffirming
+ for
+
+
+ planet
+ this
+
+
+ for
+ planet
+
+
+ reaffirming
+ and
+
+
+ reaffirming
+ rededicating
+
+
+ rededicating
+ ourselves
+
+
+ rededicating
+ to
+
+
+ protection
+ its
+
+
+ to
+ protection
+
+
+
+
+ ROOT
+ go
+
+
+ go
+ We
+
+
+ go
+ must
+
+
+ go
+ forward
+
+
+ reaffirming
+ here
+
+
+ go
+ reaffirming
+
+
+ love
+ our
+
+
+ reaffirming
+ love
+
+
+ planet
+ this
+
+
+ reaffirming
+ planet
+
+
+ reaffirming
+ rededicating
+
+
+ rededicating
+ ourselves
+
+
+ protection
+ its
+
+
+ rededicating
+ protection
+
+
+
+
+ ROOT
+ go
+
+
+ go
+ We
+
+
+ go
+ must
+
+
+ go
+ forward
+
+
+ reaffirming
+ here
+
+
+ go
+ reaffirming
+
+
+ love
+ our
+
+
+ reaffirming
+ love
+
+
+ planet
+ this
+
+
+ reaffirming
+ planet
+
+
+ go
+ rededicating
+
+
+ reaffirming
+ rededicating
+
+
+ rededicating
+ ourselves
+
+
+ protection
+ its
+
+
+ rededicating
+ protection
+
+
+
+
+
+
+ Mr.
+ Mr.
+ 32141
+ 32144
+ NNP
+ O
+
+
+ MITCHELL
+ MITCHELL
+ 32145
+ 32153
+ NNP
+ PERSON
+
+
+ .
+ .
+ 32153
+ 32154
+ .
+ O
+
+
+ (ROOT (NP (NNP Mr.) (NNP MITCHELL) (. .)))
+
+
+ ROOT
+ MITCHELL
+
+
+ MITCHELL
+ Mr.
+
+
+
+
+ ROOT
+ MITCHELL
+
+
+ MITCHELL
+ Mr.
+
+
+
+
+ ROOT
+ MITCHELL
+
+
+ MITCHELL
+ Mr.
+
+
+
+
+
+
+ Mr.
+ Mr.
+ 32155
+ 32158
+ NNP
+ O
+
+
+ President
+ President
+ 32159
+ 32168
+ NNP
+ O
+
+
+ ,
+ ,
+ 32168
+ 32169
+ ,
+ O
+
+
+ I
+ I
+ 32170
+ 32171
+ PRP
+ O
+
+
+ would
+ would
+ 32173
+ 32178
+ MD
+ O
+
+
+ like
+ like
+ 32179
+ 32183
+ VB
+ O
+
+
+ now
+ now
+ 32184
+ 32187
+ RB
+ DATE
+ PRESENT_REF
+ PRESENT_REF
+
+
+ to
+ to
+ 32188
+ 32190
+ TO
+ O
+
+
+ yield
+ yield
+ 32191
+ 32196
+ VB
+ O
+
+
+ to
+ to
+ 32197
+ 32199
+ TO
+ O
+
+
+ my
+ my
+ 32200
+ 32202
+ PRP$
+ O
+
+
+ distin
+ distin
+ 32203
+ 32209
+ NN
+ O
+
+
+ -
+ -
+ 32209
+ 32210
+ :
+ O
+
+
+ guished
+ guish
+ 32212
+ 32219
+ VBN
+ O
+
+
+ friend
+ friend
+ 32220
+ 32226
+ NN
+ O
+
+
+ and
+ and
+ 32227
+ 32230
+ CC
+ O
+
+
+ colleague
+ colleague
+ 32231
+ 32240
+ NN
+ O
+
+
+ ,
+ ,
+ 32240
+ 32241
+ ,
+ O
+
+
+ the
+ the
+ 32242
+ 32245
+ DT
+ O
+
+
+ Re
+ Re
+ 32246
+ 32248
+ NNP
+ O
+
+
+ -
+ -
+ 32248
+ 32249
+ :
+ O
+
+
+ publican
+ publican
+ 32251
+ 32259
+ JJ
+ O
+
+
+ leader
+ leader
+ 32260
+ 32266
+ NN
+ O
+
+
+ and
+ and
+ 32267
+ 32270
+ CC
+ O
+
+
+ to
+ to
+ 32271
+ 32273
+ TO
+ O
+
+
+ say
+ say
+ 32274
+ 32277
+ VB
+ O
+
+
+ that
+ that
+ 32278
+ 32282
+ IN
+ O
+
+
+ it
+ it
+ 32283
+ 32285
+ PRP
+ O
+
+
+ is
+ be
+ 32286
+ 32288
+ VBZ
+ O
+
+
+ as
+ as
+ 32289
+ 32291
+ IN
+ O
+
+
+ always
+ always
+ 32293
+ 32299
+ RB
+ O
+
+
+ a
+ a
+ 32300
+ 32301
+ DT
+ O
+
+
+ pleasure
+ pleasure
+ 32302
+ 32310
+ NN
+ O
+
+
+ to
+ to
+ 32311
+ 32313
+ TO
+ O
+
+
+ be
+ be
+ 32314
+ 32316
+ VB
+ O
+
+
+ here
+ here
+ 32317
+ 32321
+ RB
+ O
+
+
+ on
+ on
+ 32322
+ 32324
+ IN
+ O
+
+
+ the
+ the
+ 32325
+ 32328
+ DT
+ O
+
+
+ Senate
+ Senate
+ 32330
+ 32336
+ NNP
+ ORGANIZATION
+
+
+ floor
+ floor
+ 32337
+ 32342
+ NN
+ O
+
+
+ with
+ with
+ 32343
+ 32347
+ IN
+ O
+
+
+ the
+ the
+ 32348
+ 32351
+ DT
+ O
+
+
+ distinguished
+ distinguished
+ 32352
+ 32365
+ JJ
+ O
+
+
+ Republican
+ republican
+ 32367
+ 32377
+ JJ
+ MISC
+
+
+ leader
+ leader
+ 32378
+ 32384
+ NN
+ O
+
+
+ .
+ .
+ 32384
+ 32385
+ .
+ O
+
+
+ (ROOT (S (NP (NNP Mr.) (NNP President)) (, ,) (NP (PRP I)) (VP (MD would) (VP (VB like) (ADVP (RB now)) (S (VP (VP (TO to) (VP (VB yield) (PP (TO to) (NP (NP (PRP$ my) (NN distin)) (: -) (VP (VBN guished) (NP (NP (NP (NN friend) (CC and) (NN colleague)) (, ,) (NP (DT the) (NNP Re))) (: -) (NP (JJ publican) (NN leader)))))))) (CC and) (VP (TO to) (VP (VB say) (SBAR (IN that) (S (NP (PRP it)) (VP (VBZ is) (ADVP (IN as) (RB always)) (NP (DT a) (NN pleasure) (S (VP (TO to) (VP (VB be) (ADVP (RB here)) (PP (IN on) (NP (NP (DT the) (NNP Senate) (NN floor)) (PP (IN with) (NP (DT the) (JJ distinguished) (JJ Republican) (NN leader)))))))))))))))))) (. .)))
+
+
+ ROOT
+ like
+
+
+ President
+ Mr.
+
+
+ like
+ President
+
+
+ like
+ I
+
+
+ like
+ would
+
+
+ like
+ now
+
+
+ yield
+ to
+
+
+ like
+ yield
+
+
+ yield
+ to
+
+
+ distin
+ my
+
+
+ to
+ distin
+
+
+ distin
+ guished
+
+
+ guished
+ friend
+
+
+ friend
+ and
+
+
+ friend
+ colleague
+
+
+ Re
+ the
+
+
+ friend
+ Re
+
+
+ leader
+ publican
+
+
+ friend
+ leader
+
+
+ yield
+ and
+
+
+ say
+ to
+
+
+ yield
+ say
+
+
+ pleasure
+ that
+
+
+ pleasure
+ it
+
+
+ pleasure
+ is
+
+
+ pleasure
+ as
+
+
+ as
+ always
+
+
+ pleasure
+ a
+
+
+ say
+ pleasure
+
+
+ be
+ to
+
+
+ pleasure
+ be
+
+
+ be
+ here
+
+
+ be
+ on
+
+
+ floor
+ the
+
+
+ floor
+ Senate
+
+
+ on
+ floor
+
+
+ floor
+ with
+
+
+ leader
+ the
+
+
+ leader
+ distinguished
+
+
+ leader
+ Republican
+
+
+ with
+ leader
+
+
+
+
+ ROOT
+ like
+
+
+ President
+ Mr.
+
+
+ like
+ President
+
+
+ like
+ I
+
+
+ like
+ would
+
+
+ like
+ now
+
+
+ yield
+ to
+
+
+ like
+ yield
+
+
+ distin
+ my
+
+
+ yield
+ distin
+
+
+ distin
+ guished
+
+
+ guished
+ friend
+
+
+ friend
+ colleague
+
+
+ Re
+ the
+
+
+ friend
+ Re
+
+
+ leader
+ publican
+
+
+ friend
+ leader
+
+
+ say
+ to
+
+
+ yield
+ say
+
+
+ pleasure
+ that
+
+
+ pleasure
+ it
+
+
+ pleasure
+ is
+
+
+ pleasure
+ as
+
+
+ as
+ always
+
+
+ pleasure
+ a
+
+
+ say
+ pleasure
+
+
+ be
+ to
+
+
+ pleasure
+ be
+
+
+ be
+ here
+
+
+ floor
+ the
+
+
+ floor
+ Senate
+
+
+ be
+ floor
+
+
+ leader
+ the
+
+
+ leader
+ distinguished
+
+
+ leader
+ Republican
+
+
+ floor
+ leader
+
+
+
+
+ ROOT
+ like
+
+
+ President
+ Mr.
+
+
+ like
+ President
+
+
+ like
+ I
+
+
+ like
+ would
+
+
+ like
+ now
+
+
+ yield
+ to
+
+
+ like
+ yield
+
+
+ distin
+ my
+
+
+ yield
+ distin
+
+
+ distin
+ guished
+
+
+ guished
+ friend
+
+
+ guished
+ colleague
+
+
+ friend
+ colleague
+
+
+ Re
+ the
+
+
+ friend
+ Re
+
+
+ leader
+ publican
+
+
+ friend
+ leader
+
+
+ say
+ to
+
+
+ like
+ say
+
+
+ yield
+ say
+
+
+ pleasure
+ that
+
+
+ pleasure
+ it
+
+
+ pleasure
+ is
+
+
+ pleasure
+ as
+
+
+ as
+ always
+
+
+ pleasure
+ a
+
+
+ say
+ pleasure
+
+
+ be
+ to
+
+
+ pleasure
+ be
+
+
+ be
+ here
+
+
+ floor
+ the
+
+
+ floor
+ Senate
+
+
+ be
+ floor
+
+
+ leader
+ the
+
+
+ leader
+ distinguished
+
+
+ leader
+ Republican
+
+
+ floor
+ leader
+
+
+
+
+
+
+ I
+ I
+ 32386
+ 32387
+ PRP
+ O
+
+
+ look
+ look
+ 32388
+ 32392
+ VBP
+ O
+
+
+ forward
+ forward
+ 32393
+ 32400
+ RB
+ O
+
+
+ to
+ to
+ 32401
+ 32403
+ TO
+ O
+
+
+ what
+ what
+ 32405
+ 32409
+ WP
+ O
+
+
+ I
+ I
+ 32410
+ 32411
+ PRP
+ O
+
+
+ know
+ know
+ 32412
+ 32416
+ VBP
+ O
+
+
+ will
+ will
+ 32417
+ 32421
+ MD
+ O
+
+
+ be
+ be
+ 32422
+ 32424
+ VB
+ O
+
+
+ a
+ a
+ 32425
+ 32426
+ DT
+ O
+
+
+ busy
+ busy
+ 32427
+ 32431
+ JJ
+ O
+
+
+ and
+ and
+ 32432
+ 32435
+ CC
+ O
+
+
+ I
+ I
+ 32436
+ 32437
+ PRP
+ O
+
+
+ hope
+ hope
+ 32438
+ 32442
+ VBP
+ O
+
+
+ will
+ will
+ 32444
+ 32448
+ MD
+ O
+
+
+ also
+ also
+ 32449
+ 32453
+ RB
+ O
+
+
+ be
+ be
+ 32454
+ 32456
+ VB
+ O
+
+
+ a
+ a
+ 32457
+ 32458
+ DT
+ O
+
+
+ very
+ very
+ 32459
+ 32463
+ RB
+ O
+
+
+ productive
+ productive
+ 32464
+ 32474
+ JJ
+ O
+
+
+ session
+ session
+ 32475
+ 32482
+ NN
+ O
+
+
+ for
+ for
+ 32484
+ 32487
+ IN
+ O
+
+
+ the
+ the
+ 32488
+ 32491
+ DT
+ O
+
+
+ Senate
+ Senate
+ 32492
+ 32498
+ NNP
+ ORGANIZATION
+
+
+ and
+ and
+ 32499
+ 32502
+ CC
+ O
+
+
+ the
+ the
+ 32503
+ 32506
+ DT
+ O
+
+
+ Nation
+ nation
+ 32507
+ 32513
+ NN
+ O
+
+
+ .
+ .
+ 32513
+ 32514
+ .
+ O
+
+
+ (ROOT (S (S (NP (PRP I)) (VP (VBP look) (ADVP (RB forward)) (PP (TO to) (SBAR (WHNP (WP what)) (S (NP (PRP I)) (VP (VBP know) (SBAR (S (VP (MD will) (VP (VB be) (ADJP (DT a) (JJ busy)))))))))))) (CC and) (S (NP (PRP I)) (VP (VBP hope) (SBAR (S (VP (MD will) (ADVP (RB also)) (VP (VB be) (NP (NP (DT a) (ADJP (RB very) (JJ productive)) (NN session)) (PP (IN for) (NP (NP (DT the) (NNP Senate)) (CC and) (NP (DT the) (NN Nation))))))))))) (. .)))
+
+
+ ROOT
+ look
+
+
+ look
+ I
+
+
+ look
+ forward
+
+
+ look
+ to
+
+
+ know
+ what
+
+
+ know
+ I
+
+
+ to
+ know
+
+
+ busy
+ will
+
+
+ busy
+ be
+
+
+ busy
+ a
+
+
+ know
+ busy
+
+
+ look
+ and
+
+
+ hope
+ I
+
+
+ look
+ hope
+
+
+ session
+ will
+
+
+ session
+ also
+
+
+ session
+ be
+
+
+ session
+ a
+
+
+ productive
+ very
+
+
+ session
+ productive
+
+
+ hope
+ session
+
+
+ session
+ for
+
+
+ Senate
+ the
+
+
+ for
+ Senate
+
+
+ Senate
+ and
+
+
+ Nation
+ the
+
+
+ Senate
+ Nation
+
+
+
+
+ ROOT
+ look
+
+
+ look
+ I
+
+
+ look
+ forward
+
+
+ know
+ what
+
+
+ know
+ I
+
+
+ look
+ know
+
+
+ busy
+ will
+
+
+ busy
+ be
+
+
+ busy
+ a
+
+
+ know
+ busy
+
+
+ hope
+ I
+
+
+ look
+ hope
+
+
+ session
+ will
+
+
+ session
+ also
+
+
+ session
+ be
+
+
+ session
+ a
+
+
+ productive
+ very
+
+
+ session
+ productive
+
+
+ hope
+ session
+
+
+ Senate
+ the
+
+
+ session
+ Senate
+
+
+ Nation
+ the
+
+
+ Senate
+ Nation
+
+
+
+
+ ROOT
+ look
+
+
+ look
+ I
+
+
+ look
+ forward
+
+
+ know
+ what
+
+
+ know
+ I
+
+
+ look
+ know
+
+
+ busy
+ will
+
+
+ busy
+ be
+
+
+ busy
+ a
+
+
+ know
+ busy
+
+
+ hope
+ I
+
+
+ look
+ hope
+
+
+ session
+ will
+
+
+ session
+ also
+
+
+ session
+ be
+
+
+ session
+ a
+
+
+ productive
+ very
+
+
+ session
+ productive
+
+
+ hope
+ session
+
+
+ Senate
+ the
+
+
+ session
+ Senate
+
+
+ Nation
+ the
+
+
+ session
+ Nation
+
+
+ Senate
+ Nation
+
+
+
+
+
+
+
+ 107
+ 4
+ 8
+ 7
+
+
+ 1
+ 1
+ 4
+ 2
+
+
+ 3
+ 4
+ 6
+ 5
+
+
+ 119
+ 16
+ 18
+ 17
+
+
+ 247
+ 1
+ 4
+ 2
+
+
+
+
+ 2
+ 1
+ 48
+ 2
+
+
+ 2
+ 1
+ 3
+ 2
+
+
+ 4
+ 1
+ 3
+ 2
+
+
+ 13
+ 3
+ 6
+ 4
+
+
+ 14
+ 5
+ 6
+ 5
+
+
+ 15
+ 9
+ 10
+ 9
+
+
+ 41
+ 7
+ 10
+ 8
+
+
+ 43
+ 3
+ 6
+ 4
+
+
+ 44
+ 1
+ 2
+ 1
+
+
+ 44
+ 4
+ 5
+ 4
+
+
+ 45
+ 1
+ 4
+ 2
+
+
+ 47
+ 6
+ 12
+ 7
+
+
+ 47
+ 6
+ 8
+ 7
+
+
+ 53
+ 1
+ 3
+ 2
+
+
+ 53
+ 4
+ 5
+ 4
+
+
+ 64
+ 3
+ 6
+ 4
+
+
+ 94
+ 28
+ 30
+ 29
+
+
+ 108
+ 1
+ 3
+ 2
+
+
+ 120
+ 1
+ 3
+ 2
+
+
+ 248
+ 1
+ 3
+ 2
+
+
+
+
+ 223
+ 22
+ 24
+ 23
+
+
+ 241
+ 4
+ 6
+ 5
+
+
+
+
+ 2
+ 18
+ 19
+ 18
+
+
+ 13
+ 1
+ 2
+ 1
+
+
+ 14
+ 1
+ 2
+ 1
+
+
+ 15
+ 3
+ 4
+ 3
+
+
+ 20
+ 5
+ 6
+ 5
+
+
+ 29
+ 1
+ 2
+ 1
+
+
+ 39
+ 1
+ 2
+ 1
+
+
+ 42
+ 3
+ 4
+ 3
+
+
+ 43
+ 1
+ 2
+ 1
+
+
+ 57
+ 1
+ 2
+ 1
+
+
+ 57
+ 3
+ 4
+ 3
+
+
+ 59
+ 3
+ 4
+ 3
+
+
+ 61
+ 1
+ 2
+ 1
+
+
+ 64
+ 1
+ 2
+ 1
+
+
+ 73
+ 3
+ 4
+ 3
+
+
+ 78
+ 1
+ 2
+ 1
+
+
+ 92
+ 13
+ 14
+ 13
+
+
+ 94
+ 1
+ 2
+ 1
+
+
+ 105
+ 7
+ 8
+ 7
+
+
+ 106
+ 1
+ 2
+ 1
+
+
+ 106
+ 12
+ 13
+ 12
+
+
+ 108
+ 4
+ 5
+ 4
+
+
+ 112
+ 1
+ 2
+ 1
+
+
+ 112
+ 11
+ 12
+ 11
+
+
+ 114
+ 1
+ 2
+ 1
+
+
+ 115
+ 5
+ 6
+ 5
+
+
+ 115
+ 10
+ 11
+ 10
+
+
+ 117
+ 1
+ 2
+ 1
+
+
+ 118
+ 1
+ 2
+ 1
+
+
+ 120
+ 4
+ 5
+ 4
+
+
+ 123
+ 1
+ 2
+ 1
+
+
+ 123
+ 13
+ 14
+ 13
+
+
+ 125
+ 1
+ 2
+ 1
+
+
+ 150
+ 2
+ 3
+ 2
+
+
+ 157
+ 2
+ 3
+ 2
+
+
+ 158
+ 2
+ 3
+ 2
+
+
+ 160
+ 1
+ 2
+ 1
+
+
+ 163
+ 7
+ 8
+ 7
+
+
+ 170
+ 16
+ 17
+ 16
+
+
+ 176
+ 2
+ 3
+ 2
+
+
+ 176
+ 5
+ 6
+ 5
+
+
+ 177
+ 33
+ 34
+ 33
+
+
+ 178
+ 4
+ 5
+ 4
+
+
+ 178
+ 20
+ 21
+ 20
+
+
+ 183
+ 3
+ 4
+ 3
+
+
+ 200
+ 6
+ 7
+ 6
+
+
+ 201
+ 1
+ 2
+ 1
+
+
+ 202
+ 1
+ 2
+ 1
+
+
+ 205
+ 6
+ 7
+ 6
+
+
+ 210
+ 4
+ 5
+ 4
+
+
+ 215
+ 4
+ 5
+ 4
+
+
+ 215
+ 25
+ 26
+ 25
+
+
+ 216
+ 6
+ 7
+ 6
+
+
+ 216
+ 9
+ 10
+ 9
+
+
+ 217
+ 1
+ 2
+ 1
+
+
+ 219
+ 3
+ 4
+ 3
+
+
+ 220
+ 1
+ 2
+ 1
+
+
+ 225
+ 1
+ 2
+ 1
+
+
+ 226
+ 11
+ 12
+ 11
+
+
+ 227
+ 3
+ 4
+ 3
+
+
+ 228
+ 14
+ 15
+ 14
+
+
+ 230
+ 12
+ 13
+ 12
+
+
+ 231
+ 2
+ 3
+ 2
+
+
+ 234
+ 2
+ 3
+ 2
+
+
+ 236
+ 3
+ 4
+ 3
+
+
+ 239
+ 1
+ 2
+ 1
+
+
+ 241
+ 1
+ 2
+ 1
+
+
+ 248
+ 4
+ 5
+ 4
+
+
+ 248
+ 11
+ 12
+ 11
+
+
+ 249
+ 1
+ 2
+ 1
+
+
+ 249
+ 6
+ 7
+ 6
+
+
+ 249
+ 13
+ 14
+ 13
+
+
+
+
+ 2
+ 36
+ 47
+ 36
+
+
+ 2
+ 36
+ 37
+ 36
+
+
+
+
+ 2
+ 40
+ 47
+ 40
+
+
+ 2
+ 40
+ 42
+ 40
+
+
+
+
+ 3
+ 1
+ 7
+ 3
+
+
+ 98
+ 6
+ 8
+ 7
+
+
+
+
+ 223
+ 10
+ 14
+ 13
+
+
+ 223
+ 32
+ 35
+ 34
+
+
+
+
+ 4
+ 4
+ 5
+ 4
+
+
+ 7
+ 4
+ 5
+ 4
+
+
+ 8
+ 5
+ 6
+ 5
+
+
+
+
+ 5
+ 1
+ 2
+ 1
+
+
+ 6
+ 1
+ 2
+ 1
+
+
+
+
+ 228
+ 48
+ 55
+ 49
+
+
+ 246
+ 17
+ 19
+ 18
+
+
+
+
+ 4
+ 9
+ 13
+ 12
+
+
+ 6
+ 8
+ 12
+ 11
+
+
+ 37
+ 2
+ 6
+ 5
+
+
+
+
+ 6
+ 16
+ 18
+ 17
+
+
+ 15
+ 6
+ 8
+ 7
+
+
+ 23
+ 20
+ 22
+ 21
+
+
+ 42
+ 7
+ 9
+ 8
+
+
+ 108
+ 28
+ 29
+ 28
+
+
+ 110
+ 31
+ 32
+ 31
+
+
+ 216
+ 10
+ 11
+ 10
+
+
+ 217
+ 20
+ 21
+ 20
+
+
+ 248
+ 39
+ 40
+ 39
+
+
+ 249
+ 23
+ 25
+ 24
+
+
+ 249
+ 24
+ 25
+ 24
+
+
+
+
+ 7
+ 9
+ 41
+ 10
+
+
+ 7
+ 9
+ 12
+ 10
+
+
+ 7
+ 14
+ 41
+ 15
+
+
+ 7
+ 30
+ 32
+ 31
+
+
+
+
+ 228
+ 6
+ 13
+ 7
+
+
+ 228
+ 1
+ 2
+ 1
+
+
+
+
+ 7
+ 4
+ 6
+ 5
+
+
+ 167
+ 53
+ 55
+ 54
+
+
+
+
+ 7
+ 2
+ 3
+ 2
+
+
+ 223
+ 2
+ 3
+ 2
+
+
+ 223
+ 3
+ 4
+ 3
+
+
+
+
+ 227
+ 6
+ 7
+ 6
+
+
+ 228
+ 36
+ 37
+ 36
+
+
+
+
+ 7
+ 28
+ 37
+ 28
+
+
+ 7
+ 28
+ 29
+ 28
+
+
+
+
+ 231
+ 9
+ 26
+ 11
+
+
+ 231
+ 9
+ 20
+ 11
+
+
+
+
+ 56
+ 27
+ 30
+ 29
+
+
+ 8
+ 18
+ 21
+ 18
+
+
+ 33
+ 25
+ 26
+ 25
+
+
+ 56
+ 25
+ 26
+ 25
+
+
+
+
+ 8
+ 9
+ 11
+ 10
+
+
+ 12
+ 39
+ 41
+ 40
+
+
+
+
+ 9
+ 3
+ 9
+ 8
+
+
+ 100
+ 27
+ 30
+ 29
+
+
+
+
+ 229
+ 16
+ 18
+ 17
+
+
+ 230
+ 29
+ 30
+ 29
+
+
+ 231
+ 5
+ 6
+ 5
+
+
+
+
+ 10
+ 4
+ 16
+ 6
+
+
+ 10
+ 1
+ 2
+ 1
+
+
+ 10
+ 4
+ 7
+ 6
+
+
+ 33
+ 30
+ 32
+ 31
+
+
+ 34
+ 12
+ 14
+ 13
+
+
+
+
+ 231
+ 14
+ 16
+ 15
+
+
+ 229
+ 5
+ 7
+ 5
+
+
+
+
+ 233
+ 3
+ 5
+ 4
+
+
+ 233
+ 11
+ 13
+ 12
+
+
+
+
+ 232
+ 29
+ 31
+ 30
+
+
+ 233
+ 15
+ 17
+ 16
+
+
+
+
+ 14
+ 1
+ 9
+ 2
+
+
+ 15
+ 1
+ 2
+ 1
+
+
+ 15
+ 3
+ 5
+ 4
+
+
+ 73
+ 3
+ 5
+ 4
+
+
+
+
+ 13
+ 3
+ 15
+ 7
+
+
+ 14
+ 7
+ 8
+ 7
+
+
+
+
+ 231
+ 27
+ 33
+ 28
+
+
+ 231
+ 27
+ 29
+ 28
+
+
+ 231
+ 31
+ 33
+ 32
+
+
+
+
+ 18
+ 1
+ 2
+ 1
+
+
+ 19
+ 1
+ 2
+ 1
+
+
+ 19
+ 5
+ 6
+ 5
+
+
+
+
+ 15
+ 10
+ 15
+ 14
+
+
+ 37
+ 3
+ 6
+ 5
+
+
+
+
+ 209
+ 3
+ 4
+ 3
+
+
+ 209
+ 8
+ 9
+ 8
+
+
+ 209
+ 12
+ 13
+ 12
+
+
+ 211
+ 4
+ 5
+ 4
+
+
+ 211
+ 9
+ 10
+ 9
+
+
+
+
+ 21
+ 1
+ 2
+ 1
+
+
+ 22
+ 1
+ 2
+ 1
+
+
+ 22
+ 14
+ 15
+ 14
+
+
+ 38
+ 7
+ 8
+ 7
+
+
+ 39
+ 10
+ 11
+ 10
+
+
+ 69
+ 27
+ 28
+ 27
+
+
+ 112
+ 12
+ 13
+ 12
+
+
+ 199
+ 27
+ 28
+ 27
+
+
+
+
+ 21
+ 7
+ 10
+ 7
+
+
+ 25
+ 13
+ 16
+ 13
+
+
+
+
+ 19
+ 12
+ 14
+ 13
+
+
+ 21
+ 11
+ 13
+ 12
+
+
+ 25
+ 3
+ 5
+ 4
+
+
+ 43
+ 8
+ 10
+ 9
+
+
+ 44
+ 16
+ 18
+ 17
+
+
+ 57
+ 11
+ 13
+ 12
+
+
+ 94
+ 19
+ 21
+ 20
+
+
+
+
+ 211
+ 2
+ 4
+ 3
+
+
+ 246
+ 11
+ 13
+ 12
+
+
+
+
+ 20
+ 9
+ 10
+ 9
+
+
+ 172
+ 6
+ 7
+ 6
+
+
+
+
+ 22
+ 3
+ 6
+ 5
+
+
+ 62
+ 12
+ 13
+ 12
+
+
+ 141
+ 3
+ 6
+ 5
+
+
+ 159
+ 6
+ 9
+ 8
+
+
+ 171
+ 6
+ 8
+ 7
+
+
+ 180
+ 24
+ 27
+ 26
+
+
+ 206
+ 14
+ 17
+ 16
+
+
+
+
+ 164
+ 15
+ 23
+ 16
+
+
+ 22
+ 19
+ 21
+ 20
+
+
+ 27
+ 10
+ 12
+ 11
+
+
+
+
+ 25
+ 1
+ 2
+ 1
+
+
+ 26
+ 1
+ 2
+ 1
+
+
+ 227
+ 1
+ 2
+ 1
+
+
+
+
+ 219
+ 9
+ 48
+ 11
+
+
+ 219
+ 9
+ 12
+ 11
+
+
+ 219
+ 13
+ 29
+ 15
+
+
+
+
+ 32
+ 5
+ 7
+ 6
+
+
+ 32
+ 3
+ 4
+ 3
+
+
+ 40
+ 1
+ 2
+ 1
+
+
+ 154
+ 1
+ 2
+ 1
+
+
+ 218
+ 1
+ 2
+ 1
+
+
+
+
+ 30
+ 7
+ 11
+ 10
+
+
+ 31
+ 1
+ 5
+ 4
+
+
+ 33
+ 12
+ 16
+ 15
+
+
+
+
+ 30
+ 7
+ 10
+ 8
+
+
+ 31
+ 1
+ 4
+ 2
+
+
+ 33
+ 12
+ 15
+ 13
+
+
+ 90
+ 46
+ 49
+ 47
+
+
+
+
+ 28
+ 6
+ 7
+ 6
+
+
+ 33
+ 28
+ 29
+ 28
+
+
+
+
+ 34
+ 2
+ 4
+ 3
+
+
+ 34
+ 5
+ 6
+ 5
+
+
+
+
+ 33
+ 4
+ 5
+ 4
+
+
+ 33
+ 19
+ 20
+ 19
+
+
+ 35
+ 1
+ 2
+ 1
+
+
+ 35
+ 13
+ 14
+ 13
+
+
+ 36
+ 12
+ 13
+ 12
+
+
+ 38
+ 1
+ 2
+ 1
+
+
+ 38
+ 27
+ 28
+ 27
+
+
+ 40
+ 7
+ 8
+ 7
+
+
+
+
+ 101
+ 24
+ 26
+ 25
+
+
+ 37
+ 13
+ 14
+ 13
+
+
+ 50
+ 17
+ 18
+ 17
+
+
+ 103
+ 11
+ 12
+ 11
+
+
+ 104
+ 9
+ 11
+ 9
+
+
+ 111
+ 12
+ 14
+ 13
+
+
+ 115
+ 8
+ 9
+ 8
+
+
+
+
+ 220
+ 5
+ 9
+ 8
+
+
+ 226
+ 16
+ 18
+ 17
+
+
+
+
+ 219
+ 45
+ 48
+ 47
+
+
+ 221
+ 36
+ 39
+ 38
+
+
+
+
+ 35
+ 10
+ 19
+ 11
+
+
+ 36
+ 1
+ 21
+ 1
+
+
+
+
+ 244
+ 63
+ 66
+ 65
+
+
+ 245
+ 33
+ 36
+ 35
+
+
+
+
+ 248
+ 19
+ 21
+ 20
+
+
+ 38
+ 38
+ 40
+ 39
+
+
+ 149
+ 12
+ 14
+ 13
+
+
+
+
+ 73
+ 11
+ 14
+ 12
+
+
+ 38
+ 28
+ 30
+ 28
+
+
+ 78
+ 18
+ 20
+ 19
+
+
+ 249
+ 26
+ 28
+ 27
+
+
+
+
+ 244
+ 48
+ 53
+ 49
+
+
+ 244
+ 48
+ 50
+ 49
+
+
+ 244
+ 51
+ 53
+ 52
+
+
+
+
+ 244
+ 59
+ 66
+ 60
+
+
+ 246
+ 8
+ 10
+ 9
+
+
+ 246
+ 17
+ 18
+ 17
+
+
+
+
+ 38
+ 47
+ 48
+ 47
+
+
+ 64
+ 8
+ 9
+ 8
+
+
+
+
+ 38
+ 6
+ 16
+ 8
+
+
+ 39
+ 9
+ 12
+ 11
+
+
+
+
+ 38
+ 27
+ 41
+ 31
+
+
+ 38
+ 27
+ 34
+ 31
+
+
+ 38
+ 28
+ 34
+ 31
+
+
+
+
+ 248
+ 15
+ 24
+ 15
+
+
+ 248
+ 15
+ 18
+ 15
+
+
+
+
+ 42
+ 13
+ 15
+ 14
+
+
+ 178
+ 20
+ 22
+ 21
+
+
+
+
+ 43
+ 3
+ 10
+ 6
+
+
+ 51
+ 8
+ 10
+ 9
+
+
+ 52
+ 4
+ 6
+ 5
+
+
+ 57
+ 22
+ 24
+ 23
+
+
+
+
+ 41
+ 3
+ 5
+ 4
+
+
+ 185
+ 19
+ 21
+ 20
+
+
+
+
+ 41
+ 13
+ 14
+ 13
+
+
+ 77
+ 6
+ 7
+ 6
+
+
+
+
+ 46
+ 8
+ 11
+ 10
+
+
+ 47
+ 13
+ 14
+ 13
+
+
+ 56
+ 12
+ 15
+ 14
+
+
+ 75
+ 2
+ 5
+ 4
+
+
+
+
+ 48
+ 18
+ 19
+ 18
+
+
+ 48
+ 21
+ 22
+ 21
+
+
+ 48
+ 24
+ 25
+ 24
+
+
+ 48
+ 30
+ 31
+ 30
+
+
+
+
+ 44
+ 21
+ 23
+ 22
+
+
+ 50
+ 23
+ 25
+ 24
+
+
+
+
+ 45
+ 1
+ 15
+ 4
+
+
+ 46
+ 1
+ 2
+ 1
+
+
+ 47
+ 1
+ 2
+ 1
+
+
+
+
+ 45
+ 11
+ 14
+ 13
+
+
+ 48
+ 1
+ 4
+ 3
+
+
+ 49
+ 1
+ 2
+ 1
+
+
+ 49
+ 3
+ 6
+ 5
+
+
+ 50
+ 6
+ 8
+ 7
+
+
+ 156
+ 1
+ 3
+ 2
+
+
+
+
+ 51
+ 6
+ 7
+ 6
+
+
+ 114
+ 12
+ 13
+ 12
+
+
+ 156
+ 3
+ 4
+ 3
+
+
+ 217
+ 26
+ 27
+ 26
+
+
+ 248
+ 7
+ 8
+ 7
+
+
+
+
+ 53
+ 10
+ 14
+ 11
+
+
+ 54
+ 13
+ 17
+ 14
+
+
+
+
+ 53
+ 13
+ 14
+ 13
+
+
+ 54
+ 16
+ 17
+ 16
+
+
+
+
+ 245
+ 6
+ 10
+ 8
+
+
+ 50
+ 19
+ 21
+ 20
+
+
+ 57
+ 13
+ 15
+ 14
+
+
+ 59
+ 24
+ 26
+ 25
+
+
+ 63
+ 12
+ 14
+ 13
+
+
+
+
+ 50
+ 1
+ 13
+ 3
+
+
+ 51
+ 1
+ 2
+ 1
+
+
+ 86
+ 18
+ 21
+ 20
+
+
+
+
+ 235
+ 5
+ 9
+ 6
+
+
+ 235
+ 18
+ 19
+ 18
+
+
+
+
+ 55
+ 18
+ 21
+ 20
+
+
+ 55
+ 25
+ 28
+ 26
+
+
+
+
+ 171
+ 32
+ 35
+ 34
+
+
+ 55
+ 6
+ 8
+ 7
+
+
+ 56
+ 1
+ 30
+ 1
+
+
+
+
+ 54
+ 6
+ 12
+ 7
+
+
+ 54
+ 18
+ 19
+ 18
+
+
+
+
+ 54
+ 1
+ 2
+ 1
+
+
+ 54
+ 9
+ 10
+ 9
+
+
+ 55
+ 1
+ 2
+ 1
+
+
+ 55
+ 3
+ 4
+ 3
+
+
+ 55
+ 5
+ 6
+ 5
+
+
+ 55
+ 18
+ 19
+ 18
+
+
+
+
+ 239
+ 5
+ 8
+ 7
+
+
+ 242
+ 6
+ 7
+ 6
+
+
+
+
+ 57
+ 3
+ 5
+ 4
+
+
+ 57
+ 7
+ 8
+ 7
+
+
+
+
+ 56
+ 16
+ 18
+ 17
+
+
+ 85
+ 24
+ 26
+ 25
+
+
+ 150
+ 2
+ 4
+ 3
+
+
+
+
+ 56
+ 16
+ 17
+ 16
+
+
+ 59
+ 22
+ 23
+ 22
+
+
+
+
+ 60
+ 51
+ 56
+ 55
+
+
+ 60
+ 48
+ 76
+ 49
+
+
+ 60
+ 48
+ 71
+ 49
+
+
+ 60
+ 48
+ 50
+ 49
+
+
+
+
+ 240
+ 8
+ 17
+ 8
+
+
+ 240
+ 8
+ 12
+ 8
+
+
+
+
+ 241
+ 8
+ 36
+ 8
+
+
+ 243
+ 11
+ 12
+ 11
+
+
+ 243
+ 16
+ 17
+ 16
+
+
+ 244
+ 2
+ 3
+ 2
+
+
+ 244
+ 35
+ 36
+ 35
+
+
+ 244
+ 61
+ 62
+ 61
+
+
+ 244
+ 63
+ 64
+ 63
+
+
+
+
+ 242
+ 14
+ 18
+ 17
+
+
+ 243
+ 18
+ 20
+ 19
+
+
+ 244
+ 7
+ 8
+ 7
+
+
+ 244
+ 55
+ 56
+ 55
+
+
+
+
+ 60
+ 18
+ 19
+ 18
+
+
+ 139
+ 16
+ 17
+ 16
+
+
+
+
+ 60
+ 1
+ 11
+ 2
+
+
+ 60
+ 1
+ 3
+ 2
+
+
+ 60
+ 2
+ 3
+ 2
+
+
+ 60
+ 4
+ 10
+ 5
+
+
+
+
+ 62
+ 24
+ 31
+ 25
+
+
+ 62
+ 24
+ 26
+ 25
+
+
+
+
+ 62
+ 14
+ 20
+ 15
+
+
+ 241
+ 17
+ 19
+ 18
+
+
+
+
+ 62
+ 21
+ 31
+ 22
+
+
+ 89
+ 11
+ 12
+ 11
+
+
+ 205
+ 15
+ 16
+ 15
+
+
+
+
+ 62
+ 1
+ 20
+ 5
+
+
+ 63
+ 10
+ 12
+ 11
+
+
+
+
+ 244
+ 13
+ 17
+ 16
+
+
+ 244
+ 20
+ 21
+ 20
+
+
+ 244
+ 38
+ 39
+ 38
+
+
+
+
+ 244
+ 11
+ 43
+ 11
+
+
+ 245
+ 33
+ 34
+ 33
+
+
+ 246
+ 1
+ 2
+ 1
+
+
+ 246
+ 8
+ 9
+ 8
+
+
+ 246
+ 15
+ 16
+ 15
+
+
+
+
+ 244
+ 26
+ 32
+ 26
+
+
+ 244
+ 26
+ 29
+ 26
+
+
+
+
+ 67
+ 1
+ 3
+ 2
+
+
+ 68
+ 1
+ 2
+ 1
+
+
+ 69
+ 1
+ 2
+ 1
+
+
+
+
+ 67
+ 5
+ 8
+ 7
+
+
+ 67
+ 12
+ 13
+ 12
+
+
+ 69
+ 4
+ 5
+ 4
+
+
+ 69
+ 22
+ 23
+ 22
+
+
+ 69
+ 26
+ 27
+ 26
+
+
+ 70
+ 9
+ 10
+ 9
+
+
+ 171
+ 11
+ 13
+ 12
+
+
+
+
+ 69
+ 14
+ 17
+ 16
+
+
+ 83
+ 9
+ 11
+ 10
+
+
+ 84
+ 11
+ 13
+ 12
+
+
+ 243
+ 9
+ 11
+ 10
+
+
+
+
+ 70
+ 2
+ 26
+ 5
+
+
+ 70
+ 24
+ 25
+ 24
+
+
+ 70
+ 35
+ 36
+ 35
+
+
+ 70
+ 39
+ 40
+ 39
+
+
+ 71
+ 8
+ 10
+ 9
+
+
+ 71
+ 17
+ 18
+ 17
+
+
+ 71
+ 20
+ 21
+ 20
+
+
+ 71
+ 23
+ 24
+ 23
+
+
+ 71
+ 28
+ 29
+ 28
+
+
+ 71
+ 38
+ 39
+ 38
+
+
+
+
+ 69
+ 22
+ 29
+ 24
+
+
+ 72
+ 32
+ 35
+ 32
+
+
+
+
+ 63
+ 1
+ 2
+ 1
+
+
+ 65
+ 10
+ 11
+ 10
+
+
+ 67
+ 5
+ 6
+ 5
+
+
+
+
+ 72
+ 3
+ 4
+ 3
+
+
+ 74
+ 1
+ 2
+ 1
+
+
+ 75
+ 3
+ 4
+ 3
+
+
+ 77
+ 1
+ 2
+ 1
+
+
+ 79
+ 8
+ 9
+ 8
+
+
+ 80
+ 22
+ 23
+ 22
+
+
+
+
+ 72
+ 7
+ 29
+ 10
+
+
+ 72
+ 7
+ 11
+ 10
+
+
+ 72
+ 12
+ 17
+ 13
+
+
+ 72
+ 15
+ 17
+ 16
+
+
+ 72
+ 19
+ 29
+ 21
+
+
+
+
+ 72
+ 23
+ 29
+ 25
+
+
+ 222
+ 1
+ 3
+ 2
+
+
+
+
+ 74
+ 1
+ 5
+ 3
+
+
+ 75
+ 10
+ 12
+ 11
+
+
+
+
+ 70
+ 24
+ 26
+ 25
+
+
+ 95
+ 2
+ 3
+ 2
+
+
+ 95
+ 9
+ 10
+ 9
+
+
+
+
+ 71
+ 17
+ 25
+ 18
+
+
+ 71
+ 17
+ 19
+ 18
+
+
+ 71
+ 20
+ 22
+ 21
+
+
+ 71
+ 23
+ 25
+ 24
+
+
+
+
+ 71
+ 28
+ 30
+ 29
+
+
+ 80
+ 22
+ 24
+ 23
+
+
+
+
+ 79
+ 9
+ 10
+ 9
+
+
+ 162
+ 9
+ 10
+ 9
+
+
+
+
+ 78
+ 9
+ 24
+ 9
+
+
+ 78
+ 9
+ 10
+ 9
+
+
+
+
+ 78
+ 21
+ 24
+ 22
+
+
+ 91
+ 1
+ 3
+ 2
+
+
+ 97
+ 22
+ 24
+ 23
+
+
+ 106
+ 15
+ 17
+ 16
+
+
+
+
+ 82
+ 2
+ 3
+ 2
+
+
+ 81
+ 5
+ 8
+ 6
+
+
+
+
+ 80
+ 14
+ 24
+ 16
+
+
+ 80
+ 10
+ 12
+ 11
+
+
+
+
+ 80
+ 2
+ 9
+ 3
+
+
+ 80
+ 2
+ 7
+ 3
+
+
+ 179
+ 24
+ 29
+ 25
+
+
+
+
+ 76
+ 1
+ 4
+ 3
+
+
+ 76
+ 11
+ 12
+ 11
+
+
+
+
+ 186
+ 34
+ 35
+ 34
+
+
+ 74
+ 10
+ 12
+ 11
+
+
+ 134
+ 47
+ 50
+ 48
+
+
+ 186
+ 18
+ 22
+ 19
+
+
+ 186
+ 29
+ 30
+ 29
+
+
+ 186
+ 46
+ 49
+ 47
+
+
+
+
+ 77
+ 8
+ 29
+ 9
+
+
+ 77
+ 8
+ 10
+ 9
+
+
+
+
+ 76
+ 29
+ 35
+ 30
+
+
+ 76
+ 29
+ 31
+ 30
+
+
+ 76
+ 34
+ 35
+ 34
+
+
+
+
+ 87
+ 7
+ 12
+ 8
+
+
+ 87
+ 49
+ 52
+ 49
+
+
+
+
+ 87
+ 4
+ 12
+ 5
+
+
+ 186
+ 33
+ 34
+ 33
+
+
+ 188
+ 7
+ 8
+ 7
+
+
+ 190
+ 12
+ 13
+ 12
+
+
+ 192
+ 12
+ 13
+ 12
+
+
+ 219
+ 10
+ 11
+ 10
+
+
+
+
+ 83
+ 13
+ 19
+ 13
+
+
+ 83
+ 13
+ 14
+ 13
+
+
+ 83
+ 15
+ 16
+ 15
+
+
+ 83
+ 18
+ 19
+ 18
+
+
+
+
+ 84
+ 2
+ 3
+ 2
+
+
+ 84
+ 7
+ 8
+ 7
+
+
+ 84
+ 14
+ 15
+ 14
+
+
+ 85
+ 6
+ 7
+ 6
+
+
+ 85
+ 24
+ 25
+ 24
+
+
+ 86
+ 8
+ 9
+ 8
+
+
+ 87
+ 1
+ 2
+ 1
+
+
+ 87
+ 7
+ 8
+ 7
+
+
+ 87
+ 23
+ 24
+ 23
+
+
+ 87
+ 25
+ 26
+ 25
+
+
+ 87
+ 41
+ 42
+ 41
+
+
+ 88
+ 1
+ 2
+ 1
+
+
+ 89
+ 1
+ 2
+ 1
+
+
+ 90
+ 1
+ 2
+ 1
+
+
+ 90
+ 33
+ 34
+ 33
+
+
+ 91
+ 10
+ 11
+ 10
+
+
+ 91
+ 17
+ 18
+ 17
+
+
+ 91
+ 26
+ 27
+ 26
+
+
+ 92
+ 15
+ 16
+ 15
+
+
+
+
+ 83
+ 5
+ 11
+ 7
+
+
+ 86
+ 23
+ 24
+ 23
+
+
+
+
+ 85
+ 18
+ 26
+ 18
+
+
+ 86
+ 16
+ 17
+ 16
+
+
+
+
+ 92
+ 2
+ 8
+ 3
+
+
+ 92
+ 18
+ 19
+ 18
+
+
+ 134
+ 6
+ 7
+ 6
+
+
+ 199
+ 23
+ 25
+ 24
+
+
+ 201
+ 6
+ 8
+ 7
+
+
+
+
+ 95
+ 9
+ 13
+ 10
+
+
+ 87
+ 43
+ 45
+ 44
+
+
+ 95
+ 9
+ 11
+ 10
+
+
+ 95
+ 12
+ 13
+ 12
+
+
+
+
+ 90
+ 22
+ 30
+ 22
+
+
+ 163
+ 3
+ 7
+ 3
+
+
+ 235
+ 35
+ 39
+ 35
+
+
+
+
+ 100
+ 10
+ 20
+ 11
+
+
+ 101
+ 8
+ 9
+ 8
+
+
+
+
+ 97
+ 20
+ 21
+ 20
+
+
+ 98
+ 6
+ 7
+ 6
+
+
+ 100
+ 6
+ 7
+ 6
+
+
+ 100
+ 21
+ 22
+ 21
+
+
+
+
+ 99
+ 11
+ 14
+ 13
+
+
+ 99
+ 1
+ 10
+ 2
+
+
+ 105
+ 1
+ 4
+ 3
+
+
+ 105
+ 5
+ 13
+ 6
+
+
+ 106
+ 9
+ 10
+ 9
+
+
+
+
+ 96
+ 11
+ 12
+ 11
+
+
+ 98
+ 2
+ 3
+ 2
+
+
+
+
+ 97
+ 1
+ 16
+ 4
+
+
+ 97
+ 1
+ 5
+ 4
+
+
+ 97
+ 9
+ 11
+ 10
+
+
+ 97
+ 13
+ 16
+ 15
+
+
+
+
+ 110
+ 23
+ 24
+ 23
+
+
+ 193
+ 2
+ 3
+ 2
+
+
+
+
+ 110
+ 37
+ 38
+ 37
+
+
+ 110
+ 39
+ 40
+ 39
+
+
+ 198
+ 3
+ 4
+ 3
+
+
+
+
+ 109
+ 12
+ 14
+ 13
+
+
+ 110
+ 2
+ 4
+ 3
+
+
+ 110
+ 3
+ 4
+ 3
+
+
+
+
+ 113
+ 6
+ 8
+ 6
+
+
+ 109
+ 1
+ 2
+ 1
+
+
+ 110
+ 5
+ 6
+ 5
+
+
+ 112
+ 6
+ 7
+ 6
+
+
+ 113
+ 10
+ 11
+ 10
+
+
+ 114
+ 4
+ 11
+ 4
+
+
+ 114
+ 4
+ 8
+ 4
+
+
+ 114
+ 4
+ 5
+ 4
+
+
+ 114
+ 6
+ 7
+ 6
+
+
+
+
+ 108
+ 13
+ 33
+ 15
+
+
+ 113
+ 10
+ 12
+ 11
+
+
+
+
+ 108
+ 17
+ 33
+ 18
+
+
+ 108
+ 17
+ 19
+ 18
+
+
+
+
+ 236
+ 7
+ 8
+ 7
+
+
+ 104
+ 1
+ 15
+ 1
+
+
+ 126
+ 6
+ 7
+ 6
+
+
+ 204
+ 32
+ 34
+ 32
+
+
+ 223
+ 27
+ 28
+ 27
+
+
+
+
+ 117
+ 11
+ 27
+ 12
+
+
+ 117
+ 11
+ 13
+ 12
+
+
+ 117
+ 24
+ 25
+ 24
+
+
+ 118
+ 3
+ 4
+ 3
+
+
+
+
+ 115
+ 12
+ 21
+ 12
+
+
+ 116
+ 1
+ 2
+ 1
+
+
+ 117
+ 11
+ 12
+ 11
+
+
+
+
+ 114
+ 22
+ 25
+ 24
+
+
+ 127
+ 5
+ 6
+ 5
+
+
+
+
+ 113
+ 3
+ 8
+ 4
+
+
+ 113
+ 3
+ 5
+ 4
+
+
+
+
+ 198
+ 2
+ 5
+ 4
+
+
+ 110
+ 37
+ 39
+ 38
+
+
+
+
+ 123
+ 16
+ 17
+ 16
+
+
+ 216
+ 13
+ 14
+ 13
+
+
+
+
+ 123
+ 6
+ 9
+ 8
+
+
+ 124
+ 4
+ 5
+ 4
+
+
+ 124
+ 17
+ 18
+ 17
+
+
+
+
+ 124
+ 14
+ 15
+ 14
+
+
+ 126
+ 56
+ 57
+ 56
+
+
+
+
+ 126
+ 3
+ 8
+ 4
+
+
+ 126
+ 3
+ 5
+ 4
+
+
+
+
+ 126
+ 61
+ 67
+ 63
+
+
+ 178
+ 2
+ 4
+ 3
+
+
+
+
+ 205
+ 6
+ 8
+ 7
+
+
+ 126
+ 34
+ 55
+ 34
+
+
+ 126
+ 34
+ 39
+ 34
+
+
+
+
+ 121
+ 1
+ 9
+ 3
+
+
+ 122
+ 1
+ 2
+ 1
+
+
+
+
+ 126
+ 47
+ 55
+ 47
+
+
+ 121
+ 27
+ 28
+ 27
+
+
+ 126
+ 47
+ 48
+ 47
+
+
+
+
+ 120
+ 17
+ 22
+ 21
+
+
+ 121
+ 9
+ 11
+ 10
+
+
+
+
+ 120
+ 25
+ 31
+ 27
+
+
+ 120
+ 23
+ 31
+ 23
+
+
+ 125
+ 11
+ 14
+ 12
+
+
+ 126
+ 36
+ 39
+ 38
+
+
+ 126
+ 37
+ 39
+ 38
+
+
+
+
+ 126
+ 16
+ 18
+ 17
+
+
+ 120
+ 35
+ 37
+ 36
+
+
+
+
+ 134
+ 10
+ 12
+ 11
+
+
+ 134
+ 11
+ 12
+ 11
+
+
+
+
+ 134
+ 19
+ 38
+ 22
+
+
+ 134
+ 19
+ 23
+ 22
+
+
+
+
+ 134
+ 33
+ 34
+ 33
+
+
+ 134
+ 34
+ 35
+ 34
+
+
+
+
+ 134
+ 39
+ 40
+ 39
+
+
+ 135
+ 17
+ 18
+ 17
+
+
+ 136
+ 8
+ 9
+ 8
+
+
+
+
+ 136
+ 2
+ 5
+ 4
+
+
+ 137
+ 1
+ 2
+ 1
+
+
+ 137
+ 3
+ 6
+ 5
+
+
+ 153
+ 1
+ 3
+ 2
+
+
+
+
+ 138
+ 8
+ 15
+ 8
+
+
+ 190
+ 7
+ 8
+ 7
+
+
+
+
+ 170
+ 11
+ 13
+ 12
+
+
+ 127
+ 13
+ 14
+ 13
+
+
+ 138
+ 14
+ 15
+ 14
+
+
+ 164
+ 2
+ 3
+ 2
+
+
+ 164
+ 19
+ 20
+ 19
+
+
+ 164
+ 40
+ 41
+ 40
+
+
+ 165
+ 1
+ 2
+ 1
+
+
+ 165
+ 3
+ 5
+ 4
+
+
+ 165
+ 12
+ 13
+ 12
+
+
+ 181
+ 9
+ 10
+ 9
+
+
+ 183
+ 37
+ 38
+ 37
+
+
+
+
+ 128
+ 13
+ 14
+ 13
+
+
+ 131
+ 15
+ 16
+ 15
+
+
+ 161
+ 24
+ 25
+ 24
+
+
+ 186
+ 27
+ 28
+ 27
+
+
+
+
+ 207
+ 6
+ 8
+ 7
+
+
+ 128
+ 11
+ 14
+ 11
+
+
+ 128
+ 11
+ 12
+ 11
+
+
+ 131
+ 13
+ 16
+ 13
+
+
+ 131
+ 13
+ 14
+ 13
+
+
+ 161
+ 26
+ 27
+ 26
+
+
+ 186
+ 25
+ 26
+ 25
+
+
+ 207
+ 7
+ 8
+ 7
+
+
+
+
+ 130
+ 4
+ 7
+ 6
+
+
+ 142
+ 13
+ 16
+ 15
+
+
+
+
+ 131
+ 9
+ 10
+ 9
+
+
+ 181
+ 13
+ 14
+ 13
+
+
+
+
+ 131
+ 5
+ 7
+ 6
+
+
+ 142
+ 10
+ 12
+ 11
+
+
+ 170
+ 27
+ 29
+ 28
+
+
+
+
+ 186
+ 32
+ 50
+ 34
+
+
+ 132
+ 9
+ 12
+ 11
+
+
+ 186
+ 32
+ 35
+ 34
+
+
+ 186
+ 36
+ 50
+ 38
+
+
+ 187
+ 41
+ 44
+ 43
+
+
+ 188
+ 6
+ 9
+ 8
+
+
+ 190
+ 11
+ 14
+ 13
+
+
+ 192
+ 11
+ 14
+ 13
+
+
+ 204
+ 38
+ 41
+ 40
+
+
+
+
+ 149
+ 15
+ 16
+ 15
+
+
+ 235
+ 49
+ 50
+ 49
+
+
+
+
+ 148
+ 2
+ 5
+ 4
+
+
+ 148
+ 6
+ 11
+ 6
+
+
+ 148
+ 22
+ 23
+ 22
+
+
+ 149
+ 18
+ 20
+ 19
+
+
+ 157
+ 23
+ 25
+ 24
+
+
+ 193
+ 14
+ 16
+ 15
+
+
+ 208
+ 15
+ 17
+ 16
+
+
+ 236
+ 27
+ 29
+ 28
+
+
+
+
+ 140
+ 3
+ 5
+ 4
+
+
+ 224
+ 14
+ 16
+ 15
+
+
+ 225
+ 9
+ 11
+ 10
+
+
+ 234
+ 5
+ 7
+ 6
+
+
+
+
+ 141
+ 14
+ 18
+ 15
+
+
+ 142
+ 19
+ 23
+ 20
+
+
+
+
+ 141
+ 1
+ 6
+ 1
+
+
+ 140
+ 29
+ 30
+ 29
+
+
+ 141
+ 14
+ 15
+ 14
+
+
+ 142
+ 3
+ 4
+ 3
+
+
+ 142
+ 19
+ 20
+ 19
+
+
+ 142
+ 32
+ 33
+ 32
+
+
+ 142
+ 37
+ 38
+ 37
+
+
+ 144
+ 11
+ 12
+ 11
+
+
+ 146
+ 2
+ 3
+ 2
+
+
+ 146
+ 5
+ 6
+ 5
+
+
+ 149
+ 4
+ 5
+ 4
+
+
+ 149
+ 18
+ 19
+ 18
+
+
+ 150
+ 27
+ 28
+ 27
+
+
+ 153
+ 7
+ 8
+ 7
+
+
+ 155
+ 1
+ 2
+ 1
+
+
+ 156
+ 7
+ 8
+ 7
+
+
+ 157
+ 15
+ 16
+ 15
+
+
+ 159
+ 20
+ 21
+ 20
+
+
+ 162
+ 15
+ 16
+ 15
+
+
+ 163
+ 12
+ 13
+ 12
+
+
+
+
+ 161
+ 3
+ 15
+ 4
+
+
+ 162
+ 1
+ 2
+ 1
+
+
+
+
+ 158
+ 23
+ 30
+ 25
+
+
+ 158
+ 38
+ 40
+ 39
+
+
+
+
+ 163
+ 14
+ 18
+ 17
+
+
+ 173
+ 1
+ 3
+ 2
+
+
+
+
+ 162
+ 9
+ 38
+ 11
+
+
+ 162
+ 9
+ 12
+ 11
+
+
+
+
+ 152
+ 1
+ 7
+ 2
+
+
+ 179
+ 6
+ 12
+ 7
+
+
+ 183
+ 14
+ 20
+ 15
+
+
+ 191
+ 7
+ 13
+ 8
+
+
+
+
+ 151
+ 7
+ 9
+ 8
+
+
+ 151
+ 14
+ 15
+ 14
+
+
+
+
+ 152
+ 4
+ 7
+ 6
+
+
+ 155
+ 10
+ 13
+ 12
+
+
+ 179
+ 9
+ 12
+ 11
+
+
+ 183
+ 17
+ 20
+ 19
+
+
+ 185
+ 12
+ 15
+ 14
+
+
+ 191
+ 10
+ 13
+ 12
+
+
+
+
+ 150
+ 15
+ 18
+ 17
+
+
+ 197
+ 22
+ 25
+ 24
+
+
+
+
+ 157
+ 6
+ 20
+ 8
+
+
+ 157
+ 6
+ 9
+ 8
+
+
+
+
+ 157
+ 15
+ 20
+ 19
+
+
+ 171
+ 21
+ 24
+ 23
+
+
+
+
+ 174
+ 18
+ 21
+ 20
+
+
+ 187
+ 16
+ 18
+ 17
+
+
+
+
+ 174
+ 14
+ 28
+ 16
+
+
+ 174
+ 14
+ 21
+ 16
+
+
+
+
+ 171
+ 11
+ 12
+ 11
+
+
+ 171
+ 21
+ 22
+ 21
+
+
+ 171
+ 32
+ 33
+ 32
+
+
+ 172
+ 5
+ 6
+ 5
+
+
+ 172
+ 17
+ 18
+ 17
+
+
+
+
+ 168
+ 16
+ 18
+ 17
+
+
+ 168
+ 17
+ 18
+ 17
+
+
+
+
+ 164
+ 32
+ 41
+ 33
+
+
+ 164
+ 32
+ 34
+ 33
+
+
+ 164
+ 35
+ 36
+ 35
+
+
+ 164
+ 38
+ 41
+ 38
+
+
+
+
+ 167
+ 35
+ 55
+ 36
+
+
+ 164
+ 3
+ 4
+ 3
+
+
+ 167
+ 2
+ 3
+ 2
+
+
+ 167
+ 33
+ 34
+ 33
+
+
+
+
+ 183
+ 31
+ 41
+ 31
+
+
+ 183
+ 31
+ 32
+ 31
+
+
+
+
+ 184
+ 4
+ 8
+ 7
+
+
+ 185
+ 23
+ 26
+ 25
+
+
+
+
+ 180
+ 36
+ 37
+ 36
+
+
+ 182
+ 7
+ 8
+ 7
+
+
+ 182
+ 23
+ 24
+ 23
+
+
+ 184
+ 1
+ 2
+ 1
+
+
+ 185
+ 19
+ 20
+ 19
+
+
+ 185
+ 23
+ 24
+ 23
+
+
+ 186
+ 3
+ 4
+ 3
+
+
+ 187
+ 6
+ 7
+ 6
+
+
+ 187
+ 59
+ 60
+ 59
+
+
+
+
+ 175
+ 5
+ 13
+ 6
+
+
+ 177
+ 5
+ 7
+ 6
+
+
+
+
+ 220
+ 3
+ 4
+ 3
+
+
+ 176
+ 15
+ 20
+ 16
+
+
+
+
+ 221
+ 41
+ 46
+ 45
+
+
+ 196
+ 1
+ 12
+ 2
+
+
+ 196
+ 1
+ 3
+ 2
+
+
+ 196
+ 4
+ 11
+ 6
+
+
+ 196
+ 9
+ 11
+ 10
+
+
+ 198
+ 5
+ 6
+ 5
+
+
+ 199
+ 2
+ 4
+ 2
+
+
+ 200
+ 19
+ 20
+ 19
+
+
+ 202
+ 9
+ 10
+ 9
+
+
+ 223
+ 11
+ 12
+ 11
+
+
+ 224
+ 3
+ 5
+ 3
+
+
+ 239
+ 5
+ 7
+ 5
+
+
+ 240
+ 10
+ 11
+ 10
+
+
+
+
+ 194
+ 15
+ 20
+ 15
+
+
+ 194
+ 21
+ 22
+ 21
+
+
+
+
+ 235
+ 24
+ 27
+ 26
+
+
+ 193
+ 17
+ 22
+ 17
+
+
+
+
+ 194
+ 11
+ 22
+ 13
+
+
+ 195
+ 1
+ 2
+ 1
+
+
+
+
+ 189
+ 1
+ 3
+ 2
+
+
+ 190
+ 1
+ 2
+ 1
+
+
+
+
+ 188
+ 10
+ 29
+ 11
+
+
+ 188
+ 10
+ 13
+ 11
+
+
+ 188
+ 14
+ 19
+ 15
+
+
+ 188
+ 21
+ 29
+ 22
+
+
+
+
+ 187
+ 28
+ 31
+ 30
+
+
+ 198
+ 21
+ 22
+ 21
+
+
+ 241
+ 28
+ 29
+ 28
+
+
+
+
+ 206
+ 2
+ 8
+ 3
+
+
+ 206
+ 9
+ 10
+ 9
+
+
+
+
+ 204
+ 15
+ 51
+ 19
+
+
+ 204
+ 15
+ 20
+ 19
+
+
+ 204
+ 22
+ 34
+ 24
+
+
+
+
+ 199
+ 34
+ 38
+ 37
+
+
+ 229
+ 21
+ 23
+ 22
+
+
+
+
+ 203
+ 1
+ 6
+ 1
+
+
+ 200
+ 1
+ 2
+ 1
+
+
+ 203
+ 1
+ 2
+ 1
+
+
+
+
+ 200
+ 6
+ 8
+ 7
+
+
+ 234
+ 2
+ 4
+ 3
+
+
+
+
+ 200
+ 13
+ 14
+ 13
+
+
+ 201
+ 3
+ 4
+ 3
+
+
+ 203
+ 15
+ 16
+ 15
+
+
+ 203
+ 18
+ 19
+ 18
+
+
+
+
+ 199
+ 10
+ 38
+ 11
+
+
+ 199
+ 10
+ 16
+ 11
+
+
+ 199
+ 17
+ 38
+ 21
+
+
+
+
+ 197
+ 2
+ 3
+ 2
+
+
+ 198
+ 2
+ 3
+ 2
+
+
+
+
+ 197
+ 7
+ 25
+ 20
+
+
+ 197
+ 3
+ 6
+ 5
+
+
+ 202
+ 8
+ 11
+ 10
+
+
+
+
+
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/pom.xml b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/pom.xml
new file mode 100644
index 0000000..0a7d6e8
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/pom.xml
@@ -0,0 +1,82 @@
+
+ 4.0.0
+ edu.stanford.nlp
+ stanford-corenlp
+ 1.3.5
+ jar
+ Stanford CoreNLP
+ Stanford CoreNLP provides a set of natural language analysis tools which can take raw English language text input and give the base forms of words, their parts of speech, whether they are names of companies, people, etc., normalize dates, times, and numeric quantities, mark up the structure of sentences in terms of phrases and word dependencies, and indicate which noun phrases refer to the same entities. It provides the foundational building blocks for higher level text understanding applications.
+ http://nlp.stanford.edu/software/corenlp.shtml
+
+
+ GNU General Public License Version 2
+ http://www.gnu.org/licenses/gpl-2.0.txt
+
+
+
+ http://nlp.stanford.edu/software/stanford-corenlp-2013-04-04.tgz
+ http://nlp.stanford.edu/software/stanford-corenlp-2013-04-04.tgz
+
+
+
+ christopher.manning
+ Christopher Manning
+ manning@stanford.edu
+
+
+ john.bauer
+ John Bauer
+ horatio@gmail.com
+
+
+
+ 1.6
+ 1.6
+ UTF-8
+
+
+
+ xom
+ xom
+ 1.2.5
+
+
+ joda-time
+ joda-time
+ 2.1
+
+
+ de.jollyday
+ jollyday
+ 0.4.7
+
+
+
+ src
+
+
+ org.codehaus.mojo
+ build-helper-maven-plugin
+ 1.7
+
+
+ attach-models
+ package
+
+ attach-artifact
+
+
+
+
+ ${project.basedir}/stanford-corenlp-1.3.5-models.jar
+ jar
+ models
+
+
+
+
+
+
+
+
+
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/META-INF/MANIFEST.MF b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..0a188a0
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0
+Implementation-Version: 1.3.5
+Created-By: Stanford JavaNLP (horatio)
+Main-class: edu.stanford.nlp.pipeline.StanfordCoreNLP
+Built-Date: 2013-04-04
+
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/AbstractLinearClassifierFactory.java b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/AbstractLinearClassifierFactory.java
new file mode 100644
index 0000000..dd00e2f
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/AbstractLinearClassifierFactory.java
@@ -0,0 +1,91 @@
+package edu.stanford.nlp.classify;
+
+import edu.stanford.nlp.ling.Datum;
+import edu.stanford.nlp.ling.RVFDatum;
+import edu.stanford.nlp.util.Index;
+import edu.stanford.nlp.util.HashIndex;
+
+import java.lang.ref.Reference;
+import java.util.Collection;
+import java.util.List;
+
+/**
+ * Shared methods for training a {@link LinearClassifier}.
+ * Inheriting classes need to implement the
+ * trainWeights
method.
+ *
+ * @author Dan Klein
+ *
+ * @author Sarah Spikes (sdspikes@cs.stanford.edu) (Templatization)
+ *
+ * @param The type of the labels in the Dataset and Datum
+ * @param The type of the features in the Dataset and Datum
+ */
+
+public abstract class AbstractLinearClassifierFactory implements ClassifierFactory> {
+
+ private static final long serialVersionUID = 1L;
+
+ Index labelIndex = new HashIndex();
+ Index featureIndex = new HashIndex();
+
+ public AbstractLinearClassifierFactory() {
+ }
+
+ int numFeatures() {
+ return featureIndex.size();
+ }
+
+ int numClasses() {
+ return labelIndex.size();
+ }
+
+ public Classifier trainClassifier(List> examples) {
+ Dataset dataset = new Dataset();
+ dataset.addAll(examples);
+ return trainClassifier(dataset);
+ }
+
+ protected abstract double[][] trainWeights(GeneralDataset dataset) ;
+
+ /**
+ * Takes a {@link Collection} of {@link Datum} objects and gives you back a
+ * {@link Classifier} trained on it.
+ *
+ * @param examples {@link Collection} of {@link Datum} objects to train the
+ * classifier on
+ * @return A {@link Classifier} trained on it.
+ */
+ public LinearClassifier trainClassifier(Collection> examples) {
+ Dataset dataset = new Dataset();
+ dataset.addAll(examples);
+ return trainClassifier(dataset);
+ }
+
+ /**
+ * Takes a {@link Reference} to a {@link Collection} of {@link Datum}
+ * objects and gives you back a {@link Classifier} trained on them
+ *
+ * @param ref {@link Reference} to a {@link Collection} of {@link
+ * Datum} objects to train the classifier on
+ * @return A Classifier trained on a collection of Datum
+ */
+ public LinearClassifier trainClassifier(Reference extends Collection>> ref) {
+ Collection> examples = ref.get();
+ return trainClassifier(examples);
+ }
+
+
+ /**
+ * Trains a {@link Classifier} on a {@link Dataset}.
+ *
+ * @return A {@link Classifier} trained on the data.
+ */
+ public LinearClassifier trainClassifier(GeneralDataset data) {
+ labelIndex = data.labelIndex();
+ featureIndex = data.featureIndex();
+ double[][] weights = trainWeights(data);
+ return new LinearClassifier(weights, featureIndex, labelIndex);
+ }
+
+}
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/AdaptedGaussianPriorObjectiveFunction.java b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/AdaptedGaussianPriorObjectiveFunction.java
new file mode 100644
index 0000000..16521e1
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/AdaptedGaussianPriorObjectiveFunction.java
@@ -0,0 +1,118 @@
+package edu.stanford.nlp.classify;
+
+import edu.stanford.nlp.math.ArrayMath;
+import java.util.Arrays;
+
+
+/**
+ * Adapt the mean of the Gaussian Prior by shifting the mean to the previously trained weights
+ * @author Pi-Chuan Chang
+ * @author Sarah Spikes (sdspikes@cs.stanford.edu) (Templatization)
+ *
+ * @param The type of the labels in the Dataset (one can be passed in to the constructor)
+ * @param The type of the features in the Dataset
+ */
+
+public class AdaptedGaussianPriorObjectiveFunction extends LogConditionalObjectiveFunction {
+
+ double[] weights;
+
+ /**
+ * Calculate the conditional likelihood.
+ */
+ @Override
+ protected void calculate(double[] x) {
+ if (useSummedConditionalLikelihood) {
+ calculateSCL(x);
+ } else {
+ calculateCL(x);
+ }
+ }
+
+
+ /**
+ */
+ private void calculateSCL(double[] x) {
+ throw new UnsupportedOperationException();
+ }
+
+ /**
+ */
+ private void calculateCL(double[] x) {
+ value = 0.0;
+ if (derivativeNumerator == null) {
+ derivativeNumerator = new double[x.length];
+ for (int d = 0; d < data.length; d++) {
+ int[] features = data[d];
+ for (int f = 0; f < features.length; f++) {
+ int i = indexOf(features[f], labels[d]);
+ if (dataweights == null) {
+ derivativeNumerator[i] -= 1;
+ } else {
+ derivativeNumerator[i] -= dataweights[d];
+ }
+ }
+ }
+ }
+ copy(derivative, derivativeNumerator);
+
+ double[] sums = new double[numClasses];
+ double[] probs = new double[numClasses];
+
+ for (int d = 0; d < data.length; d++) {
+ int[] features = data[d];
+ // activation
+ Arrays.fill(sums, 0.0);
+
+ for (int c = 0; c < numClasses; c++) {
+ for (int f = 0; f < features.length; f++) {
+ int i = indexOf(features[f], c);
+ sums[c] += x[i];
+ }
+ }
+ double total = ArrayMath.logSum(sums);
+ for (int c = 0; c < numClasses; c++) {
+ probs[c] = Math.exp(sums[c] - total);
+ if (dataweights != null) {
+ probs[c] *= dataweights[d];
+ }
+ for (int f = 0; f < features.length; f++) {
+ int i = indexOf(features[f], c);
+ derivative[i] += probs[c];
+ }
+ }
+
+ double dV = sums[labels[d]] - total;
+ if (dataweights != null) {
+ dV *= dataweights[d];
+ }
+ value -= dV;
+ }
+ //System.err.println("x length="+x.length);
+ //System.err.println("weights length="+weights.length);
+ double[] newX = ArrayMath.pairwiseSubtract(x, weights);
+ value += prior.compute(newX, derivative);
+ }
+
+ /**
+ */
+ @Override
+ protected void rvfcalculate(double[] x) {
+ throw new UnsupportedOperationException();
+ }
+
+ public AdaptedGaussianPriorObjectiveFunction(GeneralDataset dataset, LogPrior prior, double weights[][]) {
+ super(dataset, prior);
+ this.weights = to1D(weights);
+ }
+
+ public double[] to1D(double[][] x2) {
+ double[] x = new double[numFeatures*numClasses];
+ for (int i = 0; i < numFeatures; i++) {
+ for (int j = 0; j < numClasses; j++) {
+ x[indexOf(i, j)] = x2[i][j];
+ }
+ }
+ return x;
+ }
+}
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/BiasedLogConditionalObjectiveFunction.java b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/BiasedLogConditionalObjectiveFunction.java
new file mode 100644
index 0000000..5378d14
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/BiasedLogConditionalObjectiveFunction.java
@@ -0,0 +1,137 @@
+package edu.stanford.nlp.classify;
+
+import edu.stanford.nlp.math.ArrayMath;
+import edu.stanford.nlp.optimization.AbstractCachingDiffFunction;
+
+import java.util.Arrays;
+
+
+/**
+ * Maximizes the conditional likelihood with a given prior.
+ *
+ * @author Jenny Finkel
+ */
+
+public class BiasedLogConditionalObjectiveFunction extends AbstractCachingDiffFunction {
+
+ public void setPrior(LogPrior prior) {
+ this.prior = prior;
+ }
+
+ protected LogPrior prior;
+
+ protected int numFeatures = 0;
+ protected int numClasses = 0;
+
+ protected int[][] data = null;
+ protected int[] labels = null;
+
+ private double[][] confusionMatrix;
+
+ @Override
+ public int domainDimension() {
+ return numFeatures * numClasses;
+ }
+
+ int classOf(int index) {
+ return index % numClasses;
+ }
+
+ int featureOf(int index) {
+ return index / numClasses;
+ }
+
+ protected int indexOf(int f, int c) {
+ return f * numClasses + c;
+ }
+
+ public double[][] to2D(double[] x) {
+ double[][] x2 = new double[numFeatures][numClasses];
+ for (int i = 0; i < numFeatures; i++) {
+ for (int j = 0; j < numClasses; j++) {
+ x2[i][j] = x[indexOf(i, j)];
+ }
+ }
+ return x2;
+ }
+
+ @Override
+ protected void calculate(double[] x) {
+
+ if (derivative == null) {
+ derivative = new double[x.length];
+ } else {
+ Arrays.fill(derivative, 0.0);
+ }
+
+ value = 0.0;
+
+ double[] sums = new double[numClasses];
+ double[] probs = new double[numClasses];
+ double[] weightedProbs = new double[numClasses];
+
+ for (int d = 0; d < data.length; d++) {
+ int[] features = data[d];
+ int observedLabel = labels[d];
+ // activation
+ Arrays.fill(sums, 0.0);
+
+ for (int c = 0; c < numClasses; c++) {
+ for (int f = 0; f < features.length; f++) {
+ int i = indexOf(features[f], c);
+ sums[c] += x[i];
+ }
+ }
+
+ double total = ArrayMath.logSum(sums);
+
+ double[] weightedSums = new double[numClasses];
+ for (int trueLabel = 0; trueLabel < numClasses; trueLabel++) {
+ weightedSums[trueLabel] = Math.log(confusionMatrix[observedLabel][trueLabel]) + sums[trueLabel];
+ }
+
+ double weightedTotal = ArrayMath.logSum(weightedSums);
+
+ for (int c = 0; c < numClasses; c++) {
+ probs[c] = Math.exp(sums[c] - total);
+ weightedProbs[c] = Math.exp(weightedSums[c] - weightedTotal);
+ for (int f = 0; f < features.length; f++) {
+ int i = indexOf(features[f], c);
+ derivative[i] += probs[c] - weightedProbs[c];
+ }
+ }
+
+ double tmpValue = 0.0;
+ for (int c = 0; c < numClasses; c++) {
+ tmpValue += confusionMatrix[observedLabel][c] * Math.exp(sums[c] - total);
+ }
+ value -= Math.log(tmpValue);
+ }
+
+ value += prior.compute(x, derivative);
+
+ }
+
+
+
+ public BiasedLogConditionalObjectiveFunction(GeneralDataset, ?> dataset, double[][] confusionMatrix) {
+ this(dataset, confusionMatrix, new LogPrior(LogPrior.LogPriorType.QUADRATIC));
+ }
+
+ public BiasedLogConditionalObjectiveFunction(GeneralDataset, ?> dataset, double[][] confusionMatrix, LogPrior prior) {
+ this(dataset.numFeatures(), dataset.numClasses(), dataset.getDataArray(), dataset.getLabelsArray(), confusionMatrix, prior);
+ }
+
+ public BiasedLogConditionalObjectiveFunction(int numFeatures, int numClasses, int[][] data, int[] labels, double[][] confusionMatrix) {
+ this(numFeatures, numClasses, data, labels, confusionMatrix, new LogPrior(LogPrior.LogPriorType.QUADRATIC));
+ }
+
+ public BiasedLogConditionalObjectiveFunction(int numFeatures, int numClasses, int[][] data, int[] labels, double[][] confusionMatrix, LogPrior prior) {
+ this.numFeatures = numFeatures;
+ this.numClasses = numClasses;
+ this.data = data;
+ this.labels = labels;
+ this.prior = prior;
+ this.confusionMatrix = confusionMatrix;
+ }
+}
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/BiasedLogisticObjectiveFunction.java b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/BiasedLogisticObjectiveFunction.java
new file mode 100644
index 0000000..6ef7fc5
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/BiasedLogisticObjectiveFunction.java
@@ -0,0 +1,147 @@
+package edu.stanford.nlp.classify;
+
+import edu.stanford.nlp.optimization.AbstractCachingDiffFunction;
+
+import java.util.Arrays;
+
+
+/**
+ * @author jrfinkel
+ */
+public class BiasedLogisticObjectiveFunction extends AbstractCachingDiffFunction {
+
+ private final int numFeatures;
+ private final int[][] data;
+ private final double[][] dataValues;
+ private final int[] labels;
+ protected float[] dataweights = null;
+ private final LogPrior prior;
+ double probCorrect = 0.7;
+
+ @Override
+ public int domainDimension() {
+ return numFeatures;
+ }
+
+ @Override
+ protected void calculate(double[] x) {
+
+ if (dataValues != null) {
+ throw new RuntimeException();
+ }
+
+ value = 0.0;
+ Arrays.fill(derivative, 0.0);
+
+ for (int d = 0; d < data.length; d++) {
+ int[] features = data[d];
+ double sum = 0;
+
+ for (int f = 0; f < features.length; f++) {
+ sum += x[features[f]];
+ }
+
+ double expSum, derivativeIncrement;
+
+ if (dataweights != null) {
+ throw new RuntimeException();
+ }
+
+ if (labels[d] == 1) {
+ expSum = Math.exp(-sum);
+ double g = (1 / (1 + expSum));
+ value -= Math.log(g);
+ derivativeIncrement = (g-1);
+ } else {
+// expSum = Math.exp(-sum);
+// double g = (1 / (1 + expSum));
+// value -= Math.log(1-g);
+// derivativeIncrement = (g);
+// }
+ expSum = Math.exp(-sum);
+ double g = (1 / (1 + expSum));
+ double e = (1-probCorrect) * g + (probCorrect)*(1 - g);
+ value -= Math.log(e);
+ derivativeIncrement = -(g*(1-g)*(1-2*probCorrect)) / (e);
+ }
+
+ for (int f = 0; f < features.length; f++) {
+ derivative[features[f]] += derivativeIncrement;
+ }
+ }
+
+ value += prior.compute(x, derivative);
+ }
+
+ protected void calculateRVF(double[] x) {
+
+ value = 0.0;
+ Arrays.fill(derivative, 0.0);
+
+ for (int d = 0; d < data.length; d++) {
+ int[] features = data[d];
+ double[] values = dataValues[d];
+ double sum = 0;
+
+ for (int f = 0; f < features.length; f++) {
+ sum += x[features[f]]*values[features[f]];
+ }
+
+ double expSum, derivativeIncrement;
+
+ if (labels[d] == 0) {
+ expSum = Math.exp(sum);
+ derivativeIncrement = 1.0 / (1.0 + (1.0 / expSum));
+ } else {
+ expSum = Math.exp(-sum);
+ derivativeIncrement = -1.0 / (1.0 + (1.0 / expSum));
+ }
+
+ if (dataweights == null) {
+ value += Math.log(1.0 + expSum);
+ } else {
+ value += Math.log(1.0 + expSum) * dataweights[d];
+ derivativeIncrement *= dataweights[d];
+ }
+
+ for (int f = 0; f < features.length; f++) {
+ derivative[features[f]] += values[features[f]]*derivativeIncrement;
+ }
+ }
+
+ value += prior.compute(x, derivative);
+ }
+
+
+ public BiasedLogisticObjectiveFunction(int numFeatures, int[][] data, int[] labels) {
+ this(numFeatures, data, labels, new LogPrior(LogPrior.LogPriorType.QUADRATIC));
+ }
+
+ public BiasedLogisticObjectiveFunction(int numFeatures, int[][] data, int[] labels, LogPrior prior) {
+ this(numFeatures, data, labels, prior, null);
+ }
+
+ public BiasedLogisticObjectiveFunction(int numFeatures, int[][] data, int[] labels, float[] dataweights) {
+ this(numFeatures, data, labels, new LogPrior(LogPrior.LogPriorType.QUADRATIC), dataweights);
+ }
+ public BiasedLogisticObjectiveFunction(int numFeatures, int[][] data, int[] labels, LogPrior prior, float[] dataweights) {
+ this(numFeatures, data, null, labels, prior, dataweights);
+ }
+
+ public BiasedLogisticObjectiveFunction(int numFeatures, int[][] data, double[][] values, int[] labels) {
+ this(numFeatures, data, values, labels, new LogPrior(LogPrior.LogPriorType.QUADRATIC));
+ }
+
+ public BiasedLogisticObjectiveFunction(int numFeatures, int[][] data, double[][] values, int[] labels, LogPrior prior) {
+ this(numFeatures, data, values, labels, prior, null);
+ }
+
+ public BiasedLogisticObjectiveFunction(int numFeatures, int[][] data, double[][] values, int[] labels, LogPrior prior, float[] dataweights) {
+ this.numFeatures = numFeatures;
+ this.data = data;
+ this.labels = labels;
+ this.prior = prior;
+ this.dataweights = dataweights;
+ this.dataValues = values;
+ }
+}
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/Classifier.java b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/Classifier.java
new file mode 100644
index 0000000..4998323
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/Classifier.java
@@ -0,0 +1,28 @@
+package edu.stanford.nlp.classify;
+
+import edu.stanford.nlp.ling.Datum;
+import edu.stanford.nlp.stats.Counter;
+
+import java.io.Serializable;
+import java.util.Collection;
+
+/**
+ * A simple interface for classifying and scoring data points, implemented
+ * by most of the classifiers in this package. A basic Classifier
+ * works over a List of categorical features. For classifiers over
+ * real-valued features, see {@link RVFClassifier}.
+ *
+ * @author Dan Klein
+ * @author Sarah Spikes (sdspikes@cs.stanford.edu) (Templatization)
+ *
+ * @param The type of the label(s) in each Datum
+ * @param The type of the features in each Datum
+ */
+
+public interface Classifier extends Serializable {
+ public L classOf(Datum example);
+
+ public Counter scoresOf(Datum example);
+
+ public Collection labels();
+}
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/ClassifierCreator.java b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/ClassifierCreator.java
new file mode 100644
index 0000000..d58905b
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/ClassifierCreator.java
@@ -0,0 +1,10 @@
+package edu.stanford.nlp.classify;
+
+/**
+ * Creates a classifier with given weights
+ *
+ * @author Angel Chang
+ */
+public interface ClassifierCreator {
+ public Classifier createClassifier(double[] weights);
+}
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/ClassifierFactory.java b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/ClassifierFactory.java
new file mode 100644
index 0000000..4d4cb38
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/ClassifierFactory.java
@@ -0,0 +1,24 @@
+package edu.stanford.nlp.classify;
+
+import java.io.Serializable;
+import java.util.List;
+
+import edu.stanford.nlp.ling.RVFDatum;
+
+/**
+ * A simple interface for training a Classifier from a Dataset of training
+ * examples.
+ *
+ * @author Dan Klein
+ *
+ * Templatized by Sarah Spikes (sdspikes@cs.stanford.edu)
+ */
+
+public interface ClassifierFactory> extends Serializable {
+
+ @Deprecated //ClassifierFactory should implement trainClassifier(GeneralDataset) instead.
+ public C trainClassifier(List> examples);
+
+ public C trainClassifier(GeneralDataset dataset);
+
+}
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/CrossValidator.java b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/CrossValidator.java
new file mode 100644
index 0000000..110d98a
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/CrossValidator.java
@@ -0,0 +1,94 @@
+package edu.stanford.nlp.classify;
+
+import edu.stanford.nlp.util.Pair;
+import edu.stanford.nlp.util.Triple;
+import edu.stanford.nlp.util.Function;
+
+import java.util.Iterator;
+
+/**
+ * This class is meant to simplify performing cross validation of
+ * classifiers for hyper-parameters. It has the ability to save
+ * state for each fold (for instance, the weights for a MaxEnt
+ * classifier, and the alphas for an SVM).
+ *
+ * @author Aria Haghighi
+ * @author Jenny Finkel
+ * @author Sarah Spikes (Templatization)
+ */
+public class CrossValidator {
+ private final GeneralDataset originalTrainData;
+ private final int kFold;
+ private final SavedState[] savedStates;
+
+ public CrossValidator(GeneralDataset trainData) {
+ this(trainData, 10);
+ }
+
+ public CrossValidator(GeneralDataset trainData, int kFold) {
+ originalTrainData = trainData;
+ this.kFold = kFold;
+ savedStates = new SavedState[kFold];
+ for (int i = 0; i < savedStates.length; i++) {
+ savedStates[i] = new SavedState();
+ }
+ }
+
+ /**
+ * Returns an Iterator over train/test/saved states.
+ *
+ * @return An Iterator over train/test/saved states
+ */
+ private Iterator,GeneralDataset,SavedState>> iterator() { return new CrossValidationIterator(); }
+
+ /**
+ * This computes the average over all folds of the function we're trying to optimize.
+ * The input triple contains, in order, the train set, the test set, and the saved state.
+ * You don't have to use the saved state if you don't want to.
+ */
+ public double computeAverage (Function,GeneralDataset,SavedState>,Double> function)
+ {
+ double sum = 0;
+ Iterator,GeneralDataset,SavedState>> foldIt = iterator();
+ while (foldIt.hasNext()) {
+ sum += function.apply(foldIt.next());
+ }
+ return sum / kFold;
+ }
+
+ class CrossValidationIterator implements Iterator,GeneralDataset,SavedState>>
+ {
+ int iter = 0;
+ public boolean hasNext() { return iter < kFold; }
+
+ public void remove()
+ {
+ throw new RuntimeException("CrossValidationIterator doesn't support remove()");
+ }
+
+ public Triple,GeneralDataset,SavedState> next()
+ {
+ if (iter == kFold) return null;
+ int start = originalTrainData.size() * iter / kFold;
+ int end = originalTrainData.size() * (iter + 1) / kFold;
+ //System.err.println("##train data size: " + originalTrainData.size() + " start " + start + " end " + end);
+ Pair, GeneralDataset> split = originalTrainData.split(start, end);
+
+ return new Triple,GeneralDataset,SavedState>(split.first(),split.second(),savedStates[iter++]);
+ }
+ }
+
+ public static class SavedState {
+ public Object state;
+ }
+
+ public static void main(String[] args) {
+ Dataset d = Dataset.readSVMLightFormat(args[0]);
+ Iterator,GeneralDataset,SavedState>> it = (new CrossValidator(d)).iterator();
+ while (it.hasNext())
+ {
+ it.next();
+ break;
+ }
+ }
+}
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/Dataset.java b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/Dataset.java
new file mode 100644
index 0000000..3786a54
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/Dataset.java
@@ -0,0 +1,758 @@
+package edu.stanford.nlp.classify;
+
+import java.io.PrintWriter;
+import java.io.StringWriter;
+import java.io.File;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Random;
+import java.util.Set;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+
+import edu.stanford.nlp.ling.BasicDatum;
+import edu.stanford.nlp.ling.Datum;
+import edu.stanford.nlp.ling.RVFDatum;
+import edu.stanford.nlp.stats.ClassicCounter;
+import edu.stanford.nlp.stats.Counter;
+import edu.stanford.nlp.stats.TwoDimensionalCounter;
+import edu.stanford.nlp.objectbank.ObjectBank;
+import edu.stanford.nlp.util.Generics;
+import edu.stanford.nlp.util.Index;
+import edu.stanford.nlp.util.HashIndex;
+import edu.stanford.nlp.util.Pair;
+import edu.stanford.nlp.util.ScoredComparator;
+import edu.stanford.nlp.util.ScoredObject;
+
+
+/**
+ * An interfacing class for {@link ClassifierFactory} that incrementally
+ * builds a more memory-efficient representation of a {@link List} of
+ * {@link Datum} objects for the purposes of training a {@link Classifier}
+ * with a {@link ClassifierFactory}.
+ *
+ * @author Roger Levy (rog@stanford.edu)
+ * @author Anna Rafferty (various refactoring with GeneralDataset/RVFDataset)
+ * @author Sarah Spikes (sdspikes@cs.stanford.edu) (templatization)
+ * @author nmramesh@cs.stanford.edu {@link #getL1NormalizedTFIDFDatum(Datum, Counter) and #getL1NormalizedTFIDFDataset()}
+ *
+ * @param Label type
+ * @param Feature type
+ */
+public class Dataset extends GeneralDataset {
+
+ private static final long serialVersionUID = -3883164942879961091L;
+
+ public Dataset() {
+ this(10);
+ }
+
+ public Dataset(int numDatums) {
+ initialize(numDatums);
+ }
+
+ public Dataset(int numDatums, Index featureIndex, Index labelIndex) {
+ initialize(numDatums);
+ this.featureIndex = featureIndex;
+ this.labelIndex = labelIndex;
+ }
+
+ public Dataset(Index featureIndex, Index labelIndex) {
+ this(10, featureIndex, labelIndex);
+ }
+
+
+ /**
+ * Constructor that fully specifies a Dataset. Needed this for MulticlassDataset.
+ */
+ public Dataset(Index labelIndex, int[] labels, Index featureIndex, int[][] data) {
+ this (labelIndex, labels, featureIndex, data, data.length);
+ }
+
+ /**
+ * Constructor that fully specifies a Dataset. Needed this for MulticlassDataset.
+ */
+ public Dataset(Index labelIndex, int[] labels, Index featureIndex, int[][] data, int size) {
+ this.labelIndex = labelIndex;
+ this.labels = labels;
+ this.featureIndex = featureIndex;
+ this.data = data;
+ this.size = size;
+ }
+
+ @Override
+ public Pair, GeneralDataset> split(double percentDev) {
+ int devSize = (int)(percentDev * size());
+ int trainSize = size() - devSize;
+
+ int[][] devData = new int[devSize][];
+ int[] devLabels = new int[devSize];
+
+ int[][] trainData = new int[trainSize][];
+ int[] trainLabels = new int[trainSize];
+
+ System.arraycopy(data, 0, devData, 0, devSize);
+ System.arraycopy(labels, 0, devLabels, 0, devSize);
+
+ System.arraycopy(data, devSize, trainData, 0, trainSize);
+ System.arraycopy(labels, devSize, trainLabels, 0, trainSize);
+
+ if (this instanceof WeightedDataset,?>) {
+ float[] trainWeights = new float[trainSize];
+ float[] devWeights = new float[devSize];
+
+ WeightedDataset w = (WeightedDataset)this;
+
+ System.arraycopy(w.weights, 0, devWeights, 0, devSize);
+ System.arraycopy(w.weights, devSize, trainWeights, 0, trainSize);
+
+ WeightedDataset dev = new WeightedDataset(labelIndex, devLabels, featureIndex, devData, devSize, devWeights);
+ WeightedDataset train = new WeightedDataset(labelIndex, trainLabels, featureIndex, trainData, trainSize, trainWeights);
+
+ return new Pair,GeneralDataset>(train, dev);
+ }
+ Dataset dev = new Dataset(labelIndex, devLabels, featureIndex, devData, devSize);
+ Dataset train = new Dataset(labelIndex, trainLabels, featureIndex, trainData, trainSize);
+
+ return new Pair,GeneralDataset>(train, dev);
+ }
+
+ @Override
+ public Pair,GeneralDataset> split(int start, int end) {
+ int devSize = end - start;
+ int trainSize = size() - devSize;
+
+ int[][] devData = new int[devSize][];
+ int[] devLabels = new int[devSize];
+
+ int[][] trainData = new int[trainSize][];
+ int[] trainLabels = new int[trainSize];
+
+ System.arraycopy(data, start, devData, 0, devSize);
+ System.arraycopy(labels, start, devLabels, 0, devSize);
+
+ System.arraycopy(data, 0, trainData, 0, start);
+ System.arraycopy(data, end, trainData, start, size()-end);
+ System.arraycopy(labels, 0, trainLabels, 0, start);
+ System.arraycopy(labels, end, trainLabels, start, size()-end);
+
+ if (this instanceof WeightedDataset,?>) {
+ float[] trainWeights = new float[trainSize];
+ float[] devWeights = new float[devSize];
+
+ WeightedDataset w = (WeightedDataset)this;
+
+ System.arraycopy(w.weights, start, devWeights, 0, devSize);
+ System.arraycopy(w.weights, 0, trainWeights, 0, start);
+ System.arraycopy(w.weights, end, trainWeights, start, size()-end);
+
+ WeightedDataset dev = new WeightedDataset(labelIndex, devLabels, featureIndex, devData, devSize, devWeights);
+ WeightedDataset train = new WeightedDataset(labelIndex, trainLabels, featureIndex, trainData, trainSize, trainWeights);
+
+ return new Pair,GeneralDataset>(train, dev);
+ }
+ Dataset dev = new Dataset(labelIndex, devLabels, featureIndex, devData, devSize);
+ Dataset train = new Dataset(labelIndex, trainLabels, featureIndex, trainData, trainSize);
+
+ return new Pair,GeneralDataset>(train, dev);
+ }
+
+
+ public Dataset getRandomSubDataset(double p, int seed) {
+ int newSize = (int)(p * size());
+ Set indicesToKeep = Generics.newHashSet();
+ Random r = new Random(seed);
+ int s = size();
+ while (indicesToKeep.size() < newSize) {
+ indicesToKeep.add(r.nextInt(s));
+ }
+
+ int[][] newData = new int[newSize][];
+ int[] newLabels = new int[newSize];
+
+ int i = 0;
+ for (int j : indicesToKeep) {
+ newData[i] = data[j];
+ newLabels[i] = labels[j];
+ i++;
+ }
+
+ return new Dataset(labelIndex, newLabels, featureIndex, newData);
+ }
+
+ @Override
+ public double[][] getValuesArray() {
+ return null;
+ }
+
+ /**
+ * Constructs a Dataset by reading in a file in SVM light format.
+ */
+ public static Dataset readSVMLightFormat(String filename) {
+ return readSVMLightFormat(filename, new HashIndex(), new HashIndex());
+ }
+
+ /**
+ * Constructs a Dataset by reading in a file in SVM light format.
+ * The lines parameter is filled with the lines of the file for further processing
+ * (if lines is null, it is assumed no line information is desired)
+ */
+ public static Dataset readSVMLightFormat(String filename, List lines) {
+ return readSVMLightFormat(filename, new HashIndex(), new HashIndex(), lines);
+ }
+
+ /**
+ * Constructs a Dataset by reading in a file in SVM light format.
+ * the created dataset has the same feature and label index as given
+ */
+ public static Dataset readSVMLightFormat(String filename, Index featureIndex, Index labelIndex) {
+ return readSVMLightFormat(filename, featureIndex, labelIndex, null);
+ }
+ /**
+ * Constructs a Dataset by reading in a file in SVM light format.
+ * the created dataset has the same feature and label index as given
+ */
+ public static Dataset readSVMLightFormat(String filename, Index featureIndex, Index labelIndex, List lines) {
+ Dataset dataset;
+ try {
+ dataset = new Dataset(10, featureIndex, labelIndex);
+ for (String line : ObjectBank.getLineIterator(new File(filename))) {
+ if(lines != null)
+ lines.add(line);
+ dataset.add(svmLightLineToDatum(line));
+ }
+
+ } catch (Exception e) {
+ throw new RuntimeException(e);
+ }
+ return dataset;
+ }
+
+ private static int line1 = 0;
+
+ public static Datum svmLightLineToDatum(String l) {
+ line1++;
+ l = l.replaceAll("#.*", ""); // remove any trailing comments
+ String[] line = l.split("\\s+");
+ Collection features = new ArrayList();
+ for (int i = 1; i < line.length; i++) {
+ String[] f = line[i].split(":");
+ if (f.length != 2) {
+ System.err.println("Dataset error: line " + line1);
+ }
+ int val = (int) Double.parseDouble(f[1]);
+ for (int j = 0; j < val; j++) {
+ features.add(f[0]);
+ }
+ }
+ features.add(String.valueOf(Integer.MAX_VALUE)); // a constant feature for a class
+ Datum d = new BasicDatum(features, line[0]);
+ return d;
+ }
+
+ /**
+ * Get Number of datums a given feature appears in.
+ */
+ public Counter getFeatureCounter()
+ {
+ Counter featureCounts = new ClassicCounter();
+ for (int i=0; i < this.size(); i++)
+ {
+ BasicDatum datum = (BasicDatum) getDatum(i);
+ Set featureSet = Generics.newHashSet(datum.asFeatures());
+ for (F key : featureSet) {
+ featureCounts.incrementCount(key, 1.0);
+ }
+ }
+ return featureCounts;
+ }
+
+ /**
+ * Method to convert features from counts to L1-normalized TFIDF based features
+ * @param datum with a collection of features.
+ * @param featureDocCounts a counter of doc-count for each feature.
+ * @return RVFDatum with l1-normalized tf-idf features.
+ */
+ public RVFDatum getL1NormalizedTFIDFDatum(Datum datum,Counter featureDocCounts){
+ Counter tfidfFeatures = new ClassicCounter();
+ for(F feature : datum.asFeatures()){
+ if(featureDocCounts.containsKey(feature))
+ tfidfFeatures.incrementCount(feature,1.0);
+ }
+ double l1norm = 0;
+ for(F feature: tfidfFeatures.keySet()){
+ double idf = Math.log(((double)(this.size()+1))/(featureDocCounts.getCount(feature)+0.5));
+ double tf = tfidfFeatures.getCount(feature);
+ tfidfFeatures.setCount(feature, tf*idf);
+ l1norm += tf*idf;
+ }
+ for(F feature: tfidfFeatures.keySet()){
+ double tfidf = tfidfFeatures.getCount(feature);
+ tfidfFeatures.setCount(feature, tfidf/l1norm);
+ }
+ RVFDatum rvfDatum = new RVFDatum(tfidfFeatures,datum.label());
+ return rvfDatum;
+ }
+
+ /**
+ * Method to convert this dataset to RVFDataset using L1-normalized TF-IDF features
+ * @return RVFDataset
+ */
+ public RVFDataset getL1NormalizedTFIDFDataset(){
+ RVFDataset rvfDataset = new RVFDataset(this.size(),this.featureIndex,this.labelIndex);
+ Counter featureDocCounts = getFeatureCounter();
+ for(int i = 0; i < this.size(); i++){
+ Datum datum = this.getDatum(i);
+ RVFDatum rvfDatum = getL1NormalizedTFIDFDatum(datum,featureDocCounts);
+ rvfDataset.add(rvfDatum);
+ }
+ return rvfDataset;
+ }
+
+ @Override
+ public void add(Datum d) {
+ add(d.asFeatures(), d.label());
+ }
+
+ public void add(Collection features, L label) {
+ add(features, label, true);
+ }
+
+ public void add(Collection features, L label, boolean addNewFeatures) {
+ ensureSize();
+ addLabel(label);
+ addFeatures(features, addNewFeatures);
+ size++;
+ }
+
+ /**
+ * Adds a datums defined by feature indices and label index
+ * Careful with this one! Make sure that all indices are valid!
+ * @param features
+ * @param label
+ */
+ public void add(int [] features, int label) {
+ ensureSize();
+ addLabelIndex(label);
+ addFeatureIndices(features);
+ size++;
+ }
+
+ protected void ensureSize() {
+ if (labels.length == size) {
+ int[] newLabels = new int[size * 2];
+ System.arraycopy(labels, 0, newLabels, 0, size);
+ labels = newLabels;
+ int[][] newData = new int[size * 2][];
+ System.arraycopy(data, 0, newData, 0, size);
+ data = newData;
+ }
+ }
+
+ protected void addLabel(L label) {
+ labelIndex.add(label);
+ labels[size] = labelIndex.indexOf(label);
+ }
+
+ protected void addLabelIndex(int label) {
+ labels[size] = label;
+ }
+
+ protected void addFeatures(Collection features) {
+ addFeatures(features, true);
+ }
+
+ protected void addFeatures(Collection features, boolean addNewFeatures) {
+ int[] intFeatures = new int[features.size()];
+ int j = 0;
+ for (F feature : features) {
+ if(addNewFeatures) featureIndex.add(feature);
+ int index = featureIndex.indexOf(feature);
+ if (index >= 0) {
+ intFeatures[j] = featureIndex.indexOf(feature);
+ j++;
+ }
+ }
+ data[size] = new int[j];
+ System.arraycopy(intFeatures, 0, data[size], 0, j);
+ }
+
+ protected void addFeatureIndices(int [] features) {
+ data[size] = features;
+ }
+
+ @Override
+ protected final void initialize(int numDatums) {
+ labelIndex = new HashIndex();
+ featureIndex = new HashIndex();
+ labels = new int[numDatums];
+ data = new int[numDatums][];
+ size = 0;
+ }
+
+ /**
+ * @return the index-ed datum
+ */
+ @Override
+ public Datum getDatum(int index) {
+ return new BasicDatum(featureIndex.objects(data[index]), labelIndex.get(labels[index]));
+ }
+
+ /**
+ * @return the index-ed datum
+ */
+ @Override
+ public RVFDatum getRVFDatum(int index) {
+ ClassicCounter c = new ClassicCounter();
+ for (F key : featureIndex.objects(data[index])) {
+ c.incrementCount(key);
+ }
+ return new RVFDatum(c, labelIndex.get(labels[index]));
+ }
+
+ /**
+ * Prints some summary statistics to stderr for the Dataset.
+ */
+ @Override
+ public void summaryStatistics() {
+ System.err.println(toSummaryStatistics());
+ }
+
+ public String toSummaryStatistics() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("numDatums: ").append(size).append('\n');
+ sb.append("numLabels: ").append(labelIndex.size()).append(" [");
+ Iterator iter = labelIndex.iterator();
+ while (iter.hasNext()) {
+ sb.append(iter.next());
+ if (iter.hasNext()) {
+ sb.append(", ");
+ }
+ }
+ sb.append("]\n");
+ sb.append("numFeatures (Phi(X) types): ").append(featureIndex.size()).append('\n');
+ // List l = new ArrayList(featureIndex);
+// Collections.sort(l);
+// sb.append(l);
+ return sb.toString();
+ }
+
+
+ /**
+ * Applies feature count thresholds to the Dataset.
+ * Only features that match pattern_i and occur at
+ * least threshold_i times (for some i) are kept.
+ *
+ * @param thresholds a list of pattern, threshold pairs
+ */
+ public void applyFeatureCountThreshold(List> thresholds) {
+
+ // get feature counts
+ float[] counts = getFeatureCounts();
+
+ // build a new featureIndex
+ Index newFeatureIndex = new HashIndex();
+ LOOP:
+ for (F f : featureIndex) {
+ for (Pair threshold : thresholds) {
+ Pattern p = threshold.first();
+ Matcher m = p.matcher(f.toString());
+ if (m.matches()) {
+ if (counts[featureIndex.indexOf(f)] >= threshold.second) {
+ newFeatureIndex.add(f);
+ }
+ continue LOOP;
+ }
+ }
+ // we only get here if it didn't match anything on the list
+ newFeatureIndex.add(f);
+ }
+
+ counts = null;
+
+ int[] featMap = new int[featureIndex.size()];
+ for (int i = 0; i < featMap.length; i++) {
+ featMap[i] = newFeatureIndex.indexOf(featureIndex.get(i));
+ }
+
+ featureIndex = null;
+
+ for (int i = 0; i < size; i++) {
+ List featList = new ArrayList(data[i].length);
+ for (int j = 0; j < data[i].length; j++) {
+ if (featMap[data[i][j]] >= 0) {
+ featList.add(featMap[data[i][j]]);
+ }
+ }
+ data[i] = new int[featList.size()];
+ for (int j = 0; j < data[i].length; j++) {
+ data[i][j] = featList.get(j);
+ }
+ }
+
+ featureIndex = newFeatureIndex;
+ }
+
+
+ /**
+ * prints the full feature matrix in tab-delimited form. These can be BIG
+ * matrices, so be careful!
+ */
+ public void printFullFeatureMatrix(PrintWriter pw) {
+ String sep = "\t";
+ for (int i = 0; i < featureIndex.size(); i++) {
+ pw.print(sep + featureIndex.get(i));
+ }
+ pw.println();
+ for (int i = 0; i < labels.length; i++) {
+ pw.print(labelIndex.get(i));
+ Set feats = Generics.newHashSet();
+ for (int j = 0; j < data[i].length; j++) {
+ int feature = data[i][j];
+ feats.add(Integer.valueOf(feature));
+ }
+ for (int j = 0; j < featureIndex.size(); j++) {
+ if (feats.contains(Integer.valueOf(j))) {
+ pw.print(sep + '1');
+ } else {
+ pw.print(sep + '0');
+ }
+ }
+ }
+ }
+
+ /**
+ * prints the sparse feature matrix using {@link #printSparseFeatureMatrix()}
+ * to {@link System#out System.out}.
+ */
+ public void printSparseFeatureMatrix() {
+ printSparseFeatureMatrix(new PrintWriter(System.out, true));
+ }
+
+ /**
+ * prints a sparse feature matrix representation of the Dataset. Prints the actual
+ * {@link Object#toString()} representations of features.
+ */
+ public void printSparseFeatureMatrix(PrintWriter pw) {
+ String sep = "\t";
+ for (int i = 0; i < size; i++) {
+ pw.print(labelIndex.get(labels[i]));
+ int[] datum = data[i];
+ for (int j : datum) {
+ pw.print(sep + featureIndex.get(j));
+ }
+ pw.println();
+ }
+ }
+
+
+ public void changeLabelIndex(Index newLabelIndex) {
+
+ labels = trimToSize(labels);
+
+ for (int i = 0; i < labels.length; i++) {
+ labels[i] = newLabelIndex.indexOf(labelIndex.get(labels[i]));
+ }
+ labelIndex = newLabelIndex;
+ }
+
+ public void changeFeatureIndex(Index newFeatureIndex) {
+
+ data = trimToSize(data);
+ labels = trimToSize(labels);
+
+ int[][] newData = new int[data.length][];
+ for (int i = 0; i < data.length; i++) {
+ int[] newD = new int[data[i].length];
+ int k = 0;
+ for (int j = 0; j < data[i].length; j++) {
+ int newIndex = newFeatureIndex.indexOf(featureIndex.get(data[i][j]));
+ if (newIndex >= 0) {
+ newD[k++] = newIndex;
+ }
+ }
+ newData[i] = new int[k];
+ System.arraycopy(newD, 0, newData[i], 0, k);
+ }
+ data = newData;
+ featureIndex = newFeatureIndex;
+ }
+
+ public void selectFeaturesBinaryInformationGain(int numFeatures) {
+ double[] scores = getInformationGains();
+ selectFeatures(numFeatures,scores);
+ }
+
+ /**
+ * Generic method to select features based on the feature scores vector provided as an argument.
+ * @param numFeatures number of features to be selected.
+ * @param scores a vector of size total number of features in the data.
+ */
+ public void selectFeatures(int numFeatures, double[] scores) {
+
+ List> scoredFeatures = new ArrayList>();
+
+ for (int i = 0; i < scores.length; i++) {
+ scoredFeatures.add(new ScoredObject(featureIndex.get(i), scores[i]));
+ }
+
+ Collections.sort(scoredFeatures, ScoredComparator.DESCENDING_COMPARATOR);
+ Index newFeatureIndex = new HashIndex();
+ for (int i = 0; i < scoredFeatures.size() && i < numFeatures; i++) {
+ newFeatureIndex.add(scoredFeatures.get(i).object());
+ //System.err.println(scoredFeatures.get(i));
+ }
+
+ for (int i = 0; i < size; i++) {
+ int[] newData = new int[data[i].length];
+ int curIndex = 0;
+ for (int j = 0; j < data[i].length; j++) {
+ int index;
+ if ((index = newFeatureIndex.indexOf(featureIndex.get(data[i][j]))) != -1) {
+ newData[curIndex++] = index;
+ }
+ }
+ int[] newDataTrimmed = new int[curIndex];
+ System.arraycopy(newData, 0, newDataTrimmed, 0, curIndex);
+ data[i] = newDataTrimmed;
+ }
+ featureIndex = newFeatureIndex;
+ }
+
+
+ public double[] getInformationGains() {
+
+ data = trimToSize(data);
+ labels = trimToSize(labels);
+
+ // counts the number of times word X is present
+ ClassicCounter featureCounter = new ClassicCounter();
+
+ // counts the number of time a document has label Y
+ ClassicCounter labelCounter = new ClassicCounter();
+
+ // counts the number of times the document has label Y given word X is present
+ TwoDimensionalCounter condCounter = new TwoDimensionalCounter();
+
+ for (int i = 0; i < labels.length; i++) {
+ labelCounter.incrementCount(labelIndex.get(labels[i]));
+
+ // convert the document to binary feature representation
+ boolean[] doc = new boolean[featureIndex.size()];
+ //System.err.println(i);
+ for (int j = 0; j < data[i].length; j++) {
+ doc[data[i][j]] = true;
+ }
+
+ for (int j = 0; j < doc.length; j++) {
+ if (doc[j]) {
+ featureCounter.incrementCount(featureIndex.get(j));
+ condCounter.incrementCount(featureIndex.get(j), labelIndex.get(labels[i]), 1.0);
+ }
+ }
+ }
+
+ double entropy = 0.0;
+ for (int i = 0; i < labelIndex.size(); i++) {
+ double labelCount = labelCounter.getCount(labelIndex.get(i));
+ double p = labelCount / size();
+ entropy -= p * (Math.log(p) / Math.log(2));
+ }
+
+ double[] ig = new double[featureIndex.size()];
+ Arrays.fill(ig, entropy);
+
+ for (int i = 0; i < featureIndex.size(); i++) {
+ F feature = featureIndex.get(i);
+
+ double featureCount = featureCounter.getCount(feature);
+ double notFeatureCount = size() - featureCount;
+
+ double pFeature = featureCount / size();
+ double pNotFeature = (1.0 - pFeature);
+
+ if (featureCount == 0) { ig[i] = 0; continue; }
+ if (notFeatureCount == 0) { ig[i] = 0; continue; }
+
+ double sumFeature = 0.0;
+ double sumNotFeature = 0.0;
+
+ for (int j = 0; j < labelIndex.size(); j++) {
+ L label = labelIndex.get(j);
+
+ double featureLabelCount = condCounter.getCount(feature, label);
+ double notFeatureLabelCount = size() - featureLabelCount;
+
+ // yes, these dont sum to 1. that is correct.
+ // one is the prob of the label, given that the
+ // feature is present, and the other is the prob
+ // of the label given that the feature is absent
+ double p = featureLabelCount / featureCount;
+ double pNot = notFeatureLabelCount / notFeatureCount;
+
+ if (featureLabelCount != 0) {
+ sumFeature += p * (Math.log(p) / Math.log(2));
+ }
+
+ if (notFeatureLabelCount != 0) {
+ sumNotFeature += pNot * (Math.log(pNot) / Math.log(2));
+ }
+ //System.out.println(pNot+" "+(Math.log(pNot)/Math.log(2)));
+
+ }
+
+ //System.err.println(pFeature+" * "+sumFeature+" = +"+);
+ //System.err.println("^ "+pNotFeature+" "+sumNotFeature);
+
+ ig[i] += pFeature*sumFeature + pNotFeature*sumNotFeature;
+ /* earlier the line above used to be: ig[i] = pFeature*sumFeature + pNotFeature*sumNotFeature;
+ * This completely ignored the entropy term computed above. So added the "+=" to take that into account.
+ * -Ramesh (nmramesh@cs.stanford.edu)
+ */
+ }
+ return ig;
+ }
+
+ public void updateLabels(int[] labels) {
+ if (labels.length != size())
+ throw new IllegalArgumentException(
+ "size of labels array does not match dataset size");
+
+ this.labels = labels;
+ }
+
+ @Override
+ public String toString() {
+ return "Dataset of size " + size;
+ }
+
+ public String toSummaryString() {
+ StringWriter sw = new StringWriter();
+ PrintWriter pw = new PrintWriter(sw);
+ pw.println("Number of data points: " + size());
+ pw.println("Number of active feature tokens: " + numFeatureTokens());
+ pw.println("Number of active feature types:" + numFeatureTypes());
+ return pw.toString();
+ }
+
+ /**
+ * Need to sort the counter by feature keys and dump it
+ *
+ */
+ public static void printSVMLightFormat(PrintWriter pw, ClassicCounter c, int classNo) {
+ Integer[] features = c.keySet().toArray(new Integer[c.keySet().size()]);
+ Arrays.sort(features);
+ StringBuilder sb = new StringBuilder();
+ sb.append(classNo);
+ sb.append(' ');
+ for (int f: features) {
+ sb.append(f + 1).append(':').append(c.getCount(f)).append(' ');
+ }
+ pw.println(sb.toString());
+ }
+
+}
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/GeneralDataset.java b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/GeneralDataset.java
new file mode 100644
index 0000000..1d368ce
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/GeneralDataset.java
@@ -0,0 +1,490 @@
+package edu.stanford.nlp.classify;
+
+import java.io.PrintWriter;
+import java.io.Serializable;
+import java.util.*;
+
+import edu.stanford.nlp.ling.BasicDatum;
+import edu.stanford.nlp.ling.Datum;
+import edu.stanford.nlp.ling.RVFDatum;
+import edu.stanford.nlp.stats.ClassicCounter;
+import edu.stanford.nlp.stats.Counter;
+import edu.stanford.nlp.util.Generics;
+import edu.stanford.nlp.util.HashIndex;
+import edu.stanford.nlp.util.Index;
+import edu.stanford.nlp.util.Pair;
+
+/**
+ * The purpose of this interface is to unify {@link Dataset} and {@link RVFDataset}.
+ *
+ * @author Kristina Toutanova (kristina@cs.stanford.edu)
+ * @author Anna Rafferty (various refactoring with subclasses)
+ * @author Sarah Spikes (sdspikes@cs.stanford.edu) (Templatization)
+ * @author Ramesh Nallapati (nmramesh@cs.stanford.edu)
+ * (added an abstract method getDatum, July 17th, 2008)
+ *
+ * @param The type of the labels in the Dataset
+ * @param The type of the features in the Dataset
+ */
+public abstract class GeneralDataset implements Serializable, Iterable> {
+
+ private static final long serialVersionUID = 19157757130054829L;
+
+ public Index labelIndex;
+ public Index featureIndex;
+
+ protected int[] labels;
+ protected int[][] data;
+
+ protected int size;
+
+ public GeneralDataset() { }
+
+ public Index labelIndex() { return labelIndex; }
+
+ public Index featureIndex() { return featureIndex; }
+
+ public int numFeatures() { return featureIndex.size(); }
+
+ public int numClasses() { return labelIndex.size(); }
+
+ public int[] getLabelsArray() {
+ labels = trimToSize(labels);
+ return labels;
+ }
+
+ public int[][] getDataArray() {
+ data = trimToSize(data);
+ return data;
+ }
+
+ public abstract double[][] getValuesArray();
+
+ /**
+ * Resets the Dataset so that it is empty and ready to collect data.
+ */
+ public void clear() {
+ clear(10);
+ }
+
+ /**
+ * Resets the Dataset so that it is empty and ready to collect data.
+ * @param numDatums initial capacity of dataset
+ */
+ public void clear(int numDatums) {
+ initialize(numDatums);
+ }
+
+ /**
+ * This method takes care of resetting values of the dataset
+ * such that it is empty with an initial capacity of numDatums.
+ * Should be accessed only by appropriate methods within the class,
+ * such as clear(), which take care of other parts of the emptying of data.
+ *
+ * @param numDatums initial capacity of dataset
+ */
+ protected abstract void initialize(int numDatums);
+
+
+ public abstract RVFDatum getRVFDatum(int index);
+
+ public abstract Datum getDatum(int index);
+
+
+ public abstract void add(Datum d);
+
+ /**
+ * Get the total count (over all data instances) of each feature
+ *
+ * @return an array containing the counts (indexed by index)
+ */
+ public float[] getFeatureCounts() {
+ float[] counts = new float[featureIndex.size()];
+ for (int i = 0, m = size; i < m; i++) {
+ for (int j = 0, n = data[i].length; j < n; j++) {
+ counts[data[i][j]] += 1.0;
+ }
+ }
+ return counts;
+ }
+
+ /**
+ * Applies a feature count threshold to the Dataset. All features that
+ * occur fewer than k times are expunged.
+ */
+ public void applyFeatureCountThreshold(int k) {
+ float[] counts = getFeatureCounts();
+ Index newFeatureIndex = new HashIndex();
+
+ int[] featMap = new int[featureIndex.size()];
+ for (int i = 0; i < featMap.length; i++) {
+ F feat = featureIndex.get(i);
+ if (counts[i] >= k) {
+ int newIndex = newFeatureIndex.size();
+ newFeatureIndex.add(feat);
+ featMap[i] = newIndex;
+ } else {
+ featMap[i] = -1;
+ }
+ // featureIndex.remove(feat);
+ }
+
+ featureIndex = newFeatureIndex;
+ // counts = null; // This is unnecessary; JVM can clean it up
+
+ for (int i = 0; i < size; i++) {
+ List featList = new ArrayList(data[i].length);
+ for (int j = 0; j < data[i].length; j++) {
+ if (featMap[data[i][j]] >= 0) {
+ featList.add(featMap[data[i][j]]);
+ }
+ }
+ data[i] = new int[featList.size()];
+ for (int j = 0; j < data[i].length; j++) {
+ data[i][j] = featList.get(j);
+ }
+ }
+ }
+
+
+ /**
+ * Applies a max feature count threshold to the Dataset. All features that
+ * occur greater than k times are expunged.
+ */
+ public void applyFeatureMaxCountThreshold(int k) {
+ float[] counts = getFeatureCounts();
+ HashIndex newFeatureIndex = new HashIndex();
+
+ int[] featMap = new int[featureIndex.size()];
+ for (int i = 0; i < featMap.length; i++) {
+ F feat = featureIndex.get(i);
+ if (counts[i] <= k) {
+ int newIndex = newFeatureIndex.size();
+ newFeatureIndex.add(feat);
+ featMap[i] = newIndex;
+ } else {
+ featMap[i] = -1;
+ }
+ // featureIndex.remove(feat);
+ }
+
+ featureIndex = newFeatureIndex;
+ // counts = null; // This is unnecessary; JVM can clean it up
+
+ for (int i = 0; i < size; i++) {
+ List featList = new ArrayList(data[i].length);
+ for (int j = 0; j < data[i].length; j++) {
+ if (featMap[data[i][j]] >= 0) {
+ featList.add(featMap[data[i][j]]);
+ }
+ }
+ data[i] = new int[featList.size()];
+ for (int j = 0; j < data[i].length; j++) {
+ data[i][j] = featList.get(j);
+ }
+ }
+ }
+
+
+ /**
+ * returns the number of feature tokens in the Dataset.
+ */
+ public int numFeatureTokens() {
+ int x = 0;
+ for (int i = 0, m = size; i < m; i++) {
+ x += data[i].length;
+ }
+ return x;
+ }
+
+ /**
+ * returns the number of distinct feature types in the Dataset.
+ */
+ public int numFeatureTypes() {
+ return featureIndex.size();
+ }
+
+
+
+ /**
+ * Adds all Datums in the given collection of data to this dataset
+ * @param data collection of datums you would like to add to the dataset
+ */
+ public void addAll(Iterable extends Datum> data) {
+ for (Datum d : data) {
+ add(d);
+ }
+ }
+
+ public abstract Pair, GeneralDataset> split (int start, int end) ;
+ public abstract Pair, GeneralDataset> split (double p) ;
+
+ /**
+ * Returns the number of examples ({@link Datum}s) in the Dataset.
+ */
+ public int size() { return size; }
+
+ protected void trimData() {
+ data = trimToSize(data);
+ }
+
+ protected void trimLabels() {
+ labels = trimToSize(labels);
+ }
+
+ protected int[] trimToSize(int[] i) {
+ int[] newI = new int[size];
+ System.arraycopy(i, 0, newI, 0, size);
+ return newI;
+ }
+
+ protected int[][] trimToSize(int[][] i) {
+ int[][] newI = new int[size][];
+ System.arraycopy(i, 0, newI, 0, size);
+ return newI;
+ }
+
+ protected double[][] trimToSize(double[][] i) {
+ double[][] newI = new double[size][];
+ System.arraycopy(i, 0, newI, 0, size);
+ return newI;
+ }
+
+ /**
+ * Randomizes the data array in place.
+ * Note: this cannot change the values array or the datum weights,
+ * so redefine this for RVFDataset and WeightedDataset!
+ * @param randomSeed
+ */
+ public void randomize(int randomSeed) {
+ Random rand = new Random(randomSeed);
+ for(int j = size - 1; j > 0; j --){
+ int randIndex = rand.nextInt(j);
+
+ int [] tmp = data[randIndex];
+ data[randIndex] = data[j];
+ data[j] = tmp;
+
+ int tmpl = labels[randIndex];
+ labels[randIndex] = labels[j];
+ labels[j] = tmpl;
+ }
+ }
+
+ public GeneralDataset sampleDataset(int randomSeed, double sampleFrac, boolean sampleWithReplacement) {
+ int sampleSize = (int)(this.size()*sampleFrac);
+ Random rand = new Random(randomSeed);
+ GeneralDataset subset;
+ if(this instanceof RVFDataset)
+ subset = new RVFDataset();
+ else if (this instanceof Dataset) {
+ subset = new Dataset();
+ }
+ else {
+ throw new RuntimeException("Can't handle this type of GeneralDataset.");
+ }
+ if (sampleWithReplacement) {
+ for(int i = 0; i < sampleSize; i++){
+ int datumNum = rand.nextInt(this.size());
+ subset.add(this.getDatum(datumNum));
+ }
+ } else {
+ Set indicedSampled = Generics.newHashSet();
+ while (subset.size() < sampleSize) {
+ int datumNum = rand.nextInt(this.size());
+ if (!indicedSampled.contains(datumNum)) {
+ subset.add(this.getDatum(datumNum));
+ indicedSampled.add(datumNum);
+ }
+ }
+ }
+ return subset;
+ }
+
+ /**
+ * Print some statistics summarizing the dataset
+ *
+ */
+ public abstract void summaryStatistics();
+
+ /**
+ * Returns an iterator over the class labels of the Dataset
+ *
+ * @return An iterator over the class labels of the Dataset
+ */
+ public Iterator labelIterator() {
+ return labelIndex.iterator();
+ }
+
+
+ /**
+ *
+ * @param dataset
+ * @return a new GeneralDataset whose features and ids map exactly to those of this GeneralDataset.
+ * Useful when two Datasets are created independently and one wants to train a model on one dataset and test on the other. -Ramesh.
+ */
+ public GeneralDataset mapDataset(GeneralDataset dataset){
+ GeneralDataset newDataset;
+ if(dataset instanceof RVFDataset)
+ newDataset = new RVFDataset(this.featureIndex,this.labelIndex);
+ else newDataset = new Dataset(this.featureIndex,this.labelIndex);
+ this.featureIndex.lock();
+ this.labelIndex.lock();
+ //System.out.println("inside mapDataset: dataset size:"+dataset.size());
+ for(int i = 0; i < dataset.size(); i++)
+ //System.out.println("inside mapDataset: adding datum number"+i);
+ newDataset.add(dataset.getDatum(i));
+
+ //System.out.println("old Dataset stats: numData:"+dataset.size()+" numfeatures:"+dataset.featureIndex().size()+" numlabels:"+dataset.labelIndex.size());
+ //System.out.println("new Dataset stats: numData:"+newDataset.size()+" numfeatures:"+newDataset.featureIndex().size()+" numlabels:"+newDataset.labelIndex.size());
+ //System.out.println("this dataset stats: numData:"+size()+" numfeatures:"+featureIndex().size()+" numlabels:"+labelIndex.size());
+
+ this.featureIndex.unlock();
+ this.labelIndex.unlock();
+ return newDataset;
+ }
+
+ public static Datum mapDatum(Datum d, Map labelMapping, L2 defaultLabel) {
+ // TODO: How to copy datum?
+ L2 newLabel = labelMapping.get(d.label());
+ if (newLabel == null) {
+ newLabel = defaultLabel;
+ }
+
+ if (d instanceof RVFDatum) {
+ return new RVFDatum( ((RVFDatum) d).asFeaturesCounter(), newLabel );
+ } else {
+ return new BasicDatum( d.asFeatures(), newLabel );
+ }
+ }
+
+
+ /**
+ *
+ * @param dataset
+ * @return a new GeneralDataset whose features and ids map exactly to those of this GeneralDataset. But labels are converted to be another set of labels
+ */
+ public GeneralDataset mapDataset(GeneralDataset dataset, Index newLabelIndex, Map labelMapping, L2 defaultLabel)
+ {
+ GeneralDataset newDataset;
+ if(dataset instanceof RVFDataset)
+ newDataset = new RVFDataset(this.featureIndex, newLabelIndex);
+ else newDataset = new Dataset(this.featureIndex, newLabelIndex);
+ this.featureIndex.lock();
+ this.labelIndex.lock();
+ //System.out.println("inside mapDataset: dataset size:"+dataset.size());
+ for(int i = 0; i < dataset.size(); i++) {
+ //System.out.println("inside mapDataset: adding datum number"+i);
+ Datum d = dataset.getDatum(i);
+ Datum d2 = mapDatum(d, labelMapping, defaultLabel);
+ newDataset.add(d2);
+ }
+ //System.out.println("old Dataset stats: numData:"+dataset.size()+" numfeatures:"+dataset.featureIndex().size()+" numlabels:"+dataset.labelIndex.size());
+ //System.out.println("new Dataset stats: numData:"+newDataset.size()+" numfeatures:"+newDataset.featureIndex().size()+" numlabels:"+newDataset.labelIndex.size());
+ //System.out.println("this dataset stats: numData:"+size()+" numfeatures:"+featureIndex().size()+" numlabels:"+labelIndex.size());
+
+ this.featureIndex.unlock();
+ this.labelIndex.unlock();
+ return newDataset;
+ }
+
+ /**
+ * Dumps the Dataset as a training/test file for SVMLight.
+ * class [fno:val]+
+ * The features must occur in consecutive order.
+ */
+ public void printSVMLightFormat() {
+ printSVMLightFormat(new PrintWriter(System.out));
+ }
+
+ /**
+ * Maps our labels to labels that are compatible with svm_light
+ * @return array of strings
+ */
+ public String[] makeSvmLabelMap() {
+ String[] labelMap = new String[numClasses()];
+ if (numClasses() > 2) {
+ for (int i = 0; i < labelMap.length; i++) {
+ labelMap[i] = String.valueOf((i + 1));
+ }
+ } else {
+ labelMap = new String[]{"+1", "-1"};
+ }
+ return labelMap;
+ }
+
+ // todo: Fix javadoc, have unit tested
+ /**
+ * Print SVM Light Format file.
+ *
+ * The following comments are no longer applicable because I am
+ * now printing out the exact labelID for each example. -Ramesh (nmramesh@cs.stanford.edu) 12/17/2009.
+ *
+ * If the Dataset has more than 2 classes, then it
+ * prints using the label index (+1) (for svm_struct). If it is 2 classes, then the labelIndex.get(0)
+ * is mapped to +1 and labelIndex.get(1) is mapped to -1 (for svm_light).
+ */
+
+ public void printSVMLightFormat(PrintWriter pw) {
+ //assumes each data item has a few features on, and sorts the feature keys while collecting the values in a counter
+
+ // old comment:
+ // the following code commented out by Ramesh (nmramesh@cs.stanford.edu) 12/17/2009.
+ // why not simply print the exact id of the label instead of mapping to some values??
+ // new comment:
+ // mihai: we NEED this, because svm_light has special conventions not supported by default by our labels,
+ // e.g., in a multiclass setting it assumes that labels start at 1 whereas our labels start at 0 (08/31/2010)
+ String[] labelMap = makeSvmLabelMap();
+
+ for (int i = 0; i < size; i++) {
+ RVFDatum d = getRVFDatum(i);
+ Counter c = d.asFeaturesCounter();
+ ClassicCounter printC = new ClassicCounter();
+ for (F f : c.keySet()) {
+ printC.setCount(featureIndex.indexOf(f), c.getCount(f));
+ }
+ Integer[] features = printC.keySet().toArray(new Integer[printC.keySet().size()]);
+ Arrays.sort(features);
+ StringBuilder sb = new StringBuilder();
+ sb.append(labelMap[labels[i]]).append(' ');
+ // sb.append(labels[i]).append(' '); // commented out by mihai: labels[i] breaks svm_light conventions!
+
+ /* Old code: assumes that F is Integer....
+ *
+ for (int f: features) {
+ sb.append((f + 1)).append(":").append(c.getCount(f)).append(" ");
+ }
+ */
+ //I think this is what was meant (using printC rather than c), but not sure
+ // ~Sarah Spikes (sdspikes@cs.stanford.edu)
+ for (int f: features) {
+ sb.append((f + 1)).append(':').append(printC.getCount(f)).append(' ');
+ }
+ pw.println(sb.toString());
+ }
+ }
+
+
+ public Iterator> iterator() {
+ return new Iterator>() {
+ private int id; // = 0;
+
+ public boolean hasNext() {
+ return id < size();
+ }
+
+ public RVFDatum next() {
+ if (id >= size()) {
+ throw new NoSuchElementException();
+ }
+ return getRVFDatum(id++);
+ }
+
+ public void remove() {
+ throw new UnsupportedOperationException();
+ }
+
+ };
+ }
+
+}
diff --git a/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/GeneralizedExpectationObjectiveFunction.java b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/GeneralizedExpectationObjectiveFunction.java
new file mode 100644
index 0000000..d5e4fc1
--- /dev/null
+++ b/corenlp-wrapper/stanford-corenlp-full-2013-04-04/src/edu/stanford/nlp/classify/GeneralizedExpectationObjectiveFunction.java
@@ -0,0 +1,225 @@
+package edu.stanford.nlp.classify;
+
+import edu.stanford.nlp.ling.Datum;
+import edu.stanford.nlp.ling.RVFDatum;
+import edu.stanford.nlp.math.ArrayMath;
+import edu.stanford.nlp.optimization.AbstractCachingDiffFunction;
+import edu.stanford.nlp.stats.ClassicCounter;
+import edu.stanford.nlp.stats.Counter;
+import edu.stanford.nlp.util.Generics;
+import edu.stanford.nlp.util.Triple;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.HashMap;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+
+/**
+ * Implementation of Generalized Expectation Objective function for
+ * an I.I.D. log-linear model. See Mann and McCallum, ACL 2008.
+ * IMPORTANT: the current implementation is only correct as long as
+ * the labeled features passed to GE are binary.
+ * However, other features are allowed to be real valued.
+ * The original paper also discusses GE only for binary features.
+ *
+ * @author Ramesh Nallapati (nmramesh@cs.stanford.edu)
+ */
+
+public class GeneralizedExpectationObjectiveFunction extends AbstractCachingDiffFunction {
+
+ private final GeneralDataset labeledDataset;
+ private final List extends Datum> unlabeledDataList;
+ private final List geFeatures;
+ private final LinearClassifier classifier;
+ private double[][] geFeature2EmpiricalDist; //empirical label distributions of each feature. Really final but java won't let us.
+ private List